        :root {
            --primary-color: #6a4ca6;
            --secondary-color: #3b82f6;
            --accent-color: #f59e0b;
            --light-color: #f8f9fa;
            --dark-color: #0f172a;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            --gradient-footer: linear-gradient(135deg, #1e293b, #0f172a);
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3, h4, h5, h6,
        .navbar-brand,
        .section-title,
        .btn-primary,
        .feature-card h4,
        .event-card h4,
        .pricing-card h3,
        .testimonial-content h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 10px;
        }

        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: var(--gradient);
            margin: 0 auto 40px;
            border-radius: 10px;
        }

        .section-gradient {
            background: var(--gradient);
            color: white;
        }

        .section-light {
            background-color: rgba(248, 249, 250, 0.5);
        }

        .btn-primary {
            background: var(--gradient);
            border: none;
            box-shadow: 0 4px 15px rgba(106, 76, 166, 0.4);
            transition: all 0.3s ease;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(106, 76, 166, 0.6);
        }

        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .preloader-text {
            color: white;
            margin-top: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .spinner-border {
            width: 60px;
            height: 60px;
        }

        /* Navbar */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-scrolled {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 2rem;
            color: var(--primary-color) !important;
            letter-spacing: -0.5px;
        }

        .navbar .nav-link {
            font-weight: 500;
            padding: 10px 20px !important;
            position: relative;
            color: var(--dark-color) !important;
            font-family: 'Space Grotesk', sans-serif;
        }

        .navbar .nav-link::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 20px;
            right: 20px;
            height: 2px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .navbar .nav-link:hover::before,
        .navbar .nav-link.active::before {
            transform: scaleX(1);
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            min-height: 650px;
            background: linear-gradient(135deg, rgba(106, 76, 166, 0.9), rgba(59, 130, 246, 0.8)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            max-width: 600px;
        }

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

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

        .hero-animation .circle-1,
        .hero-animation .circle-2,
        .hero-animation .circle-3 {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .hero-animation .circle-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .hero-animation .circle-2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            right: 20%;
            animation-delay: 2s;
        }

        .hero-animation .circle-3 {
            width: 150px;
            height: 150px;
            bottom: 40%;
            left: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }

            100% {
                transform: translateY(0px) rotate(360deg);
            }
        }

        /* Stats Counter */
        .counter-box {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            margin: 15px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .counter-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .counter {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Features Section */
        .feature-card {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(106, 76, 166, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(106, 76, 166, 0.15);
        }

        .feature-card .icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            margin-inline: auto;
            transition: all 0.3s ease;
        }

        .feature-card:hover .icon-wrapper {
            transform: rotateY(180deg);
            border-radius: 50%;
        }

        .feature-card .icon-wrapper i {
            font-size: 2.5rem;
            color: #fff;
        }

        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .feature-card p {
            color: #64748b;
            text-align: center;
            line-height: 1.6;
        }

        /* Event Cards */
        .event-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            background-color: #fff;
            border: 1px solid rgba(106, 76, 166, 0.1);
        }

        .event-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(106, 76, 166, 0.15);
        }

        .event-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient);
            color: #fff;
            width: 70px;
            height: 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            font-family: 'Space Grotesk', sans-serif;
        }

        .event-date .day {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1;
        }

        .event-date .month {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .event-details {
            padding: 30px;
        }

        .event-details h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .event-info {
            margin-bottom: 20px;
        }

        .event-info p {
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: #64748b;
        }

        .event-info i {
            color: var(--primary-color);
            margin-right: 12px;
            width: 18px;
            text-align: center;
        }

        .event-description {
            margin-bottom: 25px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonial-item {
            padding: 0 50px;
        }

        .testimonial-img {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .testimonial-item:hover .testimonial-img {
            transform: scale(1.1);
            border-color: var(--primary-color);
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 80px;
            color: var(--primary-color);
            font-family: 'Space Grotesk', sans-serif;
            opacity: 0.1;
        }

        .testimonial-content p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            color: #64748b;
            line-height: 1.7;
        }

        .testimonial-content h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .testimonial-content small {
            color: #94a3b8;
            display: block;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .rating i {
            color: #ffc107;
            margin: 0 2px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 1;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .carousel-indicators button.active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Pricing Cards */
        .pricing-card {
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(106, 76, 166, 0.15);
            border-color: rgba(106, 76, 166, 0.2);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            z-index: 1;
            transform: scale(1.05);
        }

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

        .popular-badge {
            position: absolute;
            top: 25px;
            right: -35px;
            background: var(--gradient);
            color: #fff;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 0.9rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(106, 76, 166, 0.3);
        }

        .pricing-header {
            padding: 40px 30px;
            text-align: center;
            background: linear-gradient(135deg, rgba(106, 76, 166, 0.05), rgba(59, 130, 246, 0.05));
            border-bottom: 1px solid #eee;
        }

        .pricing-header h3 {
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
        }

        .dollar {
            font-size: 1.8rem;
            position: absolute;
            top: 10px;
            left: -20px;
        }

        .period {
            font-size: 1.1rem;
            font-weight: normal;
            color: #94a3b8;
            margin-left: 5px;
        }

        .pricing-features {
            padding: 40px 30px;
        }

        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features ul li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }

        .pricing-features ul li:last-child {
            border-bottom: none;
        }

        .pricing-features ul li i {
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .pricing-features ul li .fa-check {
            color: #10b981;
        }

        .pricing-features ul li .fa-times {
            color: #ef4444;
        }

        .pricing-footer {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, rgba(106, 76, 166, 0.05), rgba(59, 130, 246, 0.05));
        }

        /* Download Section */
        .btn-store {
            display: inline-flex;
            align-items: center;
            background: #fff;
            color: #333;
            padding: 15px 25px;
            border-radius: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            font-family: 'Space Grotesk', sans-serif;
        }

        .btn-store:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            color: var(--primary-color);
        }

        .btn-store i {
            font-size: 2.5rem;
            margin-right: 15px;
        }

        .btn-store span {
            text-align: left;
            line-height: 1.2;
        }

        .btn-store span small {
            display: block;
            font-size: 0.8rem;
            font-weight: normal;
            opacity: 0.7;
        }

        .mobile-screenshot {
            max-width: 70%;
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-15deg);
            transition: transform 0.5s ease;
            border: 10px solid #fff;
        }

        .mobile-screenshot:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* Contact Form */
        .contact-form {
            background-color: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(106, 76, 166, 0.1);
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
            font-family: 'Space Grotesk', sans-serif;
        }

        .form-control {
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(106, 76, 166, 0.1);
        }

        /* Enhanced Footer */
        .footer-section {
            background: var(--gradient-footer);
            color: #fff;
            padding: 100px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .footer-section h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: #fff;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient);
            border-radius: 5px;
        }

        .footer-about {
            padding-right: 40px;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 20px;
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
        }

        .footer-logo span {
            color: var(--secondary-color);
        }

        .footer-about p {
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-right: 12px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

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

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

        .footer-links li a {
            color: #cbd5e1;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links li a:hover {
            color: #fff;
            padding-left: 10px;
            transform: translateX(5px);
        }

        .footer-links li a i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            color: #cbd5e1;
        }

        .contact-info li i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 15px;
            border-radius: 10px;
        }

        .newsletter-form .form-control::placeholder {
            color: #94a3b8;
        }

        .newsletter-form .btn-primary {
            width: 100%;
            margin-top: 15px;
            border-radius: 10px;
            padding: 15px;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
        }

        .footer-bottom p {
            margin-bottom: 0;
        }

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

        .footer-bottom-links a {
            color: #cbd5e1;
            margin: 0 15px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* Animation Enhancements */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .app-badge {
            max-width: 180px;
            margin: 10px;
            transition: transform 0.3s ease;
        }

        .app-badge:hover {
            transform: scale(1.05);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(106, 76, 166, 0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(106, 76, 166, 0.6);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .section-padding {
                padding: 80px 0;
            }

            .hero-section {
                height: auto;
                padding: 150px 0 100px;
            }

            .hero-image {
                margin-top: 40px;
            }

            .mobile-screenshot {
                max-width: 90%;
                transform: none;
            }

            .testimonial-item {
                padding: 0 20px;
            }

            .footer-about {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.3rem;
            }

            .pricing-card.featured {
                transform: none;
            }

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

            .contact-form {
                padding: 30px;
            }

            .navbar {
                padding: 15px 0;
            }

            .counter {
                font-size: 2.8rem;
            }

            .footer-section {
                padding: 80px 0 30px;
            }
        }