    :root {
            --primary-color: #3a86ff;
            --secondary-color: #8338ec;
            --accent-color: #ff006e;
            --text-color: #2b2d42;
            --bg-light: #f8f9fa;
            --transition-duration: 1s;
            --transition-timing: cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        /* Remove cursor: none and add interactive cursor styles */
        .nav-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .nav-arrow.disabled {
            cursor: not-allowed;
        }

        /* Add cursor styles for interactive elements */
        .feature-card,
        .step-card,
        .testimonial-card,
        .page-indicator,
        .btn {
            cursor: pointer;
        }

        /* Add hover effect cursor for links */
        a:hover {
            cursor: pointer;
        }

        /* Remove any remaining cursor: none */
        * {
            cursor: auto;
        }

        body {
            cursor: default;
        }

        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.3s ease;
            transform-origin: center center;
            mix-blend-mode: difference;
        }

        .custom-cursor-follower {
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            transition-delay: 0.1s;
            mix-blend-mode: difference;
        }

        /* Hover effects */
        a:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor {
            transform: scale(1.5);
            background: rgba(58, 134, 255, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            background: linear-gradient(
                45deg,
                rgba(58, 134, 255, 0.05) 0%,
                rgba(131, 56, 236, 0.05) 100%
            );
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        /* Animated background */
        .animated-bg {
            position: fixed;
            width: 100vw;
            height: 100vh;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(
                circle at center,
                rgba(58, 134, 255, 0.1) 0%,
                rgba(131, 56, 236, 0.1) 30%,
                transparent 70%
            );
            animation: rotate 30s linear infinite;
        }

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

        /* Floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            pointer-events: none;
        }

        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: float-slow 15s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: float-slow 20s ease-in-out infinite reverse;
        }

        @keyframes float-slow {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, 50px) rotate(90deg);
            }
            50% {
                transform: translate(0, 100px) rotate(180deg);
            }
            75% {
                transform: translate(-50px, 50px) rotate(270deg);
            }
        }

        /* Navbar styles */
        .navbar {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            color: var(--text-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            transition: width 0.3s ease;
        }

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

        /* Footer styles */
        .footer {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-color), var(--secondary-color), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Add blur effects to sections */
        .section-blur {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* Update hero section */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(131, 56, 236, 0.05));
        }

        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            animation: floatShape 20s infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 10%;
            animation-delay: 10s;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            right: 10%;
            animation-delay: 15s;
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, 50px) rotate(90deg);
            }
            50% {
                transform: translate(0, 100px) rotate(180deg);
            }
            75% {
                transform: translate(-50px, 50px) rotate(270deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .badge-new {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards;
        }

        .badge-icon {
            font-size: 1.2rem;
            margin-right: 8px;
        }

        .badge-text {
            font-weight: 600;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .gradient-text {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dynamic-text-wrapper {
            display: inline-block;
            position: relative;
            min-width: 200px;
        }

        .dynamic-text {
            position: relative;
            color: var(--accent-color);
        }

        .cursor {
            position: absolute;
            right: -4px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 70%;
            background-color: var(--accent-color);
            animation: blink 0.7s infinite;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #6c757d;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
                opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.5s ease forwards;
        }

        .feature-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .feature-item:nth-child(3) {
            animation-delay: 0.4s;
        }

        .feature-item i {
            color: var(--primary-color);
        }

        .hero-buttons {
            margin: 2rem 0;
        }

        .btn-primary {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            padding: 1rem 2rem;
            margin-left: 1rem;
            transition: all 0.3s ease;
        }

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

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.5s ease forwards 0.6s;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.5rem;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

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

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

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 6s ease-in-out infinite;
        }

        .card-1 {
            top: 20%;
            left: -50px;
            animation-delay: 0s;
        }

        .card-2 {
            top: 50%;
            right: -30px;
            animation-delay: 2s;
        }

        .card-3 {
            bottom: 20%;
            left: -40px;
            animation-delay: 4s;
        }

        .success-circle {
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #00b894, #00cec9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        @media (max-width: 991.98px) {
            .hero {
                padding: 80px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-features {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-image-wrapper {
                margin-top: 3rem;
            }

            .floating-card {
                display: none;
            }
        }

        /* Page Container and Sections */
        .page-container {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .page-section {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            transition: transform var(--transition-duration) var(--transition-timing);
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .page-section.active {
            transform: translateY(0) !important;
            z-index: 2;
        }

        .page-section.prev {
            transform: translateY(-100%) !important;
            z-index: 1;
        }

        .page-section.next {
            transform: translateY(100%) !important;
            z-index: 1;
        }

        /* Hide scrollbar but allow scrolling */
        .page-section {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .page-section::-webkit-scrollbar {
            display: none;
        }

        /* Ensure content is centered in sections */
        .page-section > div {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Prevent horizontal overflow */
        body {
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Page Indicators */
        .page-indicators {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .page-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .page-indicator::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.3s ease;
        }

        .page-indicator.active {
            background: var(--primary-color);
        }

        .page-indicator.active::before {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Section Specific Styles */
        #hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        #features-section {
            background: #fff;
        }

        /* Animation Classes */
        .slide-in {
            animation: slideIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
        }

        .slide-out {
            animation: slideOut 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
        }

        @keyframes slideIn {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        /* Update existing sections to work with fullpage scroll */
        .hero, .features {
            height: 100vh;
            overflow: hidden;
            padding: 0;
        }

        .hero .container, .features .container {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }

        .scroll-progress-bar {
            width: 100%;
            background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
            transition: height 0.3s ease;
        }

        /* Scroll Hint */
        .scroll-hint {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            animation: bounce 2s infinite;
        }

        .scroll-hint i {
            font-size: 24px;
            color: var(--primary-color);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Navigation Arrows */
        .nav-arrows {
            position: fixed;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .nav-arrow:hover {
            transform: scale(1.1);
            opacity: 1;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .nav-arrow i {
            color: white;
            font-size: 24px;
        }

        .nav-arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .nav-arrow.disabled:hover {
            transform: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Page Sections */
        #about-section {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        }

        #how-it-works-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        #testimonials-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        /* Section Content Styles */
        .about-content, .how-it-works-content, .testimonials-content {
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-cards {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .step-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

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

        .step-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .testimonial-cards {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }

        .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
        }

        .author-info p {
            margin: 0;
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Show Nav Button */
        .show-nav-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .show-nav-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .show-nav-btn i {
            font-size: 24px;
        }

        /* Updated Navbar styles */
        .navbar {
            transform: translateY(-100%);
            transition: transform 0.5s ease, background 0.3s ease;
        }

        .navbar.visible {
            transform: translateY(0);
        }

        .navbar.first-section {
            transform: translateY(0);
        }

        /* Footer section */
        #footer-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .footer-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .footer {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        }

        .footer-section ul li {
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .footer-section ul li:hover {
            transform: translateX(10px);
        }

        .footer-section ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .footer-section ul li a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover::before {
            opacity: 1;
        }

        .footer-section ul li a:hover {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-left: 25px;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            top: 100%;
            left: 0;
            transition: all 0.3s ease;
        }

        .social-links a:hover::before {
            top: 0;
        }

        .social-links a i {
            position: relative;
            z-index: 1;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-color), var(--secondary-color), transparent);
        }

        .testimonials-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(131, 56, 236, 0.05));
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #fff;
            border-radius: 50%;
            animation: twinkle var(--duration) ease-in-out infinite;
            opacity: 0;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.5);
            }
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(58, 134, 255, 0.1),
                rgba(131, 56, 236, 0.1)
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .testimonial-rating {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .author-info p {
            margin: 0.25rem 0 0;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .quote-icon {
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 5rem;
            color: rgba(58, 134, 255, 0.1);
            transform: rotate(10deg);
        }

        /* How It Works Section Styles */
        .how-it-works-content {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(131, 56, 236, 0.05));
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .how-it-works-content::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(58, 134, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
            animation: pulseBackground 10s ease-in-out infinite alternate;
        }

        @keyframes pulseBackground {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .step-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                0 0 0 20px rgba(255, 255, 255, 0.05);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .step-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                45deg,
                transparent 0%,
                rgba(58, 134, 255, 0.1) 45%,
                rgba(131, 56, 236, 0.1) 55%,
                transparent 100%
            );
            transform: translateY(100%) rotate(-45deg);
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .step-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 30px;
            background: linear-gradient(
                45deg,
                var(--primary-color),
                var(--secondary-color)
            );
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: -1;
        }

        .step-card:hover {
            transform: translateY(-20px) rotateX(10deg);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.15),
                0 0 0 2px rgba(255, 255, 255, 0.3),
                0 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .step-card:hover::before {
            transform: translateY(0) rotate(-45deg);
        }

        .step-card:hover::after {
            opacity: 0.1;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2.5rem;
            position: relative;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 
                0 10px 30px rgba(58, 134, 255, 0.3),
                0 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .step-icon::before,
        .step-icon::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            animation: iconPulse 2s ease-out infinite;
        }

        .step-icon::before {
            inset: -10px;
            border: 2px solid rgba(58, 134, 255, 0.3);
            animation-delay: -0.5s;
        }

        .step-icon::after {
            inset: -20px;
            border: 2px solid rgba(131, 56, 236, 0.3);
            animation-delay: -1s;
        }

        @keyframes iconPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .step-icon i {
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.6s ease;
        }

        .step-card:hover .step-icon {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 
                0 15px 40px rgba(58, 134, 255, 0.4),
                0 0 0 15px rgba(255, 255, 255, 0.9);
        }

        .step-card:hover .step-icon i {
            transform: scale(1.2);
        }

        .step-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2rem 0;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            transform: translateZ(20px);
        }

        .step-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            transform: translateX(-50%);
            transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-radius: 3px;
        }

        .step-card:hover h3::after {
            width: 80%;
        }

        .step-card p {
            color: #6c757d;
            line-height: 1.8;
            font-size: 1.15rem;
            margin: 1.5rem 0 0;
            position: relative;
            transform: translateZ(10px);
            transition: color 0.3s ease;
        }

        .step-card:hover p {
            color: #495057;
        }

        @media (max-width: 991.98px) {
            .how-it-works-content {
                padding: 4rem 1rem;
            }

            .step-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-card {
                padding: 2.5rem 2rem;
            }

            .step-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 2rem;
            }

            .step-icon i {
                font-size: 2rem;
            }

            .step-card h3 {
                font-size: 1.75rem;
            }

            .step-card p {
                font-size: 1.1rem;
            }
        }

        @media (hover: none) {
            .step-card {
                transform: none !important;
            }

            .step-card:hover {
                transform: translateY(-10px) !important;
            }

            .step-icon {
                transform: none !important;
            }
        }

        /* Features Section Styles */
        .features {
            padding: 4rem 0;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(45deg, 
                rgba(58, 134, 255, 0.05),
                rgba(131, 56, 236, 0.05)
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }

        /* Add these styles */
        .step-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .step-particles::before,
        .step-particles::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            animation: particleFloat 6s infinite;
        }

        .step-particles::before {
            top: 20%;
            left: 20%;
            animation-delay: -2s;
        }

        .step-particles::after {
            top: 70%;
            right: 20%;
            animation-delay: -4s;
        }

        .step-card:hover .step-particles::before,
        .step-card:hover .step-particles::after {
            opacity: 0.3;
        }

        @keyframes particleFloat {
            0% {
                transform: translate(0, 0) scale(0.5);
                opacity: 0;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: translate(100px, -100px) scale(1.5);
                opacity: 0;
            }
        }

        .how-it-works-content::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: 
                radial-gradient(2px 2px at 40px 60px, #3a86ff 100%, transparent),
                radial-gradient(2px 2px at 20px 50px, #8338ec 100%, transparent),
                radial-gradient(2px 2px at 30px 100px, #3a86ff 100%, transparent),
                radial-gradient(2px 2px at 40px 60px, #8338ec 100%, transparent),
                radial-gradient(2px 2px at 110px 90px, #3a86ff 100%, transparent),
                radial-gradient(2px 2px at 190px 150px, #8338ec 100%, transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            opacity: 0.1;
            animation: starsFloat 100s linear infinite;
            pointer-events: none;
        }

        @keyframes starsFloat {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-200px);
            }
        }

        .about-bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .about-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            filter: blur(20px);
            animation: floatShape 20s infinite;
        }

        .about-shape-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            background: linear-gradient(45deg, #3a86ff, #8338ec);
            animation-delay: 0s;
        }

        .about-shape-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
            background: linear-gradient(45deg, #8338ec, #ff006e);
            animation-delay: -5s;
        }

        .about-shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(45deg, #ff006e, #3a86ff);
            animation-delay: -10s;
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.1;
            }
            25% {
                transform: translate(50px, 50px) rotate(90deg) scale(1.1);
                opacity: 0.15;
            }
            50% {
                transform: translate(0, 100px) rotate(180deg) scale(1);
                opacity: 0.1;
            }
            75% {
                transform: translate(-50px, 50px) rotate(270deg) scale(0.9);
                opacity: 0.05;
            }
        }

        /* Enhanced Features Section */
        .features {
            padding: 6rem 0;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .features::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(58, 134, 255, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.05) 0%, transparent 70%);
        }

        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                45deg,
                transparent 0%,
                rgba(58, 134, 255, 0.1) 45%,
                rgba(131, 56, 236, 0.1) 55%,
                transparent 100%
            );
            transform: translateY(100%) rotate(-45deg);
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.15),
                0 0 0 2px rgba(58, 134, 255, 0.2);
        }

        .feature-card:hover::before {
            transform: translateY(0) rotate(-45deg);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            transition: all 0.6s ease;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.3;
            filter: blur(10px);
            transition: all 0.6s ease;
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.6s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .feature-card:hover .feature-icon::before {
            inset: -15px;
            opacity: 0.5;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 1.5rem 0;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .feature-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            transform: translateX(-50%);
            transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-card:hover h3::after {
            width: 80%;
        }

        .feature-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .feature-stats::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(
                to right,
                transparent,
                var(--primary-color),
                var(--secondary-color),
                transparent
            );
        }

        .feature-stat {
            text-align: center;
            position: relative;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .stat-value::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            top: -10px;
            right: -10px;
            opacity: 0.2;
            filter: blur(5px);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        @media (max-width: 991.98px) {
            .feature-cards {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
            }

            .feature-icon i {
                font-size: 2rem;
            }

            .feature-card h3 {
                font-size: 1.5rem;
            }

            .feature-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }