
        :root {
            --primary-blue: #0066FF;
            --deep-blue: #0A1628;
            --pure-white: #FFFFFF;
            --soft-blue: #E8F4FD;
            --accent-cyan: #00D4FF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pure-white);
            color: var(--deep-blue);
            overflow-x: hidden;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--soft-blue);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            
            z-index: 1000;
            padding: 0.1rem 5%;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
        }

       /* ============================================
   NAVIGATION SYSTEM - HYBRID
   ============================================ */

/* Base Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 5%;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Desktop Menu (New Design) */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 255, 0.05);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-blue);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 3px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.nav-icon svg {
    width: 18px;
    height: 18px;
}

/* CTA Button */
.cta-button {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* ============================================
   MOBILE MENU TRAY (Old Functionality + New Design)
   ============================================ */

/* Toggle Button (Arrow) */
.menu-tray-toggle {
    display: none;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-top: none;
    border-radius: 0 0 15px 15px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
}

.menu-tray-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

.menu-tray-toggle.active svg {
    transform: rotate(180deg);
}

/* Mobile Tray Menu */
.mobile-tray-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
    max-width: 95vw;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.1);
    gap: 0.5rem;
    z-index: 998;
}

.mobile-tray-menu::-webkit-scrollbar {
    display: none;
}

.mobile-tray-menu.active {
    transform: translate(-50%, 15px);
    opacity: 1;
    pointer-events: auto;
}

.tray-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.tray-link:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.tray-link.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.tray-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.tray-text {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 850px) {
    .desktop-menu {
        display: none;
    }
    
    .desktop-cta {
        display: block;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-right: 0rem; /* Menu toggle se space */
    }
    
    .menu-tray-toggle {
        display: flex;
    }
    
    .mobile-tray-menu {
        display: flex;
    }
    
    .navbar {
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-tray-menu {
        width: 90vw;
        padding: 0.75rem;
    }
    
    .tray-link {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .tray-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .tray-text {
        font-size: 0.75rem;
    }
}

/* Scroll effect */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

        .cta-button {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 5rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
        }

        .gradient-mesh {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            /* font-family: 'Boldonse', sans-serif; */
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--deep-blue);
            font-style: "Boldonse";
        }

        .hero-content h1 span {
            display: block;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--deep-blue);
            border: 2px solid rgba(0, 102, 255, 0.2);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary-blue);
            background: rgba(0, 102, 255, 0.05);
        }

        /* 3D Floating Elements */
        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        .shape-3d {
            position: absolute;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }

        .shape-cube {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            border-radius: 24px;
            top: 20%;
            right: 20%;
            animation-delay: 0s;
            box-shadow: 
                20px 20px 60px rgba(0, 102, 255, 0.3),
                inset 0 0 60px rgba(255, 255, 255, 0.2);
            transform: perspective(1000px) rotateY(25deg) rotateX(15deg);
        }

        .shape-sphere {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle at 30% 30%, var(--accent-cyan), var(--primary-blue));
            border-radius: 50%;
            bottom: 30%;
            left: 10%;
            animation-delay: -2s;
            box-shadow: 
                0 20px 40px rgba(0, 102, 255, 0.3),
                inset -10px -10px 20px rgba(0, 0, 0, 0.1);
        }

        .shape-pyramid {
            width: 0;
            height: 0;
            border-left: 60px solid transparent;
            border-right: 60px solid transparent;
            border-bottom: 100px solid rgba(0, 102, 255, 0.8);
            top: 40%;
            left: 30%;
            animation-delay: -4s;
            filter: drop-shadow(0 20px 30px rgba(0, 102, 255, 0.2));
        }

        .shape-document {
            width: 100px;
            height: 130px;
            background: white;
            border-radius: 12px;
            top: 10%;
            left: 20%;
            animation-delay: -1s;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 30px 60px rgba(0, 102, 255, 0.1);
            border: 2px solid rgba(0, 102, 255, 0.1);
            display: flex;
            flex-direction: column;
            padding: 15px;
            gap: 8px;
        }

        .doc-line {
            height: 6px;
            background: linear-gradient(90deg, var(--soft-blue), var(--primary-blue));
            border-radius: 3px;
        }

        .doc-line:nth-child(1) { width: 80%; }
        .doc-line:nth-child(2) { width: 60%; }
        .doc-line:nth-child(3) { width: 90%; }
        .doc-line:nth-child(4) { width: 70%; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(10deg); }
            50% { transform: translateY(-20px) rotateY(-15deg) rotateX(10deg); }
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 5%;
            padding-bottom: 2rem;
            background: var(--pure-white);
            position: relative;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--soft-blue);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #64748b;
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            padding: 8rem 5%;
            padding-bottom: 2rem;
            padding-top: 2rem;
            background: linear-gradient(180deg, var(--pure-white) 0%, var(--soft-blue) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary-blue);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }

        .section-subtitle {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
            
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--soft-blue);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--primary-blue);
            transition: var(--transition-smooth);
            transition: transform 0.4s ease;
        }
        .service-card:hover .service-icon {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        .service-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }

        .service-description {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }
/* ============================================
   TRUST FACTORS SECTION
   ============================================ */
.trust-factors {
    padding: 8rem 5%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: white;
}

.trust-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.trust-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.trust-header p {
    color: #64748B;
    font-size: 1.1rem;
}

.trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-box {
    text-align: center;
    padding: 2rem;
}

.trust-symbol {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F4FD, white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-box:hover .trust-symbol {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.trust-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0A1628;
}

.trust-box p {
    color: #64748B;
}

/* Scroll Animation */
.reveal-trust {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-trust.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}
        /* Why Choose Us */
        .why-section {
            padding: 8rem 5%;
            padding-top: 4rem;
            background: var(--deep-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .why-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            align-items: center;
        }

        .why-content {
            padding-right: 2rem;
        }

        .why-content .section-title {
            color: white;
            margin-bottom: 1.5rem;
        }

        .why-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .feature-text h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .feature-text p {
            font-size: 0.9rem;
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
        }

        .why-visual {
            position: relative;
            height: 500px;
        }

        .glass-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .glass-card-1 {
            top: 10%;
            left: 10%;
            width: 280px;
            animation: float1 8s ease-in-out infinite;
        }

        .glass-card-2 {
            top: 40%;
            right: 10%;
            width: 250px;
            animation: float2 10s ease-in-out infinite;
        }

        .glass-card-3 {
            bottom: 10%;
            left: 20%;
            width: 220px;
            animation: float3 7s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        @keyframes float2 {
            0%, 100% { transform: translateY(0) rotate(2deg); }
            50% { transform: translateY(-20px) rotate(-2deg); }
        }

        @keyframes float3 {
            0%, 100% { transform: translateY(0) rotate(-1deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            color: white;
        }

        .cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .cta-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .cta-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-btn {
            padding: 1rem 2rem;
            background: var(--deep-blue);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--deep-blue);
            color: white;
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
            display: inline-block;
            background: linear-gradient(135deg, white, var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                margin: 0 auto 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-3d {
                display: none;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 6rem 5% 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .cta-form {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .glass-card {
                display: none;
            }
        }

        /* Text Reveal Animation */
        .reveal-text {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal-text.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Cursor Glow Effect */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }

        @media (max-width: 1024px) {
            .cursor-glow {
                display: none;
            }
        }

          @font-face {
    font-family: 'Expressa Demibold';
    src: url('Expressa-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

  .masha-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
  }

  /* Main Logo Container */
  .masha-logo {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  /* Outer Ring - Blue Theme */
  .masha-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 7px solid rgba(0, 102, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.3), inset 0 0 10px rgba(0, 102, 255, 0.05);
  }

  /* Content Container - Bars + Text */
  .masha-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }

  /* Three Bars */
   .masha-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 3px;
    margin-top: -2px;
  }

  .masha-bar {
    width: 5px;
    background: linear-gradient(180deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 102, 255, 0.4);
  }

  .masha-bar:nth-child(1) { height: 16px; }
  .masha-bar:nth-child(2) { height: 11px; }
  .masha-bar:nth-child(3) { height: 16px; }

  /* Text - Chota aur Lines ke neeche */
  .masha-brand-text {
    font-family: 'Expressa Demibold', 'Inter', sans-serif;
    font-size: 6px;
    font-weight: 600;
    color: #0066FF;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 102, 255, 0.2);
    margin-top: 20px;
  }

  /* Orbiting Dot - Blue */
  .masha-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: mashaRotate 3s linear infinite;
    z-index: 2;
  }

 .masha-dot {
    position: absolute;
    top: 0px;
    left: 65%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #dbe1e2;
    border-radius: 50%;
    box-shadow: 0 0 8px #0066FF, 0 0 15px rgba(0, 212, 255, 0.8);
  }

  @keyframes mashaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Hover Effects */
  .masha-logo-wrapper:hover .masha-orbit {
    animation-duration: 1s;
  }

  .masha-logo-wrapper:hover .masha-ring {
    box-shadow: 0 0 18px rgba(0, 102, 255, 0.6);
    border-color: #00D4FF;
  }

  .masha-logo-wrapper:hover .masha-brand-text {
    color: #00D4FF;
  }

  /* --- Mobile Menu Tray Pull-Down --- */

/* Normal screens pe arrow hide rhy ga */
.menu-tray-toggle {
    display: none;
}

@media (max-width: 850px) {
    /* Arrow button navbar k nichy latakta hua design */
    .menu-tray-toggle {
        display: flex;
        position: absolute;
        bottom: -24px; /* Navbar se thora bahar/nichy */
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 24px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 102, 255, 0.1);
        border-top: none;
        border-radius: 0 0 15px 15px;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0, 102, 255, 0.05);
        color: var(--primary-blue);
    }

    .menu-tray-toggle svg {
        width: 18px;
        height: 18px;
        transition: transform 0.4s ease;
    }

    /* Jab tray open ho to arrow ki direction upar ho jay */
    .menu-tray-toggle.active svg {
        transform: rotate(180deg);
    }

    /* Menu ko absolute bana kar navbar k pichy hide krna */
    .nav-container .menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -150%); /* Upar chupaya hua ha */
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        width: max-content; /* Horizental shape khrab ni hogi */
        max-width: 95vw; 
        overflow-x: auto; /* Agar screen bohut choti ho to scroll ho jaye magr tooty na */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Mobile pe ganda scrollbar hide krny k lye */
    .nav-container .menu::-webkit-scrollbar {
        display: none;
    }

    /* Arrow pe click krny k bad ki state (Tray open) */
    .nav-container .menu.active {
        transform: translate(-50%, 15px); /* Nichy slide ho kr ayega */
        opacity: 1;
        pointer-events: auto;
        box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15);
        border: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    /* Mobile screen pe logo aur CTA button k lye space adjust krna */
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   TRUST & CREDIBILITY BADGES
   ============================================ */
.trust-credibility {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--pure-white) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.trust-badges-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;                          /* Grid ki jagah flex */
    justify-content: center;                /* Center mein lane ke liye */
    flex-wrap: wrap;                        /* Responsive ke liye */
    gap: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.05);
    flex: 0 0 auto;                         /* Fixed width rakhne ke liye */
    min-width: 280px;                       /* Minimum width */
    max-width: 350px;                       /* Maximum width */
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
}

.badge-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.badge-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.badge-number {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    background: rgba(0, 102, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-badges-container {
        justify-content: center;            /* Mobile pe bhi center */
    }
    
    .trust-badge-item {
        min-width: 100%;                    /* Mobile pe full width */
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .trust-badge-item {
        padding: 1rem;
        min-width: 100%;
    }
}



/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
    padding: 8rem 5%;
    background: var(--pure-white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin: 1rem 0;
}

.contact-info > p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--soft-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.1);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--soft-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ============================================
   TRUSTED BANKS SECTION
   ============================================ */
.banks-section {
    padding: 4rem 5%;
    background: var(--pure-white);  /* Sirf white background */
    overflow: hidden;
}

.banks-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.banks-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.banks-marquee::before,
.banks-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Left side fade - white based */
.banks-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF, transparent);
}

/* Right side fade - white based */
.banks-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #FFFFFF, transparent);
}

.banks-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.banks-track:hover {
    animation-play-state: paused;
}

.bank-logo {
    flex-shrink: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.bank-logo:hover {
    transform: scale(1.1);
}

.bank-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bank-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.bank-placeholder span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.bank-logo p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-blue);
    opacity: 0.8;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Banks Stats */
.banks-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.bank-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .banks-track {
        gap: 2rem;
    }
    
    .bank-placeholder {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }
    
    .bank-placeholder span {
        font-size: 1.2rem;
    }
    
    .banks-stats {
        flex-direction: column;
        gap: 2rem;
    }
}