        /* Global Styles */
        :root {
            /* --primary: #0062ff; */
            --primary: #2569ED;
            --secondary: #6c42f5;
            --accent: #ffa500;
            --dark: #1a1a2e;
            --light: #ffffff;
            --text: #33334d;
            --text-light: #66668a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }

        /* Content loading states */
.cms-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-loading .cms-content {
    opacity: 0.5;
}

/* Hide content until loaded */
body:not(.content-loaded) .cms-content {
    visibility: hidden;
}

body.content-loaded .cms-content {
    visibility: visible;
}


        .loader {
            position: fixed;
            height: 100vh;
            /* background: linear-gradient(to bottom, var(--primary), #C8E8FF); */
            background: linear-gradient(to bottom, var(--light), #C8E8FF);
            overflow: hidden;
            margin: 0;
            opacity: 1;
            height: 100vh;
            width: 100vw;
            top: 0;
            left: 0;
            z-index: 10000;
            transition: 1s;
            visibility: 3.75s;
            transition-delay: 3.5s;
        }

        .loader-logo {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-logo img {
            width: 12.5%;
            animation: pulse 3s infinite ease-in-out;
        }

        .loader-hidden {
            opacity: 0;
            visibility: hidden;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            /* background: var(--accent); */
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 98, 255, 0.4);
            /* box-shadow: 0 8px 20px rgba(255, 225, 0, 0.4); */
        }

        .cta-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(154, 193, 254, 0.4);
        }

        #mypopover{
            max-width: 500px;
            width: 100%;
            padding: 20px;
            border: 2px solid var(--accent);
            border-radius: 20px;
            margin-inline: auto;
            margin-top: auto;
            margin-bottom: auto;
        }

        #mypopover p{
            font-size: medium;
        }

        button.btn.btn-outline.animate-on-scroll{
            font-size: 16px;
        }

        .pop-headflex{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-mobile-menu {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            /* background: var(--accent); */
            color: white !important;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
        }

        .btn-mobile-menu:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 98, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.25rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .cursor {
            position: relative;
            width: 24em;
            margin: 0 auto;
            border-right: 2px solid rgba(255, 255, 255, .75);
            font-size: 30px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            transform: translateY(-50%);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%) !important;
            width: 60px;
            height: 4px;
            /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        #logo-container {
            align-items: center;
        }

        #logo-text {
            width: 9em;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin: 0 15px;
        }

        .nav-menu a {
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            text-decoration: none;
            /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
            /* -webkit-background-clip: text; */
            /* For WebKit browsers */
            /* background-clip: text; */
            color: var(--primary);
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .header-buttons-menu::after {
            display: none;
        }

        .nav-menu .header-buttons-menu a:hover::after {
            display: none;
        }


        .mobile-menu-btn {
            display: none;
            cursor: pointer;
        }

        .mobile-menu-btn .bar {
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background: var(--primary);
        }

        .mobile-menu-btn .bar:active {
            background: var(--accent) !important;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, #b0caff69 100%); */
            background: linear-gradient(to bottom, var(--light), #C8E8FF);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 205px;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230062ff" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,229.3C1248,224,1344,160,1392,128L1440,96L1440,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>');
            background-size: cover;
            /* background-position: center bottom; */
            z-index: -1;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .hero-text {
            flex: 1.1;
            animation: fadeInUp 5s ease;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }

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

        .masked-text {
            /* font-size: 8rem;
            font-weight: bold; */
            color: transparent;
            background-image: url(images/spirallow-staircase.jpeg);
            background-size: 200%;
            /* Enlarged for smooth animation */
            background-position: 0 50%;
            background-clip: text;
            /* mix-blend-mode: darken; */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: animate-background 30s infinite alternate linear;
        }

        @keyframes animate-background {
            0% {
                background-position: 0 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* Animation */
        .typewriter-animation {
            animation:
                typewriter 5s steps(50) 1s 1 normal both,
                blinkingCursor 500ms steps(50) infinite normal;
        }

        .typewriter-animation-2 {
            animation:
                typewriter-2 5s steps(50) 1s 1 normal both,
                blinkingCursor-2 500ms steps(50) infinite normal;
        }

        @keyframes typewriter {
            from {
                width: 0;
            }

            to {
                width: 62.5%;
            }
        }

        @keyframes typewriter-2 {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blinkingCursor {
            from {
                border-right-color: var(--dark);
            }

            to {
                border-right-color: transparent;
            }
        }

        @keyframes blinkingCursor-2 {
            from {
                border-right-color: var(--light);
            }

            to {
                border-right-color: transparent;
            }
        }

        .hero-text p {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .hero-tagline {
            display: inline-block;
            padding: 8px 20px;
            /* background: linear-gradient(135deg, rgba(255, 242, 0, 0.1), rgba(245, 212, 66, 0.1)); */
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(245, 212, 66, 0.1));
            color: var(--accent);
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 221, 0, 0.2);
        }

        .header-buttons-menu a {
            color: white !important;
            /* background: var(--primary); */
        }


        .header-buttons-menu {
            display: none;
        }


        .hero-buttons {
            /* float: right !important; */
            display: flex;
            gap: 20px;
        }

        .hero-buttons img {
            width: 170px;
            height: 100%;
            animation: pulse 5s infinite ease-in-out;
        }

        .hero-buttons img:hover {
            scale: 1.05;
        }

        /* hero-buttons: Bouncing effect */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s ease;
        }

        .hero-image img:hover {
            transform: perspective(1000px) rotateY(0);
        }

        /* Pain Point Hook */
        .pain-points {
            background-color: white;
            position: relative;
        }

        .pain-points::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8f9fc" fill-opacity="1" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,229.3C1248,224,1344,160,1392,128L1440,96L1440,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>');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .pain-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            /* background: #66668a; */
        }

        .pain-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            /* background: linear-gradient(to bottom, var(--primary), var(--secondary)); */
            background: var(--accent);
        }

        .pain-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .pain-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .pain-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .pain-card p {
            color: var(--text-light);
        }

        .pain-cta {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            /* background: linear-gradient(135deg, rgba(0, 98, 255, 0.05), rgba(108, 66, 245, 0.05)); */
            background: linear-gradient(to bottom, var(--light), #C8E8FF);
            border-radius: 15px;
        }

        .pain-cta h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        /* How It Helps */
        .benefits {
            /* background: linear-gradient(135deg, #f8f9fc 0%, #b0caff69 100%); */
            background: linear-gradient(to bottom, var(--light), #C8E8FF);
        }

        .benefit-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 98, 255, 0.1), rgba(108, 66, 245, 0.1));
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary);
        }

        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .benefit-card p {
            color: var(--text-light);
        }

        /* Features Section */
        .features {
            background-color: white;
        }

        .feature-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .accordion-header {
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fc 0%, var(--light) 100%);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s ease;
        }

        .accordion-header:hover {
            /* background: linear-gradient(135deg, #eef2ff 0%, #f5f7ff 100%); */
            background: linear-gradient(to bottom, var(--light) 0%, #C8E8FF 100%);
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }

        .accordion-content.active {
            padding: 20px;
            max-height: 500px;
        }

        .accordion-content ul {
            list-style: none;
            padding-left: 20px;
        }

        .accordion-content li {
            margin-bottom: 10px;
            position: relative;
        }

        .accordion-content li::before {
            content: '✓';
            position: absolute;
            left: -20px;
            color: var(--primary);
            font-weight: bold;
        }

        /* How It Works */
        .process {
            background: linear-gradient(135deg, #f8f9fc 0%, var(--light) 100%);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
            background: var(--accent);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 180px;
            margin-bottom: 30px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(255, 238, 0, 0.3);
        }

        .step p {
            font-weight: 500;
            color: var(--text);
        }

        /* Pricing Section */
        .pricing {
            background-color: white;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 30px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .price {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .price-span{
            font-size: 42px !important;
            font-weight: 700 !important;
            color: var(--primary) !important;
            margin-bottom: 20px !important;
        }

        .price span {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Founder Section */
        .founder {
            /* background: linear-gradient(135deg, #f8f9fc 0%, #b0caff69 100%); */
            background: linear-gradient(to bottom, var(--light), #C8E8FF);
        }

        .founder-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .founder-image {
            flex: 1;
            text-align: center;
        }

        .founder-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .founder-text {
            flex: 1;
        }

        .founder-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .founder-text p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .final-cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            background: white !important;
            color: var(--primary) !important;
        }

        .cta-buttons .btn-outline {
            background: transparent !important;
            border: 2px solid white !important;
            color: white !important;
        }

        .cta-buttons .btn:hover {
            background: transparent !important;
            border: 2px solid white !important;
            color: white !important;
        }

        .cta-buttons .btn-outline:hover {
            background: white !important;
            color: var(--primary) !important;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .footer-column a,
        abbr {
            text-decoration: none;
            color: #ccc;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            transition: color 0.3s;
            text-decoration: none;
        }

        .footer-links a:hover,
        .footer-column a:hover,
        .footer-column abbr:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            background: var(--dark);
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

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

        .social-links-pop {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            padding: 20px;
            background: var(--dark);
            justify-content: center;
            border-radius: 20px;
        }

        .social-links-pop a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links-pop a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Animation Base */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* When visible */
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .loader-logo img {
                width: 25%;
                animation: pulse 3s infinite ease-in-out;
            }

            .hero-content {
                flex-direction: column;
            }

            .hero-text,
            .hero-image {
                flex: none;
                width: 100%;
            }

            .hero-text {
                text-align: center;
                margin-bottom: 40px;
            }

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

            .founder-content {
                flex-direction: column;
            }

            .process-steps::before {
                display: none;
            }

            .step {
                width: 100%;
                margin-bottom: 40px;
            }

            .cursor {
                position: relative;
                width: 24em;
                margin: 0 auto;
                border-right: 2px solid rgba(255, 255, 255, .75);
                font-size: 30px;
                text-align: center;
                white-space: wrap;
                overflow: hidden;
                transform: translateY(-25%);
            }

            @keyframes typewriter {
                from {
                    width: 0;
                }

                to {
                    width: 100%;
                }
            }

        }

        @media (max-width: 882px) {
            .nav-menu a {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 59px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }

            .nav-menu a {
                font-size: initial;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu-btn .bar {
                display: block;
            }


            #mobile-menu.is-active .bar:nth-child(2) {
                opacity: 0;
            }

            #mobile-menu.is-active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            #mobile-menu.is-active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .header-buttons {
                display: none;
            }

            .header-buttons-menu {
                display: flex;
                flex-direction: column;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text p {
                font-size: 18px;
            }

            .hero-tagline {
                font-size: 14px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .hero-buttons img {
                width: 150px;
                height: 100%;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

             #mypopover{
            max-width: 350px;
            width: 100%;
        }

        .process-steps{
            margin: 0px 0;
        }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }

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

            .footer-column {
                align-items: center;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }


            .footer-column h3::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 33.3%;
                width: 30px;
                height: 3px;
                /* background: var(--primary); */
                border-radius: 2px;
            }

            .contact-info p {
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }