/* Custom CSS with subtle animations and fully clickable cards */
:root {
    --bg-color: #0b111e;
    --card-bg: #161f30;
    --primary-blue: #0070f3;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #24334d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

/* Header & Navbar */
header {
    background-color: var(--card-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Slider */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
}

.slide.active {
    display: flex;
}

.slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Sections Styling */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
}

.alt-bg {
    background-color: #0f172a;
    border-radius: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 26px;
    border-left: 5px solid var(--primary-blue);
    padding-left: 12px;
}

.see-all-btn {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.see-all-btn:hover {
    gap: 10px;
}

/* Grid layout & Clickable Card */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    text-decoration: none;
    /* Card clickable link border line remove */
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    /* Smooth but optimized animation */
}

/* Hover Animation minimized as requested */
.card:hover {
    transform: translateY(-5px);
    /* Choto push animation */
    border-color: var(--primary-blue);
}

.card i {
    font-size: 36px;
    color: var(--primary-blue);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
}

.card-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* Badges for Categories */
.category-badge {
    background-color: rgba(0, 112, 243, 0.2);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.app-mod {
    background-color: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.app-free {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.app-premium {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* About Section Box */
.about-container {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.trust-lead {
    font-size: 18px;
    color: #38bdf8;
    margin: 15px 0;
    font-weight: 500;
}

.what-we-do {
    margin-top: 25px;
}

.what-we-do h3 {
    margin-bottom: 12px;
    color: var(--text-color);
}

.what-we-do ul {
    list-style: none;
}

.what-we-do ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.what-we-do ul li i {
    color: #22c55e;
}

/* Contact Us */
.contact-box-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-box-container p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 6px;
    font-size: 15px;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Footer UI with all details */
footer {
    background-color: #080d1a;
    padding: 40px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links h4,
.footer-socials h4 {
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-links ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links ul a:hover {
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 24px;
    transition: 0.2s;
}

.social-icons a:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
        display: block;
    }

    .footer-links ul li {
        margin: 5px 0;
    }

    .social-icons {
        justify-content: center;
    }
}