:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #22d3ee;
    --background: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

/* Feature Cards Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary);
    margin: 1rem 0;
    font-weight: 600;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 4rem 2rem;
    color: var(--white);
}

/* Update Chat Widget Styles */
.chat-widget {
    max-width: 800px; /* Increased from 400px */
    width: 90%;
    margin: 2rem auto;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem; /* Increased padding */
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.chat-messages {
    padding: 2rem;
    max-height: 400px; /* Increased from 300px */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    max-width: 80%;
    background: rgba(99, 102, 241, 0.1);
}

.message.user-message {
    background: var(--primary);
    color: white;
    align-self: flex-end;
}

.chat-input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    background: rgba(99, 102, 241, 0.05);
}

.demo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
}

@media (max-width: 768px) {
    .chat-widget {
        width: 95%;
    }
    
    .chat-messages {
        max-height: 350px;
        padding: 1rem;
    }
    
    .message {
        max-width: 90%;
    }
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.price-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.price-card .price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-card ul li {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.price-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Global Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card, .price-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: none;
    }
}

/* Add these styles to your styles.css */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.tab-nav {
    display: flex;
    gap: 1rem;
    position: relative;
}

.tab-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.tab-link i {
    font-size: 1.1rem;
}

.tab-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.tab-link.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.tab-link.login {
    background: var(--primary);
    color: white;
}

.tab-link.login:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Adjust hero section to account for fixed header */
.hero {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tab-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Add to your existing CSS */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.85;
}

.learning-process {
    padding: 4rem 2rem;
    background: var(--background);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 4rem 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid white;
}

.trusted-by {
    padding: 4rem 2rem;
    background: var(--background);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Add/update these styles in your styles.css */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.search-demo {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Add to your existing CSS */
.preview-gallery {
    padding: 4rem 2rem;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.feature-preview {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.preview-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.achievement-proof {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.achievement-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cert-badge {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Add to your existing CSS */
.preview-gallery {
    padding: 4rem 2rem;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.feature-preview {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.preview-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.achievement-proof {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.achievement-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cert-badge {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Add/update these styles in your styles.css */
.search-demo {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    height: 70px;
    padding: 0 70px 0 30px;
    font-size: 1.25rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .search-input {
        height: 60px;
        font-size: 1.1rem;
        padding: 0 60px 0 20px;
    }
    
    .search-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}
/* Add to styles.css */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.section-container.reverse {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
    max-width: 600px;
}

.section-media {
    flex: 1;
    position: relative;
}

.section-divider {
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
    opacity: 0.1;
    margin: -50px 0;
}

@media (max-width: 1024px) {
    .section-container,
    .section-container.reverse {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
    }
}

/* Add to your styles.css */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Update existing section headings */
.features h2,
.demo-section h2,
.pricing h2,
.learning-process h2,
.trusted-by h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Add animation */
section h2 {
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clickable {
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.module-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.module-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

 /* Add to your existing CSS */
.goals-list {
    margin-top: 1rem;
}

.goal-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    background: white;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.goal-item.completed {
    opacity: 0.7;
    background: #f7fafc;
}

.goal-checkbox {
    margin-right: 1rem;
}

.goal-content {
    flex: 1;
}

.goal-text {
    display: block;
    font-weight: 500;
    color: #2d3748;
}

.goal-course {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}
.card-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
    align-items: center;
}

.continue-btn {
    order: 1;
}

.delete-btn {
    order: 2;
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.delete-btn:hover {
    background: #b91c1c;
}

.feature-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.feature-slides {
    overflow: hidden;
    position: relative;
    height: 400px;
}

.feature-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.feature-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-content {
    flex: 1;
    padding: 2rem;
}

.feature-demo {
    flex: 1;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-demo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .feature-slide {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

    .feature-demo {
        height: 250px;
    }

    .carousel-btn {
        display: none;
    }
}

.feature-image {
    min-height: 200px;
    border: 1px solid red;
    background-color: #f0f0f0;
}

/* Add to your CSS */
.feature-image {
    width: 100%;
    height: 300px; /* Set fixed height */
    object-fit: cover; /* Maintain aspect ratio */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    padding: 20px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* Add to existing CSS */
.feature-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.feature-badge i {
    margin-right: 0.5rem;
}

.feature-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 1.5rem;
}

.features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--background) 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.feature-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.feature-slide {
    min-height: 600px;
    gap: 4rem;
    padding: 2rem;
}

.feature-content {
    flex: 1;
    padding: 3rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.feature-demo {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-details {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.feature-details h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.carousel-dots {
    margin-top: 3rem;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Update the features section styling */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Add decorative elements */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Update feature carousel container */
.feature-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

/* Update feature slides */
.feature-slide {
    min-height: 600px;
    gap: 6rem;
    padding: 2rem;
    align-items: center;
}

.feature-content {
    flex: 1;
    padding: 2rem;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
}

/* Update feature demo area */
.feature-demo {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.feature-demo:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Update carousel navigation */
.carousel-btn {
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.carousel-dots {
    margin-top: 3rem;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    opacity: 1;
    background: var(--primary);
    border-radius: 6px;
}

/* Update feature slide and content container sizing */
.feature-slide {
    min-height: 650px; /* Increased height */
    display: flex;
    align-items: stretch; /* Change from center to stretch */
    gap: 4rem;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1400px;
}

.feature-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto; /* Allow natural height */
    overflow: visible; /* Prevent cutoff */
}

/* Adjust text elements spacing */
.feature-content h3 {
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
}

.feature-badge {
    margin-top: auto; /* Push to bottom */
    align-self: flex-start;
}

/* Adjust demo container */
.feature-demo {
    flex: 1;
    min-width: 45%;
    height: auto;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-slide {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-content,
    .feature-demo {
        width: 100%;
    }
}

/* Update carousel container */
.feature-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Update slides container */
.feature-slides {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Update individual slides */
.feature-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.feature-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Update content and demo sections */
.feature-content {
    flex: 1;
    max-width: 50%;
    padding: 2rem;
}

.feature-demo {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.feature-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-slides {
        height: auto;
        min-height: 700px;
    }

    .feature-slide {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .feature-content {
        max-width: 100%;
        padding: 1rem;
    }
}

.feature-demo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use 'contain' if you prefer the entire image visible */
    object-position: center;
    opacity: 0.3; /* Adjust as needed */
}

/* Adjust the feature-content styling */
.feature-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent white background */
    backdrop-filter: blur(5px);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    color: #333; /* Dark text for contrast */
}

/* Optional: Enhance heading visibility */
.feature-content h3 {
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

/* Optional: Adjust paragraph and list item colors */
.feature-content p,
.feature-content li {
    color: #333;
}

.feature-content {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: #fff; /* White text for contrast */
}

/* Adjust heading colors */
.feature-content h3 {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Adjust paragraph and list item colors */
.feature-content p,
.feature-content li {
    color: #f0f0f0;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-background .overlay {
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.trust-pills {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.cta-group {
    margin: 2rem 0;
}

.search-demo {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-icon {
    padding: 0 1rem;
    color: #666;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.social-proof {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.search-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-shortcuts {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
}

.shortcut-hint {
    color: rgba(255, 255, 255, 0.7);
}

.shortcut-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shortcut-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.search-btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0;
    transition: width 1.5s ease;
}

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

.testimonial-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    transition: transform 0.2s ease;
}

.testimonial-avatars img:hover {
    transform: translateY(-2px);
}

.avatar-more {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    color: white;
}

.search-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.search-input-group i {
    color: #64748b;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1.1rem;
    color: #1e293b;
    padding: 0.5rem 0;
}

.search-input:focus {
    outline: none;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #1a65c7;
    transform: translateY(-1px);
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tag-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Add these gradient text styles */
.hero h1.animate-text {
    background: linear-gradient(135deg, #4a90e2 0%, #67b26f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero .subtitle {
    background: linear-gradient(135deg, #ffffff 0%, #b8c6db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2 {
    background: linear-gradient(135deg, #4a90e2 0%, #67b26f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Update search button styling */
.search-button.compact {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a90e2 0%, #357ABD 100%);
    transition: all 0.3s ease;
}

.search-button.compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.search-button.compact span {
    display: none;
}

.search-button.compact i {
    margin: 0;
    font-size: 1.2rem;
}

/* Update search container spacing */
.search-input-group {
    padding: 0.75rem 1.25rem;
    margin-right: 0.5rem;
}

.logo {
    background: linear-gradient(135deg, #4a90e2 0%, #67b26f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-content h3 {
    background: linear-gradient(135deg, #4a90e2 0%, #67b26f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.price-card h3 {
    background: linear-gradient(135deg, #4a90e2 0%, #67b26f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Update search button styles in styles.css */
.search-button.compact {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a90e2 0%, #357ABD 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button.compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #357ABD 0%, #2868A9 100%);
}

.search-button.compact:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.2);
}

/* Add to styles.css */

/* Modern gradient background */
body {
    background: linear-gradient(135deg, #1a1c2e 0%, #2a3245 100%);
    color: #fff;
    min-height: 100vh;
}

/* Add subtle pattern overlay */
.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
}

/* Enhanced section styling */
section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    margin: 2rem auto;
    padding: 3rem 2rem;
}

/* Glowing accent elements */
.feature-badge, .pill, .price-card {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Improved card styling */
.price-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

.price-card.popular {
    background: linear-gradient(145deg, rgba(74, 144, 226, 0.15) 0%, rgba(74, 144, 226, 0.05) 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

/* Enhanced button styling */
.action-btn, .price-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357ABD 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.action-btn:hover, .price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Glowing text effects */
.hero h1.animate-text {
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

/* Enhanced feature slides */
.feature-slide {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Improved testimonial section */
.testimonial-preview {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Enhanced stats container */
.stats-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(8px);
}

/* Subtle hover animations */
.feature-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Dark mode optimized inputs */
input, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.5);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 226, 0.5);
    border-radius: 4px;
}

/* Update header styling */
.main-header {
    background: rgba(26, 28, 46, 0.95); /* Dark background matching body */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-link {
    color: rgba(255, 255, 255, 0.7);
}

.tab-link:hover {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.tab-link.active {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.15);
}

/* Update features section */
.features {
    background: linear-gradient(135deg, rgba(26, 28, 46, 0.95) 0%, rgba(42, 50, 69, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-carousel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.feature-slide {
    background: rgba(255, 255, 255, 0.02);
}

.feature-content {
    color: rgba(255, 255, 255, 0.9);
}

.feature-content p, 
.feature-content li {
    color: rgba(255, 255, 255, 0.7);
}

/* Update pricing cards */
.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card.popular {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.price-card h3,
.price-card .price {
    color: white;
}

.price-card ul li {
    color: rgba(255, 255, 255, 0.7);
}

/* Update carousel buttons */
.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.carousel-btn:hover {
    background: rgba(74, 144, 226, 0.3);
}

/* Update learning process section */
.learning-process {
    background: linear-gradient(135deg, rgba(26, 28, 46, 0.95) 0%, rgba(42, 50, 69, 0.95) 100%);
}

.step h3 {
    color: white;
}

/* Update demo section */
.demo-section {
    background: linear-gradient(135deg, rgba(26, 28, 46, 0.95) 0%, rgba(42, 50, 69, 0.95) 100%);
}

.chat-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header {
    background: rgba(74, 144, 226, 0.2);
}

/* Update trusted-by section */
.trusted-by {
    background: linear-gradient(135deg, rgba(26, 28, 46, 0.95) 0%, rgba(42, 50, 69, 0.95) 100%);
}

.partner-logo {
    filter: brightness(0) invert(1) opacity(0.6);
}

.partner-logo:hover {
    filter: brightness(0) invert(1) opacity(1);
}

/* Section headers */
section h2 {
    color: white;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Root variables with enhanced colors */
:root {
    --gradient-primary: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #7579ff 100%);
    --gradient-accent: linear-gradient(135deg, #7579ff 0%, #b721ff 100%);
    --text-glow: 0 0 15px rgba(0, 198, 255, 0.5);
    --neon-border: 0 0 10px rgba(0, 198, 255, 0.3);
  }
  
  /* Enhanced body gradient */
  body {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  }
  
  /* Enhanced heading styles */
  h1.animate-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 1.5rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #99a9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
  }
  
  /* Enhanced section headers */
  section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
  }
  
  /* Feature content enhancement */
  .feature-content h3 {
    font-size: 2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
  }
  
  .feature-content p, 
  .feature-list li {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Enhanced feature badges */
  .feature-badge {
    background: var(--gradient-accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--neon-border);
  }
  
  /* Enhanced pills */
  .pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--neon-border);
  }
  
  /* Price cards enhancement */
  .price-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neon-border);
  }
  
  .price-card.popular {
    background: linear-gradient(145deg, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.1) 100%);
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
  }
  
  .price-card h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
  }
  
  /* Enhanced buttons */
  .search-button.compact,
  .action-btn,
  .price-btn {
    background: var(--gradient-primary);
    box-shadow: var(--neon-border);
    transition: all 0.3s ease;
  }
  
  .search-button.compact:hover,
  .action-btn:hover,
  .price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
  }
  
  /* Enhanced stats */
  .stat-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neon-border);
  }
  
  .counter {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    font-size: 2.5rem;
    font-weight: 700;
  }

  
/* Update root variables for a dark blue theme */
:root {
    --bg-dark: #1a1f2c;        /* Dark blue base */
    --bg-dark-lighter: #232b3d; /* Lighter dark blue */
    --header-bg: rgba(26, 31, 44, 0.95); /* Matching header */
    --gradient-dark: linear-gradient(135deg, #1a1f2c 0%, #232b3d 100%);
    --section-border: rgba(255, 255, 255, 0.07);
}

/* Update body background */
body {
    background: var(--bg-dark);
    color: #fff;
    min-height: 100vh;
}

/* Update main header */
.main-header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--section-border);
}

/* Update section backgrounds */
section {
    background: var(--bg-dark-lighter);
    backdrop-filter: blur(10px);
    border: 1px solid var(--section-border);
}

/* Update features section */
.features {
    background: var(--gradient-dark);
    border: 1px solid var(--section-border);
}

/* Update learning process section */
.learning-process {
    background: var(--gradient-dark);
}

/* Update demo section */
.demo-section {
    background: var(--gradient-dark);
}

/* Update trusted-by section */
.trusted-by {
    background: var(--gradient-dark);
}

/* Update achievement-proof section */
.achievement-proof {
    background: var(--gradient-dark);
}


.dynamic-text {
    display: inline-block;
    opacity: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

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

.static-text {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #99a9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 1.5rem auto;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Update hero animate-text styles */
.hero h1.animate-text {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 198, 255, 0.5),
                     0 0 30px rgba(0, 198, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 198, 255, 0.7),
                     0 0 50px rgba(0, 198, 255, 0.5);
    }
}

/* Make subtitle more subtle to emphasize main text */
.hero .subtitle {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #99a9ff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

/* Enhanced Search Bar Styles */
.search-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    transform: translateY(-2px);
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.search-btn i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search wrapper positioning */
.search-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Enhanced Search Container Styles */
.search-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0.5rem;
    background: linear-gradient(145deg, rgba(26, 31, 44, 0.7), rgba(42, 50, 69, 0.7));
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neon-border);
}

.search-container:focus-within {
    background: linear-gradient(145deg, rgba(26, 31, 44, 0.8), rgba(42, 50, 69, 0.8));
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    transform: translateY(-2px);
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neon-border);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.search-btn i {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.search-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Add to styles.css */
.footer {
    background: var(--bg-dark-lighter);
    border-top: 1px solid var(--section-border);
    padding: 4rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.footer-description {
    margin: 1rem 0 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* Add to styles.css */
.stats-section {
    padding: 4rem 0;
    text-align: center;
}

.rotating-topics {
    position: relative;
    height: 24px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.topic-text {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    animation: topicFade 18s linear infinite;
    opacity: 0;
}

.topic-text:nth-child(1) { animation-delay: 0s; }
.topic-text:nth-child(2) { animation-delay: 3s; }
.topic-text:nth-child(3) { animation-delay: 6s; }
.topic-text:nth-child(4) { animation-delay: 9s; }
.topic-text:nth-child(5) { animation-delay: 12s; }
.topic-text:nth-child(6) { animation-delay: 15s; }

@keyframes topicFade {
    0%, 15% { opacity: 0; transform: translateY(10px); }
    20%, 30% { opacity: 1; transform: translateY(0); }
    35%, 100% { opacity: 0; transform: translateY(-10px); }
}

.success-rate {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    color: var(--primary);
    font-weight: 700;
}

.percentage {
    font-size: 2.5rem;
}

.percent {
    font-size: 1.5rem;
}

.testimonials-container {
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating {
    color: #ffd700;
}

.testimonial-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.testimonial-source {
    color: rgba(255, 255, 255, 0.7);
}
/* Update stats styling */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.counter {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.counter.infinity {
    font-size: 4rem;
}

.percent {
    font-size: 2rem;
    margin-left: 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Update stats styling */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    height: 80px;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.counter.infinity {
    font-size: 4.5rem;
}

.percent {
    font-size: 2rem;
    margin-left: 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Update rotating topics styles */
.rotating-topics {
    position: relative;
    height: 24px;
    overflow: hidden;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.topic-text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(10px);
    color: rgba(255, 255, 255, 0.9);  /* Increased opacity */
    font-size: 0.9rem;
    font-weight: 500;  /* Added weight */
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);  /* Added glow */
    animation: topicRotate 15s linear infinite;  /* Reduced total duration */
}


.topic-text:nth-child(1) { animation-delay: 0s; }
.topic-text:nth-child(2) { animation-delay: 2.5s; }
.topic-text:nth-child(3) { animation-delay: 5s; }
.topic-text:nth-child(4) { animation-delay: 7.5s; }
.topic-text:nth-child(5) { animation-delay: 10s; }
.topic-text:nth-child(6) { animation-delay: 12.5s; }

@keyframes topicRotate {
    0%, 2% {
        opacity: 0;
        transform: translateY(10px);
    }
    5%, 15% {
        opacity: 1;
        transform: translateY(0);
    }
    18%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
/* Dark Theme Search Bar */
.search-container {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0.6rem;
    background: rgba(26, 31, 44, 0.4);
    border-radius: 35px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.05);
    transition: all 0.4s ease;
}

.search-container:focus-within {
    background: rgba(26, 31, 44, 0.6);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 198, 255, 0.15);
    transform: translateY(-3px);
}

.search-input-group {
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
}

.search-input-group i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
}

.search-input {
    width: 100%;
    padding: 1.2rem 0;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    min-width: 54px;
    height: 54px;
    border: none;
    border-radius: 27px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    margin-right: 0.5rem;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.4);
}

.search-btn i {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.search-tags {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Updated Search Container Width */
.search-container {
    width: 100%;
    max-width: 1000px; /* Increased from 900px */
    margin: 3rem auto;
    padding: 0.8rem 1.2rem; /* Increased horizontal padding */
}

.search-input-group {
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 1.5rem; /* Increased gap between icon and input */
}

.search-input {
    width: 100%;
    padding: 1.2rem 1rem; /* Added horizontal padding */
}

.search-wrapper {
    padding: 0.5rem;
    gap: 1.5rem; /* Increased gap between input and button */
}

.search-btn {
    margin-right: 0; /* Remove margin as we're using gap */
}

.search-tags {
    padding: 1.2rem 1.5rem;
    margin-top: 0.5rem;
}

/* Update tags container styles */
.tags-container {
    position: relative;
    height: 32px;
    overflow: hidden;
    width: 100%;
}

.rotating-tags {
    display: flex;
    gap: 1rem;
    animation: tagScroll 40s linear infinite;
    padding: 0 1rem;
}

.rotating-tags:hover {
    animation-play-state: paused;
}

@keyframes tagScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tag {
    white-space: nowrap;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

/* Add to styles.css */

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -60%); /* Move up and left */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center center;
    scale: 0.75;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Add to styles.css */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 2rem;
}

.video-modal video {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.video-modal-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

/* Update feature slide and image styling */
.feature-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the image */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.feature-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-demo {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire slide */
    border-radius: 0; /* Remove border radius if any */
    transform: translateY(-20px); /* Shift the image up by 20px */
    border: 2px solid #3182ce; /* Optional: Add blue border */
}

/* Add modal image styles */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-in; /* Show zoom cursor */
    transition: all 0.3s ease;
}

.modal-content.expanded {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    cursor: zoom-out;
}

/* Add to styles.css */
.modal {
    transition: opacity 0.3s ease;
}

.modal-content {
    transition: all 0.3s ease;
    cursor: zoom-in;
}

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

.modal-content.error {
    border: 2px solid #dc2626;
}
.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.path-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.path-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--accent-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.path-option:hover {
    transform: translateY(-2px);
}
/* Add to styles.css */
.step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.step-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.step-modal-content.loading {
    opacity: 0.5;
}

.step-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-modal.active {
    opacity: 1;
    display: flex;
}

.step-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.step-modal.active .step-modal-content {
    opacity: 1;
    transform: scale(1);
}

.step-modal-content.loading {
    opacity: 0.5;
}

/* Modal styles */
.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.step-modal.active {
    opacity: 1;
    display: flex;
}

.step-modal-content {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    filter: none;
}

.step-modal.active .step-modal-content {
    opacity: 1;
    transform: scale(1);
}

.step-modal-content.loading {
    opacity: 0.5;
}

.step-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.step-modal-close:hover {
    opacity: 1;
}

/* Update modal content for carousel */
.step-modal-content {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    filter: none;
}

/* Add carousel navigation */
.step-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
}

.step-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.step-modal-prev {
    left: 30px;
}

.step-modal-next {
    right: 30px;
}

.step-modal-nav i {
    color: white;
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.step-modal-nav:hover i {
    opacity: 1;
}

/* Step carousel specific styles */
.steps-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.steps-slides {
    position: relative;
    overflow: hidden;
}

.steps-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.steps-carousel .carousel-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.steps-carousel .carousel-btn.prev {
    left: -60px;
}

.steps-carousel .carousel-btn.next {
    right: -60px;
}

.step-slide {
    display: none;
    animation: stepFadeEffect 0.5s;
}

.step-slide.active {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

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

.step-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Add to styles.css */
.steps-container {
    position: relative;
    min-height: 500px;
}

.step {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}
/* Step Carousel Core Styles */
.steps-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.steps-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.step {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Step Content Styling */
.step-content {
    flex: 1;
    max-width: 50%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--neon-border);
}

.step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Path Options Styling */
.path-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.path-option {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.path-option:hover {
    transform: translateY(-3px);
    background: rgba(0, 198, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
}

.path-option i {
    font-size: 1.2rem;
    color: rgba(0, 198, 255, 0.8);
}

/* Step Demo/Image Styling */
.step-demo {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--neon-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
}

/* Navigation Controls */
.steps-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.steps-carousel .carousel-btn:hover {
    background: rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.steps-carousel .carousel-btn.prev { left: -25px; }
.steps-carousel .carousel-btn.next { right: -25px; }

/* Dots Navigation */
.step-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    width: 24px;
    background: var(--gradient-primary);
    box-shadow: var(--neon-border);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .steps-container {
        height: auto;
        min-height: 700px;
    }

    .step {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .step-content {
        max-width: 100%;
        padding: 1.5rem;
    }
}
/* Step Demo/Image Styling */
.step-demo {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.step-image {
    width: 100%;
    max-width: 800px; /* Increased from 500px */
    height: auto;
    max-height: 700px; /* Increased from 500px */
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--neon-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 198, 255, 0.3);
}

/* Adjust container height to accommodate larger image */
.steps-container {
    position: relative;
    height: 800px; /* Increased from 600px */
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .steps-container {
        height: auto;
        min-height: 900px; /* Increased from 700px */
    }

    .step-image {
        max-width: 100%;
        max-height: 500px;
    }
}

/* Update step layout */
.step {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Make image cover background */
.step-demo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Content overlay */
.step-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 2rem;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Step number styling */
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--neon-border);
}

/* Text styling */
.step-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Path options styling */
.path-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.path-option {
    background: rgba(0, 198, 255, 0.15);
    border: 1px solid rgba(0, 198, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.path-option:hover {
    transform: translateY(-3px);
    background: rgba(0, 198, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

.path-option i {
    font-size: 1.2rem;
    color: rgba(0, 198, 255, 0.9);
}

/* Container sizing */
.steps-container {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-content {
        margin: 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }

    .steps-container {
        height: 600px;
    }
}

/* Full container sizing */
.steps-container {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
}

/* Make image fill container */
.step-demo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Overlay content styling */
.step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
    backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-content {
        padding: 2rem;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }

    .steps-container {
        height: 600px;
    }
}
/* Container sizing */
.steps-container {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
}

/* Image container */
.step-demo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Change to 'contain' if you want to see the whole image */
    object-position: center;
    transform: scale(1.1); /* Slightly larger to prevent white edges */
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .step-image {
        object-position: center center;
    }
}

/* Add to styles.css */
.step-image {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    max-width: 100%;
    height: auto;
}

.path-option {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.path-option:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.step-image {
    opacity: 0;
    display: none;
    transition: all 0.4s ease;
    max-width: 100%;
    height: auto;
    transform: scale(0.95);
    object-fit: cover;
}

.step-image.show {
    opacity: 1;
    display: block;
    transform: scale(1.05);
}

.path-option {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.path-option:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.step-number {
    margin: 0 auto 1rem;
}

.step h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.step p {
    text-align: center;
    max-width: 80%;
    margin: 0 auto 1.5rem;
}

.path-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.path-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.step-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.steps-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
}

.step.active {
    opacity: 1;
    position: relative;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.step.active {
    opacity: 1;
    position: relative;
    left: auto;
    transform: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.step-modal.active {
    display: flex;
}

.step-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.step-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

/* List Styling in Steps */
.step-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-content li {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-content li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #f8f9ff;
}

.step-content li i {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-content li {
        padding: 0.6rem 1rem;
    }
    
    .step-content li i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-content li {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.2);
}

.step-content li i {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Update hero section spacing */
.hero {
    min-height: 100vh;
    padding: 120px 20px 60px; /* Increased top padding */
    display: flex;
    align-items: flex-start; /* Changed from center */
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Fix animate-text styling */
.hero h1.animate-text {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 2rem 0; /* Added margin */
    padding-top: 1rem; /* Added top padding */
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    position: relative;
    z-index: 2;
    line-height: 1.2;
    max-width: 800px;
}

/* Adjust hero content container */
.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero h1.animate-text {
        font-size: 3rem;
        margin: 1.5rem 0;
    }
}
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -65%) scale(0.65); /* Changed from -60% to -65% for both X and Y */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform-origin: center center;
    opacity: 0.3;
}

/* Add to styles.css */
.social-proof-section {
    padding: 6rem 2rem;
    background: var(--bg-dark-lighter);
    border-top: 1px solid var(--section-border);
}

.social-proof-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-proof-section h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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



/* Add to styles.css */
.social-proof-section {
    padding: 6rem 2rem;
    background: var(--bg-dark-lighter);
    border-top: 1px solid var(--section-border);
}

.social-proof-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-proof-section h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.social-proof-section .features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-proof-section .features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-proof-section .features-list li:hover {
    transform: translateY(-2px);
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.2);
}

.social-proof-section .features-list i {
    font-size: 1.2rem;
    color: #00c6ff;
    width: 24px;
    text-align: center;
}

.social-proof-section .stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    width: 100%;
    padding: 1rem;
}

.social-proof-section .testimonials-container {
    width: 100%;
    margin: 2rem 0;
    padding: 1rem;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add to styles.css */
.social-proof-section {
    padding: 6rem 2rem;
    background: var(--bg-dark-lighter);
    border-top: 1px solid var(--section-border);
}

.social-proof-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-proof-section h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.social-proof-section .possibilities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-proof-section .possibilities-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1); /* Adjusted background for better readability */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-proof-section .possibilities-list li:hover {
    transform: translateY(-2px);
    background: rgba(0, 198, 255, 0.2); /* Adjusted hover background */
    border-color: rgba(0, 198, 255, 0.3); /* Adjusted hover border color */
}

.social-proof-section .possibilities-list i {
    font-size: 1.2rem;
    color: #00c6ff;
    width: 24px;
    text-align: center;
}

.social-proof-section .stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    width: 100%;
    padding: 1rem;
}

.social-proof-section .testimonials-container {
    width: 100%;
    margin: 2rem 0;
    padding: 1rem;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Update section header styles */
.social-proof-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 2rem;
    text-align: center;
}

.social-proof-section .section-subtitle p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.social-proof-section .possibilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-proof-section .possibilities-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.social-proof-section .possibilities-list li:hover {
    transform: translateY(-3px);
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
}

.social-proof-section .possibilities-list i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-proof-section .section-subtitle p:last-child {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    font-style: italic;
}


.social-proof-section .possibilities-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #1a1f2c !important; /* Solid dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff !important; /* Force white text */
    font-weight: 500;
    text-shadow: none;
    letter-spacing: 0.01em;
    opacity: 1 !important; /* Force visibility */
}

.social-proof-section .possibilities-list li:hover {
    transform: translateY(-3px);
    background: #2a3245 !important; /* Solid darker blue on hover */
    border-color: #00c6ff;
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
}

.social-proof-section .possibilities-list i {
    font-size: 1.4rem;
    color: #00c6ff !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    opacity: 1 !important;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-header .possibilities-list li {
    background: rgba(26, 31, 44, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    -webkit-text-fill-color: initial;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.section-header .possibilities-list li:hover {
    transform: translateY(-3px);
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
}

.section-header .possibilities-list i {
    color: #00c6ff !important;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 1;
}
/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 120px auto 4rem;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 3rem;
    text-align: center;
}

/* Section Styling */
.about-content section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about-content section:hover {
    transform: translateY(-5px);
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
}

.about-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* List Styling */
.about-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-content li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.about-content li:hover {
    transform: translateY(-2px);
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.1);
}

.about-content li strong {
    color: #00c6ff;
    min-width: 180px;
}

/* Footer Styling */
footer {
    background: var(--bg-dark-lighter);
    border-top: 1px solid var(--section-border);
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer a {
    color: #00c6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0072ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        margin: 100px auto 3rem;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }

    .about-content section {
        padding: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-content li strong {
        min-width: auto;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    /* Header/Navigation */
    .main-header {
      padding: 1rem;
    }
  
    .nav-container {
      flex-direction: column;
      gap: 1rem;
    }
  
    .tab-nav {
      width: 100%;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      justify-content: flex-start;
      gap: 0.5rem;
    }
  
    .tab-link {
      white-space: nowrap;
      padding: 0.5rem 0.75rem;
      font-size: 0.9rem;
    }
  
    /* Hero Section */
    .hero {
      padding: 80px 1rem 2rem;
      min-height: auto;
    }
  
    .hero h1.animate-text {
      font-size: 2.5rem;
      margin: 1rem 0;
    }
  
    .hero .subtitle {
      font-size: 1.1rem;
    }
  
    /* Search Container */
    .search-container {
      padding: 0.5rem;
    }
  
    .search-input-group {
      padding: 0.5rem 1rem;
    }
  
    .search-input {
      font-size: 1rem;
    }
  
    .search-tags {
      padding: 0.75rem;
    }
  
    .tag {
      font-size: 0.8rem;
      padding: 0.35rem 0.75rem;
    }
  
    /* Trust Pills */
    .trust-pills {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .pill {
      font-size: 0.8rem;
      padding: 0.35rem 0.75rem;
    }
  
    /* Stats Container */
    .stats-container {
      flex-direction: column;
      gap: 2rem;
    }
  
    .stat-item {
      width: 100%;
    }
  
    /* Features Section */
    .feature-slide {
      flex-direction: column;
      padding: 1rem;
      gap: 2rem;
    }
  
    .feature-content {
      max-width: 100%;
      padding: 1rem;
    }
  
    .feature-demo {
      width: 100%;
      height: 250px;
    }
  
    /* Quick Actions */
    .quick-actions {
      flex-direction: column;
      width: 100%;
    }
  
    .action-btn {
      width: 100%;
      justify-content: center;
    }
  
    /* Learning Process */
    .step {
      flex-direction: column;
      padding: 1.5rem;
    }
  
    .step-content {
      max-width: 100%;
    }
  
    .step-demo {
      width: 100%;
    }
  
    /* Pricing Section */
    .pricing-container {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
  
    .price-card.popular {
      transform: none;
    }
  
    /* Footer */
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }
  }
  


  