@charset "UTF-8";


        /* ══════════════════════════════════════════
           RESET & BASE
        ══════════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --navy:       #050d1a;
            --navy2:      #0a1628;
            --blue:       #1a56db;
            --blue-glow:  #3b82f6;
            --indigo:     #4f46e5;
            --accent:     #06b6d4;
            --gold:       #f59e0b;
            --white:      #ffffff;
            --gray-100:   #f0f4ff;
            --gray-400:   #94a3b8;
            --gray-600:   #475569;
            --border:     rgba(255,255,255,0.08);
            --card-bg:    rgba(255,255,255,0.04);
            --font-head:  'Syne', sans-serif;
            --font-body:  'DM Sans', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ══════════════════════════════════════════
           NAVBAR
        ══════════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            background: rgba(5, 13, 26, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }

        .navbar.scrolled {
            background: rgba(5, 13, 26, 0.95);
        }

        /* Brand */
        .navbar-brand {
            font-family: var(--font-head);
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .navbar-brand .iq {
            color: var(--accent);
        }

        .navbar-brand .dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            margin-left: 3px;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.5; transform: scale(0.7); }
        }

        /* Nav links group */
        .navbar-center {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.2s, background 0.2s;
            white-space: nowrap;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }

        /* Hover dropdown panel */
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%) translateY(-6px);
            background: var(--navy2);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 20px;
            min-width: 260px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        }

        .nav-dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px; height: 10px;
            background: var(--navy2);
            border-left: 1px solid rgba(255,255,255,0.12);
            border-top: 1px solid rgba(255,255,255,0.12);
            rotate: 45deg;
        }

        .nav-item:hover .nav-dropdown {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-title {
            font-family: var(--font-head);
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .dropdown-desc {
            font-size: 13px;
            color: var(--gray-400);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            transition: background 0.15s;
        }

        .dropdown-link:hover {
            background: rgba(255,255,255,0.08);
        }

        .dropdown-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: rgba(6,182,212,0.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
        }

        /* Right side auth buttons */
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-ghost {
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.2s;
            font-family: var(--font-body);
        }

        .btn-ghost:hover { color: var(--white); }

        .btn-cta {
            padding: 9px 20px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            background: var(--blue);
            border: 1px solid rgba(255,255,255,0.15);
            transition: background 0.2s, transform 0.15s;
            font-family: var(--font-body);
        }

        .btn-cta:hover {
            background: var(--indigo);
            transform: translateY(-1px);
        }

        .nav-user-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px 6px 6px;
            border-radius: 50px;
            background: rgba(6,182,212,0.1);
            border: 1px solid rgba(6,182,212,0.2);
            font-size: 13px;
            font-weight: 500;
            color: var(--accent);
        }

        .nav-user-avatar {
            width: 26px; height: 26px;
            border-radius: 50%;
            background: var(--blue);
            display: flex; align-items: center; justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: white;
        }

        .btn-logout {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            background: rgba(239,68,68,0.12);
            color: #f87171;
            border: 1px solid rgba(239,68,68,0.2);
            cursor: pointer;
            transition: background 0.2s;
            font-family: var(--font-body);
        }

        .btn-logout:hover { background: rgba(239,68,68,0.22); }

        /* ══════════════════════════════════════════
           HERO SECTION
        ══════════════════════════════════════════ */
        #home {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        /* Mesh background */
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,70,229,0.35) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 80% 80%,  rgba(6,182,212,0.15) 0%, transparent 50%),
                radial-gradient(ellipse 40% 30% at 10% 90%,  rgba(26,86,219,0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Floating grid lines */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(6,182,212,0.1);
            border: 1px solid rgba(6,182,212,0.3);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 12px;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 24px;
            animation: fadeUp 0.6s ease both;
        }

        .hero-badge span { color: var(--gray-400); }

        .hero-title {
            font-family: var(--font-head);
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 20px;
            animation: fadeUp 0.6s 0.1s ease both;
        }

        .hero-title .line2 {
            background: linear-gradient(135deg, var(--blue-glow), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 17px;
            color: var(--gray-400);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 36px;
            animation: fadeUp 0.6s 0.2s ease both;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.6s 0.3s ease both;
        }

        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            background: linear-gradient(135deg, var(--blue), var(--indigo));
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.15);
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: var(--font-body);
            box-shadow: 0 4px 24px rgba(79,70,229,0.4);
        }

        .hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(79,70,229,0.5);
        }

        .hero-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-400);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            text-decoration: none;
            transition: color 0.2s, background 0.2s, transform 0.2s;
            font-family: var(--font-body);
        }

        .hero-btn-outline:hover {
            color: var(--white);
            background: rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }

        /* Stats strip */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            animation: fadeUp 0.6s 0.4s ease both;
        }

        .stat-item { text-align: center; }

        .stat-num {
            font-family: var(--font-head);
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .stat-num span { color: var(--accent); }

        .stat-label {
            font-size: 12px;
            color: var(--gray-400);
            margin-top: 4px;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ══════════════════════════════════════════
           ABOUT SECTION
        ══════════════════════════════════════════ */
        #about {
            padding: 100px 48px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .section-tag::before {
            content: '';
            width: 24px; height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title {
            font-family: var(--font-head);
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 16px;
            color: var(--gray-400);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            transition: border-color 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), var(--accent));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .about-card:hover {
            border-color: rgba(6,182,212,0.3);
            transform: translateY(-4px);
        }

        .about-card:hover::before { opacity: 1; }

        .about-card-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(6,182,212,0.1);
            border: 1px solid rgba(6,182,212,0.2);
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .about-card h3 {
            font-family: var(--font-head);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .about-card p {
            font-size: 13.5px;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* ══════════════════════════════════════════
           SERVICES SECTION
        ══════════════════════════════════════════ */
        #services {
            padding: 100px 48px;
            background: rgba(255,255,255,0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .services-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 20px;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 32px 28px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(79,70,229,0.4);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .service-icon {
            font-size: 36px;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-family: var(--font-head);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 13.5px;
            color: var(--gray-400);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .service-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            background: rgba(6,182,212,0.1);
            color: var(--accent);
            border: 1px solid rgba(6,182,212,0.2);
        }

        /* ══════════════════════════════════════════
           CONTACT SECTION
        ══════════════════════════════════════════ */
        #contact {
            padding: 100px 48px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-wrapper {
            background: linear-gradient(135deg,
                rgba(79,70,229,0.15) 0%,
                rgba(6,182,212,0.1) 100%);
            border: 1px solid rgba(79,70,229,0.3);
            border-radius: 32px;
            padding: 56px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-wrapper::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79,70,229,0.2), transparent);
            pointer-events: none;
        }

        .contact-wrapper h2 {
            font-family: var(--font-head);
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 14px;
        }

        .contact-wrapper p {
            font-size: 16px;
            color: var(--gray-400);
            max-width: 480px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .contact-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .contact-input {
            flex: 1;
            min-width: 220px;
            padding: 13px 18px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.06);
            color: var(--white);
            font-size: 14px;
            font-family: var(--font-body);
            outline: none;
            transition: border-color 0.2s;
        }

        .contact-input::placeholder { color: var(--gray-400); }
        .contact-input:focus { border-color: var(--accent); }

        .contact-btn {
            padding: 13px 28px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--blue), var(--indigo));
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(79,70,229,0.4);
        }

        /* ══════════════════════════════════════════
           FOOTER
        ══════════════════════════════════════════ */
        .footer {
            padding: 32px 48px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-brand {
            font-family: var(--font-head);
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
        }

        .footer-brand .iq { color: var(--accent); }

        .footer-copy {
            font-size: 13px;
            color: var(--gray-600);
        }

        /* ══════════════════════════════════════════
           SCROLL INDICATOR ACTIVE
        ══════════════════════════════════════════ */
        .nav-link.active {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }
        
        
/* ══════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════ */
.navbar-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.2rem;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.mobile-drawer.open { display: block; }

.drawer-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100%;
    background: #0a1628;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow-y: auto;
    animation: slideIn 0.28s cubic-bezier(0.4,0,0.2,1);
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

.drawer-close {
    align-self: flex-end;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.drawer-link {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.drawer-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.drawer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0;
}

.drawer-btn-cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {

    .navbar {
        padding: 0 24px;
    }

    /* Hide desktop nav links */
    .navbar-center { display: none !important; }

    /* Hide desktop auth buttons */
    .navbar-right .btn-ghost,
    .navbar-right .btn-cta { display: none; }

    /* Show hamburger */
    .navbar-toggle { display: block; }

    /* About grid 2 col */
    .about-grid { grid-template-columns: 1fr 1fr; }

    /* Services grid 1 col */
    .services-grid { grid-template-columns: 1fr 1fr; }

    /* Stats wrap */
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Sections padding reduce */
    #about, #services, #contact { padding: 60px 24px; }

    .contact-wrapper { padding: 36px 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {

    .navbar { padding: 0 16px; height: 60px; }

    /* Hide logout too on very small — show in drawer */
    .navbar-right { display: none; }

    /* Hero */
    #home { padding: 90px 16px 60px; }

    .hero-title { letter-spacing: -1px; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-outline { width: 100%; text-align: center; justify-content: center; }

    /* Stats 2x2 grid */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        max-width: 340px;
        border-top: none;
        padding-top: 0;
        margin-top: 40px;
    }

    .stat-item {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 16px 8px;
    }

    /* About & Services single column */
    .about-grid    { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    /* Sections padding */
    #about, #services, #contact { padding: 48px 16px; }

    .contact-wrapper { padding: 28px 16px; border-radius: 20px; }

    .contact-form { flex-direction: column; }
    .contact-input { min-width: unset; width: 100%; }
    .contact-btn   { width: 100%; }

    /* Footer */
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 24px 16px;
    }
}
        

 