/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0343cc;
    --secondary-color: #0343cc;
    --accent-color: #e74c3c;
    --text-color: #222;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --success-color: #011107ff;
    --section-padding: 80px 0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: var(--primary-color );
    color: white;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--primary-color );
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(253, 251, 253);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--secondary-color);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    z-index: 1001;
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.section-header h2{
    color: white;
}
.section-header p{
    color: white;
}
.about {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text .buttons a {
    padding: 12px 25px;
    color: #fff;
    background-color: #14144d;
    border: 2px solid #12121f;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.about-content {
    margin-left: 10%;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image video {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 3.0);
}

/* Courses Section */
.courses {
    width: 80%;
    max-width: 1400px;
    background: #14144d;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto;
}

.course-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.course-card p {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.course-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 500;
}

/* Features Section */
.section-header1 {
    text-align: center;
    margin-bottom: 50px;
}

.features {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f7f7fc;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Certificate Section - FIX FOR MOBILE */
.democert {
    text-align: center;
    margin: 20px 0;
}

.democert img {
    height: auto;
    max-width: 100%; /* Changed from fixed width to responsive */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* demo certificate */
.certificate-section {
    background: linear-gradient(135deg, #14144d, #14144d);
    padding: 60px 20px;
    color: #fff;
}

.certificate-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.certificate-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.certificate-container p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.certificate-box {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.certificate-box img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 10px;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
    .certificate-container h2 {
        font-size: 24px;
    }

    .certificate-container p {
        font-size: 14px;
    }

    .certificate-box img {
        max-width: 100%;
    }
}

/* Mentors Section */
/* ===== MENTORS SECTION ===== */
.mentors-section {
    background: #14144d;
    padding: 80px 20px;
    text-align: center;
  }
  
  .mentors-wrapper {
    max-width: 1200px;
    margin: auto;
  }
  
  .mentors-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .mentors-header p {
    color: #d1d5db;
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  /* ===== CEO CARD ===== */
/* CEO container - perfect center */
.ceo-container {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center if container has height */
    margin: 0 auto 30px;     /* center and add bottom spacing */
    padding: 0 20px;         /* optional: prevents touching edges on mobile */
}


/* CEO card */
.ceo-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* optional: nicer look */
    margin: 0 auto; /* ensures centering in older browsers */
}

  
  /* CEO Image – responsive scaling */
 /* ===== CEO Container - Perfect Center ===== */
.ceo-container {
    display: flex;                 /* enables flexbox */
    justify-content: center;       /* horizontal center */
    align-items: center;           /* vertical center if needed */
    margin: 0 auto 40px;           /* bottom spacing */
    padding: 0 20px;               /* prevent touching edges on mobile */
    width: 100%;                   /* full width container */
}

/* ===== CEO Card Styling ===== */
.ceo-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    max-width: 320px;              /* card width */
    width: 100%;                   /* responsive */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CEO Image Styling */
.ceo-card img {
    width: 180px;                  /* default image size */
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* CEO Name */
.ceo-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #000;
}

/* CEO Role */
.ceo-card span {
    font-size: 14px;
    color: #6b7280;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .ceo-card img {
        width: 230px;              /* bigger image on large screens */
    }
}

@media (max-width: 1023px) {
    .ceo-card img {
        width: 190px;              /* tablet */
    }
}

@media (max-width: 600px) {
    .ceo-card {
        max-width: 280px;
        padding: 20px;
    }

    .ceo-card img {
        width: 150px;              /* mobile safe size */
    }
}

  
  /* ===== MENTOR CARD ===== */
  .mentor-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  }
  
  .mentor-card img {
    width: 2000px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .mentor-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
  }
  
  .mentor-card span {
    font-size: 14px;
    color: #6b7280;
  }
  
  /* ===== BUTTON ===== */
  .mentor-button-container {
    margin: 30px 0 50px;
  }
  
  .mentor-toggle-btn {
    background: #ffffff;
    color: #14144d;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mentor-toggle-btn:hover {
    background: transparent;
    color: #ffffff;
  }
  
  /* ===== EXPERT MENTORS ===== */
  .other-mentors.hidden {
    display: none;
  }
  
  .mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .mentor-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .mentors-header h2 {
      font-size: 26px;
    }
  
    .mentor-grid {
      grid-template-columns: 1fr;
    }
  
    .mentor-card img {
      width: 130px;
    }

    .mentor-card{
        margin-left: 20px;
        margin-right: 20px;
      }
  }
  
 

/* ===== Trusted Partners Section ===== */
.partners-section {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.partners-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

/* Slider Wrapper */
.logo-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

/* Track */
.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 60px;
}

/* Logos */
.logo-track img {
    height: 50px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.05);
}

/* Animations */
.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

/* Keyframes */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: #14144d;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 350px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
    color: #f1f1f1;
    background-image: url("img/back.jpeg");
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #f7f4f4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    margin-bottom: 5px;
}

.author-info p {
    color: #fdfcfc;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-form {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 370px;
    margin: 0 auto;
}

.contact-form img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 90%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-text p,
.contact-text a {
    color: #666;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-courses h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-courses h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-courses ul {
    list-style: none;
}

.footer-links ul li,
.footer-courses ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-courses ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-courses ul li a:hover {
    color: var(--primary-color);
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-courses h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* MOBILE: 2 COURSES SIDE BY SIDE */
    .courses {
        width: 95%;
        padding: 1rem;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
        gap: 16px;
    }

    .course-card {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        aspect-ratio: unset;
    }

    .course-card img {
        height: 140px;
        border-radius: 10px;
        object-fit: contain;   /* SHOW FULL IMAGE */
        background: #000;      /* optional: avoids white gaps */
        padding: 8px;
    }

    .course-card h2 {
        font-size: 1rem;
        text-align: center;
    }

    .course-card .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    /* Contact form responsive for mobile */
    .contact-form {
        max-width: 100%;
        padding: 15px;
    }
    
    .contact-form img {
        max-height: 300px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
  
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    /* keep features single */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
    
    /* Even smaller contact form for very small screens */
    .contact-form {
        padding: 10px;
    }
    
    .contact-form img {
        max-height: 250px;
    }
 
}

.testimonial-author img{
    width: 50px;
    height: auto;
}

.logo   {
    display: flex;
    align-items: center; /* vertically centers image & text */
    gap: 10px; /* space between image and heading */
}

.logo img {
    width: 50px; /* adjust size */
}

.btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn {
    text-decoration: none;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dark-btn {
    background: linear-gradient(180deg, #2f3a46, #1f2933);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Hover Effect */
.dark-btn:hover {
    background: linear-gradient(180deg, #3b4a5a, #263340);
    transform: translateY(-2px);
}

/* FIX: Center Course Details Button on Mobile */
@media (max-width: 768px) {
    .course-card {
        display: flex;
        flex-direction: column;
        align-items: center;   /* centers all children */
    }

    .course-card .course-btn,
    .course-card .btn {
        display: block;
        margin: auto;          /* PERFECT CENTER */
        text-align: center;
        width: 80%;            /* optional: looks cleaner */
    }
}
.course-btn,
.course-btn:link,
.course-btn:visited {
    display: inline-block;
    margin-top: 12px;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff !important;
    background-color: #161E54 !important;

    padding: 8px 18px;
    border-radius: 10px;

    text-decoration: none;
    text-align: center;
    line-height: 1.4;

    border: none;
    outline: none;

    -webkit-appearance: none;
    appearance: none;

    -webkit-tap-highlight-color: transparent;
}
.course-btn:hover,
.course-btn:active {
    background-color: #161E54 !important;
    color: #ffffff !important;
}
/* @media (max-width: 768px) {
    .course-btn,
    .course-btn:visited {
        background-color: #161E54 !important;
        color: #ffffff !important;
        font-size: 14px;
        padding: 9px 16px;
        border-radius: 12px;
    }
} */
/* ===============================
   FORCE COURSE BUTTON COLOR FIX
   (Mobile + Desktop)
================================ */

.course-card a.course-btn,
.course-card a.course-btn:link,
.course-card a.course-btn:visited,
.course-card a.course-btn:hover,
.course-card a.course-btn:active,
.course-card a.course-btn:focus {
    background-color: #161E54 !important;
    color: #ffffff !important;

    text-decoration: none !important;

    -webkit-appearance: none !important;
    appearance: none !important;

    -webkit-tap-highlight-color: transparent !important;
}

/* Extra force for mobile only */
@media (max-width: 768px) {
    .course-card a.course-btn {
        background-color: #161E54 !important;
        color: #ffffff !important;
    }
}

/* ===== MOBILE NAVBAR FIX ===== */
@media (max-width: 768px) {

    .mobile-menu-btn {
        display: block;
        font-size: 26px;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        display: none;
        z-index: 1000;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .nav-links li a {
        color: #fff;
        font-size: 18px;
    }

    /* THIS IS THE KEY */
    .nav-links.active {
        display: flex;
    }
}

/* ===== FORCE EXPERT MENTORS TEXT VISIBILITY (ALL DEVICES) ===== */
/* .mentors-section .other-mentors-container .section-header1 h1 {
    color: #ffffff !important;
}

.mentors-section .other-mentors-container .section-header1 p {
    color: #e5e7eb !important; /* soft white, readable everywhere */
/* } */ 
