* {
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1977cc;
            --light-blue: #E3F2FD;
            --dark-gray: #202020;
            --light-gray: #F9FAFB;
        }

        /* Base responsive setup */
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            min-height: 600px;
        }

        /* Enhanced navbar transitions */
        .navbar-scroll {
            transition: all 0.3s ease-in-out;
        }
        
        .navbar-scroll .nav-link {
            transition: color 0.3s ease-in-out;
        }
        
        /* Logo transition styles */
        .logo-container {
            position: relative;
            display: inline-block;
        }
        
        #logo-white, #logo-colored {
            transition: opacity 0.3s ease-in-out;
        }
        
        #logo-colored {
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /* Mobile menu improvements */
        #mobile-menu {
            transition: all 0.3s ease-in-out;
        }
        
        /* Hamburger menu animation */
        #mobile-menu-btn {
            transition: color 0.3s ease-in-out;
        }
        .navbar-solid {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fallback for when JavaScript is disabled or fails to load */
        .no-js .fade-in-up,
        .fade-in-up:not(.js-enabled) {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Ensure section is visible by default after page load */
        #how-we-work .fade-in-up {
            animation: fadeInUpFallback 0.8s ease forwards;
        }

        @keyframes fadeInUpFallback {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: white;
        }

        .scroll-down {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
.howitwork{
        background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 50%, var(--light-blue) 100%);
}
        /* Process Steps Section */
        .process-steps {
            padding: 6rem 0;
           background: #fff;
        }
  .service {
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 50%, var(--light-blue) 100%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .process-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
        }

        .process-step {
            background: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            border-radius: 15px 15px 0 0;
        }

        .process-step h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .process-step p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .process-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-arrow i {
            font-size: 2rem;
            color: var(--primary-blue);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .equity-table {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            overflow-x: auto;
        }

        .equity-table th {
            background: var(--primary-blue);
            color: white;
            padding: 20px;
            font-weight: 600;
            white-space: nowrap;
        }

        .equity-table td {
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
            white-space: nowrap;
        }

        .equity-table tr:hover {
            background: #f9fafb;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background: var(--primary-blue);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-primary:hover {
            background: #1977cca6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 51, 161, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }


        /* Who We Are Section */
        .who-we-are {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .team-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .team-image {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-image i {
            font-size: 8rem;
            color: white;
            opacity: 0.8;
        }

        .team-text h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .team-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        /* Tablet Styles (768px - 1024px) */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .section-header h2 {
                font-size: 2.4rem;
            }

            .section-header p {
                font-size: 1.1rem;
            }

            .process-grid {
                gap: 2rem;
            }

            .process-step {
                padding: 2.5rem 1.5rem;
            }

            .process-step h3 {
                font-size: 1.6rem;
            }

            .process-step p {
                font-size: 1rem;
            }

            .equity-table {
                font-size: 0.9rem;
            }

            .equity-table th,
            .equity-table td {
                padding: 15px;
            }
        }

        /* Mobile Styles (max-width: 768px) */
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }

            .hero-slider {
                height: 100vh;
                min-height: 500px;
            }

            .container {
                padding: 0 1rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-header h2 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .section-header p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .process-steps {
                padding: 4rem 0;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .process-arrow {
                transform: rotate(90deg);
                margin: 1rem 0;
            }

            .process-step {
                padding: 2rem 1.5rem;
                margin: 0 auto;
                max-width: 400px;
            }

            .process-step h3 {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .process-step p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .service-card {
                padding: 20px;
                margin-bottom: 1rem;
            }

            .equity-table {
                font-size: 0.8rem;
                margin: 0 -1rem;
            }

            .equity-table th,
            .equity-table td {
                padding: 10px 8px;
                font-size: 0.8rem;
            }

            .btn-primary,
            .btn-outline {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
                margin: 0.5rem 0;
            }
            .team-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            /* Navigation responsive */
            .navbar-scroll {
                padding: 0.5rem 0;
            }

            .logo img {
                max-height: 28px;
            }

            /* Hero section mobile */
            #home {
                padding: 2rem 1rem;
                text-align: center;
            }

            #home h1 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            #home p {
                font-size: 1rem;
                margin-bottom: 2rem;
                padding: 0 1rem;
            }

            /* Grid layouts mobile */
            .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .lg\:grid-cols-3 {
                grid-template-columns: 1fr;
            }

            .md\:grid-cols-2 {
                grid-template-columns: 1fr;
            }

            .lg\:grid-cols-2 {
                grid-template-columns: 1fr;
            }

            /* Text sizing mobile */
            .text-4xl,
            .md\:text-5xl {
                font-size: 1.8rem;
            }

            .text-xl {
                font-size: 1rem;
            }

            .text-2xl {
                font-size: 1.3rem;
            }

            .text-3xl {
                font-size: 1.5rem;
            }

            /* Padding and margins mobile */
            .py-24 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .py-20 {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }

            .py-16 {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .mb-16 {
                margin-bottom: 2rem;
            }

            .mb-8 {
                margin-bottom: 1.5rem;
            }

            .mb-6 {
                margin-bottom: 1rem;
            }
        }

        /* Small Mobile Styles (max-width: 480px) */
        @media (max-width: 480px) {
            html {
                font-size: 13px;
            }

            .container {
                padding: 0 0.75rem;
            }

            .section-header h2 {
                font-size: 1.7rem;
            }

            .process-step {
                padding: 1.5rem 1rem;
            }

            .process-step h3 {
                font-size: 1.2rem;
            }

            .process-step p {
                font-size: 0.9rem;
            }

            .service-card {
                padding: 15px;
            }

            .equity-table {
                margin: 0 -0.75rem;
            }

            .equity-table th,
            .equity-table td {
                padding: 8px 6px;
                font-size: 0.75rem;
            }

            #home h1 {
                font-size: 1.6rem;
            }

            #home p {
                font-size: 0.9rem;
            }
        }

        /* Large Desktop Styles (min-width: 1440px) */
        @media (min-width: 1440px) {
            .container {
                max-width: 1400px;
                padding: 0 3rem;
            }

            .section-header h2 {
                font-size: 3.2rem;
            }

            .section-header p {
                font-size: 1.3rem;
            }

            .process-step {
                padding: 3.5rem 2.5rem;
            }

            .process-step h3 {
                font-size: 2rem;
            }

            .process-step p {
                font-size: 1.2rem;
            }
        }

        /* Print Styles */
        @media print {
            .navbar-scroll,
            .btn-primary,
            .btn-outline,
            #vanta-globe {
                display: none;
            }

            body {
                font-size: 12pt;
                line-height: 1.4;
            }

            .section-header h2 {
                font-size: 18pt;
                margin-bottom: 12pt;
            }

            .process-step {
                break-inside: avoid;
                margin-bottom: 12pt;
            }
        }

        /* Make How We Work section immediately visible */
        #how-we-work {
            opacity: 1 !important;
        }

        #how-we-work .fade-in-up {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Mobile menu button icon transitions */
        #mobile-menu-btn i {
            transition: opacity 0.2s ease-in-out;
        }
        
        #hamburger-icon, #close-icon {
            font-size: 1.2rem;
        }
        .navbar-solid {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll to Top Button */
        .scroll-to-top-btn {
            background: linear-gradient(135deg, #1977cc, #3b82f6);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(25, 119, 204, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .scroll-to-top-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(25, 119, 204, 0.4);
            background: linear-gradient(135deg, #1565c0, #2563eb);
        }
        
        .scroll-to-top-btn:active {
            transform: translateY(-1px);
        }
        
        /* Mobile responsive styles for scroll button */
        @media (max-width: 768px) {
            .scroll-to-top-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }
        .text-4xl,
        .md\:text-5xl {
            font-size: 1.8rem;
        }

        .text-xl {
            font-size: 1rem;
        }

        .text-2xl {
            font-size: 1.3rem;
        }

        .text-3xl {
            font-size: 1.5rem;
        }

        /* Padding and margins mobile */
        /* .py-24 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        } */

        .py-20 {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }

        .py-16 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .mb-16 {
            margin-bottom: 2rem;
        }

        .mb-8 {
            margin-bottom: 1.5rem;
        }

        .mb-6 {
            margin-bottom: 1rem;
        }
.headingh1{
    font-size: 2.5rem;
}
.headingh2{
    font-size: 2.5rem;
    font-weight: 600;
}

.text-blue-600{
    color: #1977cc;
}