        :root {
            --primary: #3c82f6;
            --primary-dark: #00249c;
            --secondary: #1e3a8a;
            --accent: #0044ff;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --gradient: linear-gradient(135deg, #3c82f6 0%, #00249c 100%);
            --gradient-alt: linear-gradient(135deg, #0d68fc 0%, #0091eb 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Modern Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 1000;
            transition: padding 0.3s ease, background-color 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled {
            padding: 0.75rem 0;
            background: rgba(15, 23, 42, 0.98);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            gap: 1rem;
        }

        .floating-social:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .floating-social img {
            width: 30px;
            height: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo img {
            height: 40px;
            transition: height 0.3s ease;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            /* Reset default ul margin */
            padding: 0;
            /* Reset default ul padding */
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Hide mobile-only elements on desktop */
        .burger-menu,
        .nav-menu-mobile {
            display: none;
        }

        .burger-menu .icon-close {
            display: none;
        }


        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .btn-outline {
            color: var(--light);
            border: 2px solid var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(6, 65, 241, 0.3);
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(15, 72, 241, 0.3);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(33, 84, 239, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(33, 84, 239, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -50px;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(10deg);
            }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInLeft 0.8s ease;
        }

        .hero-text .tagline {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: #cbd5e1;
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease 0.2s backwards;
        }

        .hero-text .description {
            font-size: 1.1rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: slideInLeft 0.8s ease 0.4s backwards;
        }

        .btn-primary,
        .btn-hero,
        .contact-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            transition: 0.3s ease;
        }

        .btn-primary:hover,
        .btn-hero:hover,
        .contact-btn:hover {
            background-color: var(--secondary-color);
        }

        .navbar.scrolled {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        .features-badge {
            background: var(--primary-color);
            color: var(--white);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInLeft 0.8s ease 0.6s backwards;
        }

        .btn-hero {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-download {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 30px rgba(33, 84, 239, 0.3);
        }

        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(2, 61, 235, 0.4);
        }

        .btn-demo {
            background: transparent;
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-demo:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            right: 0;
            animation: slideInRight 0.8s ease;
        }

        .hero-image img {
            width: 50%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            animation: floatPhone 3s ease-in-out infinite;
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Services Carousel */
        .services-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        }

        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-header h2 {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .services-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
        }

        .service-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .service-card {
            min-width: 100%;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(10px);
        }

        .service-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-content p {
            font-size: 1.2rem;
            color: #cbd5e1;
            line-height: 1.8;
        }

        .carousel-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: none;
            gap: 1rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            width: 40px;
            border-radius: 6px;
            background: var(--gradient);
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .how-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .how-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .how-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 1rem auto;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-icon img {
            width: 50px;
            height: 50px;
        }

        .step-card h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .step-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #0077ee 0%, #003bfb 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
            background-size: cover;
            top: 0;
            left: 0;
            animation: wave 10s linear infinite;
        }

        @keyframes wave {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .stats-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .stats-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .stats-header p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--dark);
            font-weight: 600;
        }

        /* Features Grid */
        .features-section {
            padding: 5rem 0;
            background: transparent;
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .features-title {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .features-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            padding: 0 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(33, 84, 239, 0.3);
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .feature-name {
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* Founder Quote Section */
        .founder-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            position: relative;
        }

        .founder-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .founder-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .founder-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .founder-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
            background: rgba(30, 41, 59, 0.5);
            padding: 3rem;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .founder-image {
            position: relative;
        }

        .founder-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .founder-quote-content {
            color: white;
        }

        .quote-mark {
            font-size: 4rem;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .quote-text {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .quote-author {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
        }

        /* About Section */
        .about-section {
            padding: 5rem 0;
            background: white;
        }

        .about-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .about-header h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .about-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--gray);
        }

        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .team-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-header h2 {
            font-size: 3rem;
            color: var(--dark);
        }

        .team-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }

        .team-photo {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover .team-photo {
            transform: scale(1.1);
        }

        .team-info {
            padding: 1.5rem;
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--primary);
            font-weight: 500;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 5rem 0;
            background: transparent;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .reviews-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .reviews-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .reviews-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .review-card {
            background: rgba(30, 41, 59, 0.5);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
        }

        .review-quote {
            font-size: 3rem;
            color: var(--primary);
            line-height: 1;
        }

        .review-text {
            color: #cbd5e1;
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 1rem 0;
        }

        .review-author {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .review-rating {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            position: relative;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .contact-header h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .contact-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-description {
            color: #cbd5e1;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid var(--primary);
            color: white;
            background: transparent;
        }

        .contact-btn:hover {
            background: var(--gradient);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(33, 84, 239, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-header h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .faq-header span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: #f8fafc;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-input {
            display: none;
        }

        #faq1-answer {
            color: #0a0f1c;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }

        .faq-input:checked~.faq-answer {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-input:checked~.faq-question .faq-icon {
            transform: rotate(45deg);
        }

        /* Footer */
        .footer {
            background: #0a0f1c;
            padding: 4rem 0 2rem;
            color: white;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand img {
            width: 150px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.6;
        }

        .footer-column h6 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #64748b;
        }

        /* Floating Social Icons */
        .floating-socials {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 100;
        }

        .floating-social {
            width: 50px;
            height: 50px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .floating-social:hover {
            transform: translateY(-3px);
        }

        /* === RESPONSIVE DESIGN (Consolidated) === */

        /* Tablets & Small Desktops */
        @media (max-width: 992px) {
            .nav-container {
                /* This allows us to position the burger and center the logo */
                justify-content: center;
                position: relative;
                align-items: center;
            }

            .burger-menu {
                display: block;
                position: absolute;
                left: 0;
                /* Positioned to the far left of the container */
                top: 100%;
                left: 1.5rem;
                bottom: 1rem;

                transform: translateY(-20%);
                background: none;
                border: none;
                cursor: pointer;
                z-index: 1002;
                /* Must be above the slide-out menu */
            }

            .navbar {
                padding: 0rem 1.5rem;
                height: 70px;
            }

            .navbar.scrolled {
                padding: 0rem 1.5rem;
            }



            .nav-buttons {
                display: none;
                size: 0.5rem;
                gap: 0.5rem;
            }

            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                top: 20%;
            }

            .logo img {
                height: 42px;
            }

            /* Hide the desktop nav links and buttons */
            .nav-links,
            .nav-buttons-desktop {
                display: none;
            }

            .nav-menu-mobile {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                padding-top: 3rem;
                /* Space for the header */

                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                /* Full viewport height */
                background: var(--dark);

                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 1001;
            }

            /* Active state for the slide-out menu */
            .nav-menu-mobile.active {
                transform: translateX(0);
            }

            .burger-menu.active .icon-open {
                display: none;
            }

            .burger-menu.active .icon-close {
                display: block;
            }

            .team-grid {
                max-width: 400px;
                grid-template-columns: 2fr;
            }

            /* Show links inside the mobile menu */
            .nav-menu-mobile .nav-links {
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }

            .nav-menu-mobile .nav-links a {
                font-size: 1.4rem;
            }

            .nav-menu-mobile .nav-links a::after {
                display: none;
                /* No underline effect on mobile */
            }

            /* Style the buttons at the bottom */
            .nav-buttons-mobile {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                width: 80%;
                max-width: 300px;
                margin-top: 2rem;
            }

            .nav-buttons-mobile .btn {
                width: 100%;
                text-align: center;
            }


            .hero {
                min-height: auto;
                padding-bottom: 4rem;
                background-attachment: scroll;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-image {
                order: -1;
                /* Move image above text */
                justify-content: center;
                margin-bottom: 0rem;
                margin-top: 3rem;
            }

            .hero-image img {
                object-fit: cover;
                width: 60%;
                max-width: 300px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .founder-content,
            .service-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .floating-socials {
                display: none;
            }


            .hero-text h1,
            .services-header h2,
            .how-header h2,
            .stats-header h2,
            .features-title,
            .founder-header h2,
            .team-header h2,
            .reviews-header h2,
            .contact-header h2,
            .faq-header h2,
            .about-header h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-text .tagline {
                font-size: 1.1rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                flex-direction: column;
                width: 100%;
            }

            .contact-btn {
                width: 100%;
            }
        }

        /* Large Mobile Devices */
        @media (max-width: 768px) {
            .steps-container {
                grid-template-columns: 1fr;
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* === ANIMATIONS === */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 640px) {

            .hero-text h1,
            .services-header h2,
            .how-header h2,
            .stats-header h2,
            .features-title,
            .founder-header h2,
            .team-header h2,
            .reviews-header h2,
            .contact-header h2,
            .faq-header h2,
            .about-header h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-text .tagline {
                font-size: 1.1rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                flex-direction: column;
                width: 100%;
            }

            .contact-btn {
                width: 100%;
            }
        }