/* Base Styles */
:root {
    --primary-color: #006cb5;
    --secondary-color: #fcc300;
    --accent-color: #00a0e9;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient: linear-gradient(135deg, #f59b0a 0%, #fdae2e 100%);
    --yellow-gradient: linear-gradient(135deg, #fcc300 0%, #ffde59 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #f5f7ff;
    overflow-x: hidden;
    padding-bottom: 80px;
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 108, 181, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 20%;
}

/* Navigation */
.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

 /* Update existing mobile menu button styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
    background: none;
    border: none;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}


/* Update existing nav-links for mobile */
.nav-links {
  display: none
}

.nav-links li {
    margin: 0 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 10px 0;
}

.nav-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Login button style */
.login-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 2px solid #333;
}

.login-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Sign Up button style */
.signup-btn {
    background-color: #ffeb00;
    border: 2px solid #ffeb00;
}

.signup-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}
    

/* Mobile responsive styles */
@media (max-width: 768px) {
    /* Default state for nav-links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Initially off-screen */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: right 0.3s ease; /* Smooth transition to slide in */
    }

    /* When 'active' class is added, move the nav-links to the screen */
    .nav-links.active {
        right: 0;
    }

    /* Overlay state (hidden by default) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none; /* Hidden by default */
        z-index: 1000;
        transition: opacity 0.3s ease;
    }

    /* Overlay visible when 'active' class is added */
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-login, .btn-signup {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.btn-login:hover {
    background: rgba(0, 108, 181, 0.1);
}

.btn-signup {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 108, 181, 0.3);
}

 
/* Add these styles to your existing CSS file */

/* Image Slider Section */
.image-slider {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 1rem auto 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slider {
        height: 400px;
    }
    
    .slide-caption h3 {
        font-size: 1.5rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 300px;
    }
    
    .slide-caption {
        padding: 1rem;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
    
    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}
/* Hero Section - Mobile Optimized */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.yellow-text {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 108, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 108, 181, 0.4);
}

.btn-yellow {
    background: var(--yellow-gradient);
    color: #333;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(252, 195, 0, 0.3);
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 195, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: -20px;
    left: -20px;
}

.card-2 {
    bottom: 20px;
    right: -20px;
}

/* Mobile Hero Layout */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        order: 1;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 0;
        order: 2;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 108, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Courses Section */
.courses {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.courses-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.courses-carousel::-webkit-scrollbar {
    display: none;
}

.course-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 300px;
    transition: transform 0.3s;
    position: relative;
    flex: 0 0 auto; /* Important for horizontal scroll */
}

/* Desktop View */
@media screen and (min-width: 768px) {
    .courses-carousel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        overflow: visible; /* Remove horizontal scroll */
        gap: 2rem;
        padding-bottom: 0;
    }

    .course-card {
        min-width: auto; /* Allow responsive grid to control width */
        flex: 1 1 auto;
    }
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--yellow-gradient);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.course-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.course-meta i {
    color: #ffc107;
    margin-right: 0.3rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.course-price span {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.btn-enroll {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 108, 181, 0.3);
}

.btn-view-all {
    display: block;
    margin: 3rem auto 0;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: rgba(0, 108, 181, 0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    min-width: 350px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 5rem;
    text-align: center;
    margin: 0 5%;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

 
  /* Footer */
  .footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top:5rem;
}

.centered-footer {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-contact p,
.footer-address p,
.footer-credit p,
.footer-bottom p {
    margin: 5px 0;
}
 
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00aced;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-credit {
    font-size: 13px;
    color: #888;
}

 .footer-contact a {
    color: inherit !important;
    text-decoration: none !important;
}

.footer-contact a:hover {
    color: inherit !important;
    text-decoration: underline;
}
 
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
}

/* Translate btn */
   .btntns{
      color:#212529 !important; 
      padding: 5px 10px !important;
      font-size: 12px !important;
      border: 0.5px solid #212529 !important;
      border-radius: 5px;
      
   }  

/* Overlay styles */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

/* Popup content */
.popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.registration-form button {
    width: 100%;
    padding: 12px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}


/* Fixed Action Buttons (like Tutopia) */
.fixed-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
}

.action-btn:hover {
    transform: translateY(-5px);
}

.action-btn.whatsapp {
    background: #25D366;
}

.action-btn.phone {
    background: var(--primary-color);
}

.action-btn.cart {
    background: var(--secondary-color);
    color: #333;
}

.action-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    color: var(--dark-color);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.action-btn:hover .action-tooltip {
    opacity: 1;
}
 

/* Hide on mobile */
@media screen and (max-width: 767px) {
    .fixed-actions {
        display: none;
    }
}

 .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100%;
            background: #fff;
            z-index: 1001;
            padding: 1.5rem;
            transition: right 0.3s ease;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .mobile-close-btn {
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin-top: 2rem;
        }

        .mobile-nav-links li {
            margin: 1rem 0;
        }

        .mobile-nav-links a,
        .mobile-nav-links button {
            text-decoration: none;
            font-size: 1.2rem;
            color: #333;
            cursor: pointer;
             width: 100%;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
     .mobile-menu-btn {
        display: block;
    }
 
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }

    /* Mobile-specific hero layout */
    .hero {
        display: block;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        margin-bottom: 2rem;
        padding-right: 0;
    }

    .hero-image {
        margin-top: 2rem;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .floating-card {
        display: none; /* Hide floating cards on mobile */
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-yellow {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }

    /* Adjust fixed buttons for very small screens */
    .fixed-actions {
        bottom: 10px;
        right: 10px;
    }

    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
a {
  text-decoration: none;
}

a i.fab {
  text-decoration: none;
}

a.underline {
  text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 /* Show on mobile only */
.fixed-footer-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-btn i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.call-btn {
    background: var(--primary-color);
}

.whatsapp-btn {
    background: #25D366;
}

.enroll-btn {
    background: var(--secondary-color);
    color: #333;
}

/* Hide on desktop */
@media screen and (min-width: 768px) {
    .fixed-footer-buttons {
        display: none;
    }
}

