        :root {
            --primary: #FF8C00; /* Orange */
            --primary-dark: #CC7000; /* Dark Orange */
            --primary-light: #FFA333; /* Light Orange */
            --secondary: #DC143C; /* Crimson */
            --accent: #DC143C; /* Crimson */
            --accent-dark: #B01030; /* Dark Crimson */
            --success: #00c9a7;
            --warning: #ffc107;
            --danger: #ff3860;
            --info: #17a2b8;
            --dark: #0a0a0f;
            --dark-light: #151521;
            --dark-lighter: #1e1e2d;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gray-light: #adb5bd;
        }

        [data-theme="light"] {
            --bg-primary: #f8f9fa;
            --bg-secondary: #ffffff;
            --bg-tertiary: #e9ecef;
            --text-primary: #212529;
            --text-secondary: #495057;
            --text-muted: #6c757d;
            --card-bg: #ffffff;
            --card-bg-alt: #f8f9fa;
            --border-color: #dee2e6;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            --bg-primary: #0a0a0f;
            --bg-secondary: #151521;
            --bg-tertiary: #1e1e2d;
            --text-primary: #f8f9fa;
            --text-secondary: #e9ecef;
            --text-muted: #adb5bd;
            --card-bg: #1e1e2d;
            --card-bg-alt: #151521;
            --border-color: #2d2d3a;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .subheading {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Navigation */
        .navbar {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 10000;
            transition: all 0.3s ease;
            /* background: #17a2b8; */
        }

        [data-theme="light"] .navbar {
            background-color: rgba(248, 249, 250, 0.95);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .logo-icon i {
            font-size: 1.5rem;
        }

        .logo span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            padding: 8px 16px !important;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: var(--primary) !important;
            background-color: rgba(255, 140, 0, 0.1);
        }

        .nav-link.active {
            color: var(--primary) !important;
            background-color: rgba(255, 140, 0, 0.15);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }

        /* Mega Menu */
        .dropdown-mega {
            position: static !important;
            border-radius: 0;
            /* overflow: auto; */
        }

        .dropdown-menu-mega {
            width: 100%;
            height: 600px;
            left: 0;
            right: 0;
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color); 
            box-shadow: var(--shadow-lg);
            margin-top: 0;
            padding: 3%;
            border-radius: 0;
            overflow: auto;
        }

        .mega-menu-content {
            display: flex;
            flex-wrap: wrap;
        }

        .mega-menu-column {
            flex: 1;
            min-width: 200px;
            padding: 0 15px;
        }
        .mega-menu-column h5 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .mega-menu-column ul {
            list-style: none;
            padding: 0;
        }

        .mega-menu-column ul li {
            margin-bottom: 0.5rem;
        }

        .mega-menu-column ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }


        .mega-menu-column ul li a i {
            margin-right: 8px;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .mega-menu-column ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s;
            display: flex;
            margin-top: 12px;
            margin-left: 20px;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background-color: var(--primary);
            color: white;
            transform: rotate(15deg);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding-top: 80px;
        }

        .hero-content {
            z-index: 10;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            max-width: 700px;
        }

        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border: none;
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary));
            transition: all 0.5s;
            z-index: -1;
        }

        .btn-primary-custom:hover::before {
            width: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.5);
            color: white;
        }

        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-outline-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--primary);
            transition: all 0.5s;
            z-index: -1;
        }

        .btn-outline-custom:hover::before {
            width: 100%;
        }

        .btn-outline-custom:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 140, 0, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 140, 0, 0.3);
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            display: inline-block;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 2rem auto 0;
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .feature-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .feature-card::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0) 70%);
            top: -75px;
            right: -75px;
            border-radius: 50%;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(255, 140, 0, 0.1);
        }

        .feature-card h3 {
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .feature-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .feature-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .feature-link:hover {
            color: var(--primary-dark);
        }

        .feature-link:hover i {
            transform: translateX(5px);
        }

        /* Tools Section */
        .tools {
            padding: 120px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .tool-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .tool-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .tool-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .tool-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            border-radius: 25px;
            background: rgba(255, 140, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        .tool-card h3 {
            margin-bottom: 1.2rem;
        }

        .tool-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        /* Integration Section */
        .integrations {
            padding: 120px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .integration-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .integration-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .integration-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .integration-card h4 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Workflow Section */
        .workflow {
            padding: 120px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .workflow-step {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .workflow-step:last-child {
            margin-bottom: 0;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 2rem;
            flex-shrink: 0;
            z-index: 2;
        }

        .step-content {
            flex: 1;
        }

        .step-content h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .step-content p {
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .pricing-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2);
            z-index: 2;
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 25px;
            right: -45px;
            background: var(--primary);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .pricing-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
            line-height: 1;
        }

        .pricing-period {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--success);
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .pricing-features li.disabled {
            color: var(--text-muted);
        }

        .pricing-features li.disabled i {
            color: var(--text-muted);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 120px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            height: 100%;
            position: relative;
        }

        .testimonial-card::before {
            content: "'";
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            color: rgba(255, 140, 0, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--text-muted);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .accordion-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .accordion-button {
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            padding: 1.5rem;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--card-bg-alt);
            color: var(--primary);
        }

        .accordion-button::after {
            filter: invert(0.5);
        }

        .accordion-body {
            padding: 1.5rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border-color);
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light-custom {
            background: white;
            border: none;
            color: var(--primary);
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-light-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        .btn-outline-light-custom {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-outline-light-custom:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
        }


        /* Canvas Backgrounds */
        .canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .tagline {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

















        .about-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding-top: 100px;
        }

        .about-hero-content {
            z-index: 10;
            position: relative;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .about-hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            max-width: 700px;
        }

        /* About Mission Section */
        .about-mission {
            padding: 100px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .mission-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .mission-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            border-radius: 25px;
            background: rgba(255, 140, 0, 0.1);
        }

        /* Values Section */
        .values {
            padding: 100px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .value-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(255, 140, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .team-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 5px solid var(--primary);
            position: relative;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 1rem;
        }

        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--bg-tertiary);
            color: var(--text-primary);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .team-social a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Story Section */
        .story {
            padding: 100px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: 50%;
            padding-right: 40px;
        }

        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-right: 0;
            padding-left: 40px;
        }

        .timeline-dot {
            position: absolute;
            right: -20px;
            top: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 0 0 8px var(--bg-primary);
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -20px;
        }

        .timeline-content {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        /* CTA Section */
        .cta2 {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta2 h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta2 p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }


        .btn-outline-light-custom {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-outline-light-custom:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
        }



        /* .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 2rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: var(--card-bg);
            color: var(--text-primary);
            border-radius: 50%;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        } */
        /* .go-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
            transition: all 0.3s;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
        }

        .go-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .go-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.5);
        } */



        /* Contact Section */
        .contact-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding-top: 100px;
            text-align: center;
        }

        .contact-hero-content {
            z-index: 10;
            position: relative;
            padding: 4rem 0;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .contact-hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-main {
            padding: 80px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
        }

        .contact-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .contact-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            margin-bottom: 1rem;
            position: relative;
        }

        .contact-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .contact-title p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-method-card {
            background-color: var(--card-bg-alt);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            height: 100%;
        }

        .contact-method-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(255, 140, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        .contact-method-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-method-card p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .contact-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .contact-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .contact-link:hover {
            color: var(--primary-dark);
        }

        .contact-link:hover i {
            transform: translateX(5px);
        }

        /* Contact Form */
        .contact-form-section {
            background-color: var(--bg-primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-form-container {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-title h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .form-title p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            display: block;
        }

        .form-control {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 12px 15px;
            border-radius: 10px;
            width: 100%;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
            outline: none;
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* FAQ Section */
        .contact-faq {
            padding: 80px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .accordion-item2 {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .accordion-button2 {
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            padding: 1.5rem;
            box-shadow: none;
        }

        .accordion-button2:not(.collapsed) {
            background-color: var(--card-bg-alt);
            color: var(--primary);
        }

        .accordion-button2::after {
            filter: invert(0.5);
        }

        .accordion-body2 {
            padding: 1.5rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border-color);
        }

        /* Map Section */
        .contact-map {
            padding: 80px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .map-container {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .map-placeholder {
            background-color: var(--bg-secondary);
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .map-placeholder i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .map-info {
            text-align: left;
        }

        .map-info h4 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .map-info p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .map-info i {
            margin-right: 10px;
            color: var(--primary);
            width: 20px;
        }
























        /* Disclaimer Section */
        .disclaimer-section {
            padding: 150px 0 80px;
            background-color: var(--bg-primary);
            min-height: 100vh;
        }

        .disclaimer-header {
            margin-bottom: 3rem;
            text-align: center;
        }

        .disclaimer-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .disclaimer-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .disclaimer-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            margin-bottom: 3rem;
        }

        .disclaimer-card h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .disclaimer-card h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .disclaimer-content {
            line-height: 1.8;
        }

        .disclaimer-content p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .disclaimer-content ul, .disclaimer-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            color: var(--text-secondary);
        }

        .disclaimer-content li {
            margin-bottom: 0.8rem;
        }

        .disclaimer-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .highlight-box {
            background-color: var(--card-bg-alt);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            color: var(--text-primary);
            font-weight: 500;
        }

        .last-updated {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

















        /* FAQ Section */
        .faq2 {
            padding: 120px 0;
            background-color: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .accordion-item3 {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-item3:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .accordion-button3 {
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            padding: 1.5rem;
            box-shadow: none;
            font-size: 1.1rem;
        }

        .accordion-button3:not(.collapsed) {
            background-color: var(--card-bg-alt);
            color: var(--primary);
        }

        .accordion-button3::after {
            filter: invert(0.5);
        }

        .accordion-button3:focus {
            box-shadow: none;
            border-color: var(--primary);
        }

        .accordion-body3 {
            padding: 1.5rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border-color);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* FAQ Categories */
        .faq-categories {
            padding: 60px 0;
            background-color: var(--bg-primary);
        }

        .category-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .category-card.active {
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(255, 140, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        .category-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .category-card p {
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* Search Box */
        .faq-search {
            padding: 80px 0 40px;
            background-color: var(--bg-primary);
        }

        .search-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .search-box {
            position: relative;
            margin-bottom: 2rem;
        }

        .search-input {
            width: 100%;
            padding: 18px 25px 18px 60px;
            border-radius: 50px;
            border: 2px solid var(--border-color);
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        /* FAQ Stats */
        .faq-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem 2rem;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: var(--shadow);
            min-width: 150px;
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        /* CTA Section */
        .cta3 {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta3 h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta3 p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-buttons3 {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        

        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 3rem;
            background-color: var(--card-bg);
            border-radius: 15px;
            margin-top: 2rem;
            display: none;
        }

        .no-results i {
            font-size: 3rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .no-results h4 {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .no-results p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
























        /* Privacy Policy Section Styles */
        .privacy-policy {
            padding: 120px 0;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .privacy-header h1 {
            font-size: 3.5rem;
            display: inline-block;
            margin-bottom: 1rem;
            position: relative;
        }

        .privacy-header h1::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .privacy-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 2rem auto 0;
        }

        .policy-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .policy-card h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }

        .policy-card h3 {
            color: var(--primary);
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }

        .policy-card p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .policy-card ul, .policy-card ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .policy-card li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .policy-card strong {
            color: var(--text-primary);
        }


        .last-updated2 {
            background-color: var(--card-bg-alt);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 3rem;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .last-updated2 h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .contact-info {
            background-color: var(--card-bg-alt);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
            border: 1px solid var(--border-color);
        }

        .contact-info h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 5px;
        }













        /* Terms of Use Page Styles */
        .terms-header {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding: 150px 0 80px;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .terms-header h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }

        .terms-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .terms-content {
            padding: 100px 0;
            background-color: var(--bg-secondary);
        }

        .terms-section {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .terms-section:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .terms-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--border-color);
            font-size: 2rem;
        }

        .terms-section h3 {
            color: var(--text-primary);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }

        .terms-section p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .terms-section ul {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .terms-section ul li {
            margin-bottom: 0.8rem;
            position: relative;
        }

        .terms-section ul li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -1rem;
        }

        .terms-highlight-box {
            background-color: var(--card-bg-alt);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .terms-highlight-box p {
            margin-bottom: 0;
            font-style: italic;
            color: var(--text-primary);
        }

        .terms-table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
        }

        .terms-table th {
            background-color: var(--primary);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .terms-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .terms-table tr:nth-child(even) {
            background-color: var(--card-bg-alt);
        }

        .terms-contact {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 3rem;
            border-radius: 20px;
            color: white;
            margin-top: 3rem;
        }

        .terms-contact h3 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .terms-contact p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }
        .last-updated3 {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
            transition: all 0.3s;
            z-index: 999;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            color: white;
        }




































/* Top Bar Styles */
.vexax-topbar {
width: 100%;
height: 40px;
position: fixed;
top: 0;
left: 0;
background: #f3f3f3;
border-bottom: 1px solid #dcdcdc;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
font-family: 'Orbitron', sans-serif;
z-index: 9999;
}

.vexax-left {
font-size: 0.82rem;
font-weight: 700;
color: #222;
white-space: nowrap;
margin-right: 20px;
}
.vexax-left a {
color: #d9534f;
text-decoration: none;
font-weight: 800;
}

/* AD AREA */
.vexax-ad {
flex: 1;
height: 40px;
display: flex;
align-items: center;
justify-content: flex-end;
position: relative;
overflow: hidden;
white-space: nowrap;
padding-left: 20px;
font-size: 0.82rem;
font-weight: 600;
color: #444;
}

/* Fade Animations */
.ad-fade {
position: absolute;
right: 0;
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
.ad-fade.show {
opacity: 1;
}

/* Scroll Mode */
.ad-scroll {
position: absolute;
white-space: nowrap;
animation: scrollAd 12s linear infinite;
}

@keyframes scrollAd {
0%   { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.a-link{text-decoration: none;}