/* CSS Variables */
        :root {
            --primary-color: #6c63ff;
            --primary-light: #8a84ff;
            --primary-dark: #4d44db;
            --secondary-color: #00c9a7;
            --accent-color: #ff6584;
            --accent-dark: #e05572;
            --dark-color: #121212;
            --darker-color: #0a0a0a;
            --light-color: #f8f9fa;
            --gray-color: #a0a0a0;
            --dark-gray: #2a2a2a;
            --white-color: #ffffff;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            --glow-effect: 0 0 15px rgba(108, 99, 255, 0.5);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
        }

        /* Dark/Light Mode Variables */
        [data-theme="light"] {
            --dark-color: #f8f9fa;
            --darker-color: #e9ecef;
            --light-color: #121212;
            --gray-color: #495057;
            --dark-gray: #dee2e6;
            --white-color: #ffffff;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--light-color);
            background-color: var(--dark-color);
            overflow-x: hidden;
            scroll-behavior: smooth;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        h1, h2, h3, h4, h5 {
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray-color);
            font-weight: 300;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
            cursor: pointer;
            z-index: 999;
            border: none;
            outline: none;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.6);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .btn i {
            margin-left: 8px;
            font-size: 0.9em;
        }

        .primary-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        .primary-btn:hover {
            background-color: transparent;
            box-shadow: var(--glow-effect);
        }

        .secondary-btn {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .secondary-btn:hover {
            color: var(--white-color);
            border-color: transparent;
            box-shadow: var(--glow-effect);
        }

        .accent-btn {
            background-color: var(--accent-color);
            color: var(--white-color);
        }

        .accent-btn:hover {
            background-color: transparent;
            box-shadow: 0 0 15px rgba(255, 101, 132, 0.5);
        }

        .login-btn {
            color: var(--light-color);
            margin-right: 10px;
            padding: 10px 20px;
        }

        .login-btn:hover {
            color: var(--primary-color);
            transform: none;
        }

        .signup-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 10px 20px;
        }

        .signup-btn:hover {
            background-color: var(--primary-light);
            box-shadow: var(--glow-effect);
        }

        /* Badges */
        .badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background-color: var(--primary-color);
            color: var(--white-color);
            margin-left: 10px;
            vertical-align: middle;
        }

        .badge-new {
            background-color: var(--accent-color);
        }

        .badge-popular {
            background-color: var(--secondary-color);
        }

        /* Section Styling */
        section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            color: var(--white-color);
        }

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

        .section-subtitle {
            color: var(--gray-color);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

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

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

        /* Navigation */
        .navbar {
            background-color: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(0, 0, 0, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white-color);
            display: flex;
            align-items: center;
            letter-spacing: 1px;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

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

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            margin-right: 25px;
            font-weight: 500;
            position: relative;
            font-size: 1.05rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

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

        .auth-buttons {
            margin-left: 30px;
            display: flex;
            align-items: center;
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-color);
            transition: var(--transition);
            z-index: 1001;
        }

        .hamburger:hover {
            color: var(--primary-color);
        }

        /* User Profile Dropdown */
        .user-profile {
            position: relative;
            margin-left: 30px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid var(--primary-color);
            transition: var(--transition);
        }

        .user-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
        }

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

        .user-dropdown {
            position: absolute;
            top: 60px;
            right: 0;
            background-color: var(--dark-gray);
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            width: 250px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1001;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .user-profile:hover .user-dropdown {
            opacity: 1;
            visibility: visible;
            top: 50px;
        }

        .user-dropdown a {
            display: block;
            padding: 10px 20px;
            color: var(--gray-color);
            transition: var(--transition);
        }

        .user-dropdown a:hover {
            color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.1);
        }

        .user-dropdown a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .user-dropdown-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 10px 0;
        }

        /* Hero Section */
        .hero {
            padding: 200px 0 120px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at top right, rgba(108, 99, 255, 0.1) 0%, transparent 60%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, rgba(108, 99, 255, 0) 70%);
            z-index: -1;
            animation: pulse 8s infinite alternate;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-content {
            flex: 1;
            padding-right: 60px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            color: var(--white-color);
            line-height: 1.1;
            font-weight: 800;
        }

        .hero-content h1 span {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(108, 99, 255, 0.3);
            z-index: -1;
            border-radius: 5px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--gray-color);
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .hero-image {
            flex: 1;
            position: relative;
            perspective: 1000px;
        }

        .hero-image-container {
            position: relative;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }

        .hero-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            transform: translateZ(20px);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            z-index: 0;
            opacity: 0.5;
            transition: var(--transition);
        }

        .hero-image:hover::before {
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background-color: rgba(108, 99, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Services Section */
        .services {
            padding: 140px 0;
            background-color: var(--darker-color);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 101, 132, 0.1) 0%, rgba(255, 101, 132, 0) 70%);
            z-index: 0;
            animation: pulse 8s infinite alternate-reverse;
        }

        .services .container {
            position: relative;
            z-index: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background-color: var(--dark-gray);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transform: translateY(50px);
            opacity: 0;
        }

        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--white-color);
        }

        .service-content p {
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .service-btn {
            background-color: var(--accent-color);
            color: var(--white-color);
            width: 100%;
            padding: 12px;
            font-size: 0.95rem;
        }

        .service-btn:hover {
            background-color: transparent;
            box-shadow: 0 0 15px rgba(255, 101, 132, 0.5);
        }

        /* Features Section */
        .features {
            padding: 140px 0;
            background-color: var(--dark-color);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, rgba(0, 201, 167, 0) 70%);
            z-index: 0;
            animation: pulse 10s infinite alternate;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background-color: var(--dark-gray);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transform: scale(0.95);
            opacity: 0.7;
            transition: var(--transition);
        }

        .feature-card.animate {
            transform: scale(1);
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: var(--white-color);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
            background: var(--gradient-accent);
        }

        .feature-card h3 {
            color: var(--white-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* Dashboard Preview Section */
        .dashboard-preview {
            padding: 140px 0;
            background-color: var(--darker-color);
            position: relative;
        }

        .dashboard-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: var(--transition);
        }

        .dashboard-container.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .dashboard-header {
            background-color: var(--dark-gray);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-tabs {
            display: flex;
            margin-left: 20px;
        }

        .dashboard-tab {
            padding: 8px 15px;
            margin-right: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
            color: var(--gray-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .dashboard-tab.active {
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        .dashboard-content {
            display: flex;
            min-height: 500px;
            background-color: var(--dark-color);
        }

        .dashboard-sidebar {
            width: 250px;
            background-color: var(--dark-gray);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-menu li {
            margin-bottom: 10px;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 5px;
            color: var(--gray-color);
            transition: var(--transition);
        }

        .sidebar-menu a:hover, .sidebar-menu a.active {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
        }

        .sidebar-menu a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .dashboard-main {
            flex: 1;
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .dashboard-widget {
            background-color: var(--dark-gray);
            border-radius: 10px;
            padding: 20px;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .widget-header h4 {
            color: var(--white-color);
            font-size: 1.1rem;
        }

        .widget-stat {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 15px 0;
        }

        .widget-progress {
            height: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin: 15px 0;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            width: 65%;
        }

        .widget-list {
            list-style: none;
        }

        .widget-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }

        .widget-list li:last-child {
            border-bottom: none;
        }

        .widget-list i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .widget-large {
            grid-column: span 2;
        }

        .widget-chart {
            height: 200px;
            background-color: rgba(108, 99, 255, 0.1);
            border-radius: 8px;
            margin-top: 15px;
            display: flex;
            align-items: flex-end;
            padding: 10px;
        }

        .chart-bar {
            flex: 1;
            background: var(--gradient-primary);
            margin: 0 5px;
            border-radius: 5px 5px 0 0;
            position: relative;
            transition: height 0.5s ease;
        }

        .chart-bar::after {
            content: attr(data-value);
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.7rem;
            color: var(--white-color);
        }

        /* Leaderboard Section */
        .leaderboard {
            padding: 140px 0;
            background-color: var(--dark-color);
            position: relative;
        }

        .leaderboard-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--dark-gray);
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
            transition: var(--transition);
        }

        .leaderboard-container.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .leaderboard-header {
            padding: 20px;
            background-color: rgba(108, 99, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .leaderboard-header h3 {
            color: var(--white-color);
            text-align: center;
        }

        .leaderboard-list {
            list-style: none;
        }

        .leaderboard-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .leaderboard-item:hover {
            background-color: rgba(108, 99, 255, 0.05);
        }

        .leaderboard-rank {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .leaderboard-item:first-child .leaderboard-rank {
            background: var(--gradient-primary);
            color: var(--white-color);
        }

        .leaderboard-item:nth-child(2) .leaderboard-rank {
            background: var(--gradient-accent);
            color: var(--white-color);
        }

        .leaderboard-item:nth-child(3) .leaderboard-rank {
            background: linear-gradient(135deg, #00c9a7, #00a78e);
            color: var(--white-color);
        }

        .leaderboard-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--primary-color);
        }

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

        .leaderboard-info {
            flex: 1;
        }

        .leaderboard-info h4 {
            color: var(--white-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .leaderboard-info p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .leaderboard-score {
            font-weight: 700;
            color: var(--primary-color);
        }

        /* Pricing Section */
        .pricing {
            padding: 140px 0;
            background-color: var(--dark-color);
            position: relative;
        }

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

        .pricing-card {
            background-color: var(--dark-gray);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border: 1px solid var(--primary-color);
            transform: translateY(-20px);
        }

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

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .pricing-card h3 {
            color: var(--white-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

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

        .price span {
            font-size: 1rem;
            color: var(--gray-color);
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 30px;
        }

        .pricing-features li {
            list-style: none;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray-color);
        }

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

        .pricing-features li i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* Membership Purchase Page */
        .membership-purchase {
            padding: 100px 0;
            min-height: 100vh;
            background-color: var(--dark-color);
        }

        .membership-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--dark-gray);
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .membership-header {
            padding: 30px;
            background: var(--gradient-primary);
            text-align: center;
            color: var(--white-color);
        }

        .membership-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .membership-header p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
        }

        .membership-content {
            display: flex;
            padding: 0;
        }

        .membership-details {
            flex: 1;
            padding: 40px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .membership-plan {
            margin-bottom: 40px;
        }

        .membership-plan h3 {
            font-size: 1.8rem;
            color: var(--white-color);
            margin-bottom: 20px;
        }

        .membership-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .membership-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }

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

        .membership-features li i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.1rem;
        }

        .membership-price {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .membership-billing {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .membership-form {
            flex: 1;
            padding: 40px;
        }

        .membership-form h3 {
            font-size: 1.8rem;
            color: var(--white-color);
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 25px;
            flex: 1;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--gray-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-family: inherit;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--light-color);
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
            background-color: rgba(108, 99, 255, 0.05);
        }

        .payment-methods {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .payment-method {
            flex: 1;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: var(--transition);
        }

        .payment-method.active {
            border-color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.1);
        }

        .payment-method i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .payment-method p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .membership-summary {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .summary-item:last-child {
            margin-bottom: 0;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 700;
        }

        .summary-item.total {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .purchase-btn {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
            background: var(--gradient-primary);
            color: var(--white-color);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .purchase-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }

        .secure-checkout {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .secure-checkout i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background-color: var(--dark-color);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
            z-index: 0;
            animation: pulse 12s infinite alternate-reverse;
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            color: var(--white-color);
            font-size: 2.5rem;
        }

        .about-image {
            flex: 1;
            position: relative;
            perspective: 1000px;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            transform: rotateY(10deg);
        }

        .about-image:hover img {
            transform: rotateY(0);
        }

        .about-stats {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background-color: var(--dark-gray);
            border-radius: 10px;
            flex: 1 1 160px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .stat-item h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 700;
        }

        .stat-item p {
            font-size: 0.95rem;
            color: var(--gray-color);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 140px 0;
            background-color: var(--darker-color);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to right, rgba(108, 99, 255, 0.05) 0%, transparent 50%, rgba(255, 101, 132, 0.05) 100%);
            z-index: 0;
        }

        .swiper {
            width: 100%;
            height: 100%;
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: var(--dark-gray);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            margin: 0 15px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transform: scale(0.9);
            opacity: 0.7;
            transition: var(--transition);
        }

        .swiper-slide-active .testimonial-card {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(108, 99, 255, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
            font-style: italic;
        }

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

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary-color);
        }

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

        .author-info h4 {
            color: var(--white-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 0;
        }

        .swiper-pagination-bullet {
            background-color: var(--gray-color);
            opacity: 0.5;
            width: 12px;
            height: 12px;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
            opacity: 1;
            transform: scale(1.2);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: var(--transition);
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: rgba(108, 99, 255, 0.2);
            transform: scale(1.1);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 100px 0;
            background: var(--gradient-primary);
            text-align: center;
            position: relative;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .newsletter .container {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            color: var(--white-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .newsletter-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background-color: rgba(255, 255, 255, 0.9);
            font-family: inherit;
            outline: none;
            font-size: 1rem;
        }

        .newsletter-form button {
            padding: 18px 35px;
            background-color: var(--dark-color);
            color: var(--white-color);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .newsletter-form button:hover {
            background-color: var(--darker-color);
        }

        /* Contact Section */
        .contact {
            padding: 140px 0;
            background-color: var(--darker-color);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 101, 132, 0.1) 0%, rgba(255, 101, 132, 0) 70%);
            z-index: 0;
            animation: pulse 8s infinite alternate;
        }

        .contact .container {
            position: relative;
            z-index: 1;
        }

        .contact-container {
            display: flex;
            gap: 60px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            color: var(--white-color);
            margin-bottom: 40px;
            font-size: 1.8rem;
        }

        .contact-form {
            flex: 1;
            background-color: var(--dark-gray);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .contact-item i {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item p {
            margin-bottom: 0;
            font-size: 1.05rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--gray-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-family: inherit;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--light-color);
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
            background-color: rgba(108, 99, 255, 0.05);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* FAQ Section */
        .faq {
            padding: 140px 0;
            background-color: var(--dark-color);
            position: relative;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion {
            margin-top: 50px;
        }

        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--dark-gray);
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .accordion-header {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.02);
            transition: var(--transition);
        }

        .accordion-header:hover {
            background-color: rgba(108, 99, 255, 0.05);
        }

        .accordion-header h4 {
            color: var(--white-color);
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        .accordion-header i {
            color: var(--primary-color);
            transition: var(--transition);
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content-inner {
            padding: 20px 0;
            color: var(--gray-color);
        }

        /* Footer */
        .footer {
            background-color: var(--darker-color);
            color: var(--white-color);
            padding: 100px 0 30px;
            position: relative;
        }

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

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

        .footer-logo .logo {
            color: var(--white-color);
            margin-bottom: 25px;
            display: block;
        }

        .footer-logo p {
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .footer-links h4,
        .footer-services h4,
        .footer-social h4 {
            color: var(--white-color);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h4::after,
        .footer-services h4::after,
        .footer-social h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .footer-links ul,
        .footer-services ul {
            list-style: none;
        }

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

        .footer-links a,
        .footer-services a {
            transition: var(--transition);
            display: inline-block;
            font-size: 0.95rem;
        }

        .footer-links a:hover,
        .footer-services a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            color: var(--white-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .legal-links {
            display: flex;
            gap: 25px;
        }

        .legal-links a {
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .legal-links a:hover {
            color: var(--primary-color);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: none;
            outline: none;
        }

        .back-to-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .back-to-top:hover::before {
            opacity: 1;
        }

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

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.6);
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--dark-gray);
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            padding: 40px;
            position: relative;
            transform: translateY(50px);
            transition: var(--transition);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--gray-color);
            cursor: pointer;
            transition: var(--transition);
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.1);
        }

        .modal h2 {
            color: var(--white-color);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .modal p {
            margin-bottom: 30px;
        }

        /* Login/Signup Form */
        .auth-form .form-group {
            margin-bottom: 20px;
        }

        .auth-form label {
            display: block;
            margin-bottom: 8px;
            color: var(--gray-color);
        }

        .auth-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--light-color);
            font-family: inherit;
            transition: var(--transition);
        }

        .auth-form input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }

        .auth-form button {
            width: 100%;
            margin-top: 10px;
        }

        .auth-form-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .auth-form-footer a {
            color: var(--primary-color);
            font-weight: 500;
        }

        /* AI Chatbot */
        .chatbot-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(255, 101, 132, 0.4);
            cursor: pointer;
            z-index: 999;
            border: none;
            outline: none;
            transition: var(--transition);
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 101, 132, 0.6);
        }

        .chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background-color: var(--dark-gray);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }

        .chatbot-container.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .chatbot-header {
            padding: 15px;
            background-color: rgba(108, 99, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .chatbot-header h3 {
            color: var(--white-color);
            margin-left: 10px;
            font-size: 1.2rem;
        }

        .chatbot-messages {
            height: 300px;
            padding: 15px;
            overflow-y: auto;
        }

        .chatbot-message {
            margin-bottom: 15px;
            display: flex;
        }

        .chatbot-message.bot {
            justify-content: flex-start;
        }

        .chatbot-message.user {
            justify-content: flex-end;
        }

        .chatbot-message-content {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
        }

        .chatbot-message.bot .chatbot-message-content {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--white-color);
            border-radius: 0 15px 15px 15px;
        }

        .chatbot-message.user .chatbot-message-content {
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 15px 0 15px 15px;
        }

        .chatbot-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .chatbot-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--white-color);
            outline: none;
            font-family: inherit;
        }

        .chatbot-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            margin-left: 10px;
            cursor: pointer;
            transition: var(--transition);
        }

        .chatbot-input button:hover {
            background-color: var(--primary-dark);
        }

        /* Voice Command Indicator */
        .voice-indicator {
            position: fixed;
            bottom: 180px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(255, 101, 132, 0.4);
            cursor: pointer;
            z-index: 999;
            border: none;
            outline: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .voice-indicator.active {
            opacity: 1;
            visibility: visible;
            animation: pulse 1.5s infinite;
        }

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

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

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

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

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

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .hero .container,
            .about .container {
                flex-direction: column;
            }
            
            .hero-content,
            .about-content {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .hero-content h1 span::after {
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info {
                margin-bottom: 50px;
            }
            
            .about-stats {
                justify-content: center;
            }
            
            .stat-item {
                flex: 0 0 calc(33.333% - 15px);
                margin-bottom: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 50px;
                width: 100%;
            }
            
            .newsletter-form button {
                margin-top: 15px;
            }
            
            .pricing-card.popular {
                transform: none;
            }

            .dashboard-main {
                grid-template-columns: 1fr;
            }

            .widget-large {
                grid-column: span 1;
            }

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

            .membership-details {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--darker-color);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                transition: var(--transition);
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                margin: 15px 0;
                font-size: 1.1rem;
            }
            
            .auth-buttons {
                margin: 30px 0 0;
                width: 100%;
                flex-direction: column;
            }
            
            .login-btn,
            .signup-btn {
                display: block;
                width: 100%;
                margin: 10px 0;
                text-align: center;
            }
            
            .hamburger {
                display: block;
                margin-left: auto;
                z-index: 1001;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
                margin-bottom: 15px;
            }
            
            .services-grid,
            .features-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 10px);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .legal-links {
                margin-top: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .back-to-top,
            .chatbot-toggle,
            .theme-toggle {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 30px;
                right: 30px;
            }

            .chatbot-toggle {
                right: 30px;
                bottom: 100px;
            }

            .theme-toggle {
                left: 30px;
                bottom: 100px;
            }

            .chatbot-container {
                width: calc(100% - 60px);
                right: 30px;
            }

            .voice-indicator {
                right: 30px;
                bottom: 160px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .modal-content {
                padding: 30px 20px;
            }

            .membership-header h2 {
                font-size: 2rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
