/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* ===== LANGUAGE BAR ===== */
.language-bar {
    background-color: #050505;
    padding: 6px 0;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.language-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-left {
    display: flex;
    gap: 1.5rem;
}

.lang-left span {
    color: #888;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-left span a {
    color: #888;
    transition: color 0.3s;
}

.lang-left span a:hover {
    color: #c3a35d;
}

.lang-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c3a35d;
}

.lang-right i {
    font-size: 1rem;
}

#languageSelector {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.82rem;
    cursor: pointer;
    outline: none;
}

#languageSelector:focus {
    border-color: #c3a35d;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO WITH IMAGE ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo-img {
    height: 75px;
    width: auto;
    /* height: 45px; */
    object-fit: contain;
    border-radius: 5px;
}

.logo span {
    line-height: 1.2;
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c3a35d;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #c3a35d, #d2981c);
    border-radius: 2px;
}

/* ===== ENROLL NOW BUTTON (replaces phone button) ===== */
.btn-enroll {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    color: #ffffff !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-enroll::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px; /* header + marquee adjust */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 30px;
        transition: 0.3s ease;
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }
}

/* ===== STICKY MARQUEE (SINGLE LINE - EN + HI) ===== */
.sticky-marquee {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 1040;
    background: linear-gradient(90deg, #111, #1a1a1a, #111);
    padding: 8px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #333;
}

.sticky-marquee .container {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 60s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    padding: 0 60px;
    font-size: 0.9rem;
    color: #c0c0c0;
}

/* Animation */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NORMAL MARQUEES ===== */
.marquee-container {
    background: #0d0d0d;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.marquee-container .container {
    overflow: hidden;
}

/* English */
.marquee-en {
    color: #c3a35d;
}

/* Hindi */
.marquee-hi {
    color: #00ff88;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .sticky-marquee {
        top: 25px;
        padding: 6px 0;
    }

    .marquee-track span {
        font-size: 0.75rem;
        padding: 0 30px;
    }
}


/* ===== CONTENT SPACING (below fixed elements) ===== */
.hero {
    padding-top: 100px;
    padding-bottom: 80px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.7)),
        url('wall6.jpg');
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}
.hero .container {
    position: relative;
    z-index: 2;
}

.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding-top: 170px;
    padding-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.page-header > .container > p {
    font-size: 1.1rem;
    color: #bbbbbb;
}

/* ===== HERO ===== */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500 0%, #ff6b00 100%);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 15px;
        text-align: center;
    }

    .page-header .container {
        padding: 0 10px;
    }

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .page-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.4rem;
    }

    .page-header p {
        font-size: 0.85rem;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero > .container > .hero-content > p {
    font-size: 1.15rem;
    color: #bbbbbb;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {

  .hero .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }

  .hero-content {
    width: 100% !important;
  }

  .hero-content img {
    width: 200px !important;
    margin-bottom: 10px !important;
  }

  .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100% !important;
    text-align: center !important;
  }

  .webinar-banner {
    font-size: 13px !important;
    padding: 10px !important;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .hero-stats .stat {
    text-align: left !important;
  }

  .hero-stats h3 {
    font-size: 20px !important;
  }

  .hero-stats p {
    font-size: 13px !important;
  }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border: 2px solid #c3a35d;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #c3a35d;
    color: #000000;
    transform: translateY(-3px);
}

.webinar-banner {
    background-color: #222222;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
    border-left: 4px solid #ffa500;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: #c3a35d;
}

.stat p {
    color: #bbbbbb;
    font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.why-choose {
    padding: 25px 0;
    background-color: #0a0a0a;
}

.why-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.why-intro p {
    color: #bbbbbb;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: #c3a35d;
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.feature-card .icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card .icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #bbbbbb;
    font-size: 0.95rem;
}

/* ===== WEBINAR ===== */
.webinar-section {
    padding: 80px 0;
    background-color: #111111;
}

.webinar-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.webinar-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.webinar-text > p {
    color: #bbbbbb;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.webinar-text ul {
    margin-bottom: 2rem;
}

.webinar-text ul li {
    padding: 0.6rem 0;
    color: #bbbbbb;
    font-size: 1rem;
}

.webinar-text ul li i {
    color: #c3a35d;
    margin-right: 0.8rem;
}

.webinar-box {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ffa500;
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.15);
}

.webinar-box > i {
    font-size: 3.5rem;
    color: #ffa500;
    margin-bottom: 1rem;
    display: block;
}

.webinar-box h3 {
    font-size: 1.8rem;
    color: #c3a35d;
    margin-bottom: 0.5rem;
}

.webinar-box .time {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0.8rem 0;
}

.webinar-box > p {
    color: #bbbbbb;
}

.webinar-box .seats {
    color: #ffa500;
    font-weight: 600;
    margin-top: 0.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== COURSES ===== */
/* ============================================
   COURSES DETAIL PAGE — PREMIUM DESIGN
   ============================================ */

/* Discount Strip */
.course-discount-strip {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #000000, #000000);
}

.course-discount-strip .discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===== COURSE DETAIL SECTION ===== */
.course-detail-section {
    padding: 3rem 0;
    background: #000000;
}

.course-detail-section.cd-alt {
    background: #000000;
}

@media (max-width: 768px) {
    .course-detail-section {
        padding: 30px 15px;
    }

    .course-detail-card {
        padding: 20px 15px;
    }

    /* Header */
    .cd-header {
        flex-direction: column;
        gap: 15px;
    }

    .cd-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cd-icon {
        font-size: 1.5rem;
    }

    .cd-header-left h2 {
        font-size: 1.4rem;
    }

    .cd-badge {
        font-size: 0.75rem;
    }

    .cd-header-right {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cd-meta-item {
        font-size: 0.85rem;
    }

    .cd-meta-item strong {
        font-size: 0.95rem;
    }

    /* Description */
    .cd-description p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    /* Modules */
    .cd-modules-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .cd-modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cd-module {
        padding: 15px;
    }

    .cd-module-num {
        font-size: 1.2rem;
    }

    .cd-module h4 {
        font-size: 0.95rem;
    }

    .cd-module ul li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    /* CTA */
    .cd-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cd-cta .btn-primary,
    .cd-cta .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cd-header-left h2 {
        font-size: 1.2rem;
    }

    .cd-modules-grid {
        grid-template-columns: 1fr;
    }

    .cd-module h4 {
        font-size: 0.88rem;
    }

    .cd-meta-item strong {
        font-size: 0.85rem;
    }
}

/* ===== COURSE DETAIL CARD ===== */
.course-detail-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8ecf1;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
/* ===== STATS BOX ===== */
.stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* ===== EACH ITEM ===== */
.stat-item {
    background: #111;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */
.stat-item:hover {
    transform: translateY(-5px);
    background: #151515;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* NUMBER */
.stat-item h3 {
    font-size: 32px;
    color: #0ef;
    margin-bottom: 8px;
}

/* TEXT */
.stat-item p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stat-item h3 {
        font-size: 26px;
    }

    .stat-item {
        padding: 20px 10px;
    }
}

.course-detail-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cd-alt .course-detail-card {
    border-color: #dde3ea;
}

/* Membership special card */
.cd-membership {
    border: 2px solid rgba(0, 200, 83, 0.2);
    background: linear-gradient(135deg, #f0fff4, #fff);
}

/* ===== COURSE HEADER ===== */
.cd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #0a0a1a, #111128);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cd-header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cd-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffa500, #d2981c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.cd-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.cd-badge.foundation {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.cd-badge.advanced {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.cd-badge.weekend {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.cd-badge.job {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.cd-badge.community {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.cd-header-left h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.cd-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.cd-header-right {
    display: flex;
    gap: 1.5rem;
}

.cd-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
}

.cd-meta-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #d2981c;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cd-meta-item div {
    display: flex;
    flex-direction: column;
}

.cd-meta-item strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.cd-meta-item span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== COURSE DESCRIPTION ===== */
.cd-description {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid #f0f2f5;
}

.cd-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== MODULES ===== */
.cd-modules {
    padding: 2rem 2.5rem;
}

.cd-modules-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cd-modules-title i {
    color: #d2981c;
}

.cd-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.cd-module {
    background: #f8f9fc;
    border: 1px solid #eef1f6;
    border-radius: 14px;
    padding: 1.3rem;
    transition: all 0.3s ease;
}

.cd-module:hover {
    background: #f0f7ff;
    border-color: #d0e3ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cd-module-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.cd-module-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffa500, #d2981c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.cd-module-head h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.cd-module ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cd-module ul li {
    padding: 0.35rem 0;
    color: #555;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.cd-module ul li i {
    color: #d2981c;
    font-size: 0.7rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===== MEMBERSHIP BENEFIT CARDS ===== */
.membership-benefit .cd-module-num {
    background: linear-gradient(135deg, #00c853, #00bfa5);
    font-size: 1rem;
    border-radius: 12px;
}

.membership-benefit:hover {
    background: #edfff4;
    border-color: #b8f0d0;
}

/* ===== SPECIAL NOTE ===== */
.cd-special-note {
    margin: 0 2.5rem 1.5rem;
    padding: 1rem 1.3rem;
    background: rgba(33, 150, 243, 0.06);
    border: 1px solid rgba(33, 150, 243, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #1565c0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.cd-special-note i {
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.cd-special-note p {
    margin: 0;
}

.membership-note {
    background: rgba(0, 200, 83, 0.06);
    border-color: rgba(0, 200, 83, 0.2);
    color: #1b5e20;
}

.membership-note i {
    color: #00c853;
}

/* ===== CTA BAR ===== */
.cd-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem 2rem;
    flex-wrap: wrap;
}

/* ============================================
   COURSE COMPARISON TABLE
   ============================================ */
.course-compare-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a1a, #111128);
}

.course-compare-section .section-title {
    color: #fff;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.compare-table thead th {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    padding: 1rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgba(0, 200, 83, 0.2);
    white-space: nowrap;
}

.compare-table thead th:first-child {
    text-align: left;
    padding-left: 1.5rem;
    color: #fff;
}

.compare-table thead th small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

.compare-table tbody td {
    padding: 0.9rem 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table tbody td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    color: #fff;
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.compare-table .yes { color: #00c853; font-size: 1.1rem; }
.compare-table .no { color: rgba(255, 255, 255, 0.2); font-size: 1.1rem; }
.compare-table .partial { color: #ffc107; font-size: 1.1rem; }

@media (max-width: 768px) {
    .course-compare-section {
        padding: 30px 15px;
    }

    .course-compare-section .section-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: 600px;
        font-size: 0.82rem;
    }

    .compare-table thead th {
        padding: 10px 8px;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .compare-table thead th small {
        font-size: 0.7rem;
    }

    .compare-table tbody td {
        padding: 10px 8px;
        text-align: center;
    }

    .compare-table tbody td:first-child {
        text-align: left;
        white-space: nowrap;
    }

    .compare-table .yes,
    .compare-table .no,
    .compare-table .partial {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .course-compare-section .section-title {
        font-size: 1.3rem;
    }

    .compare-table {
        min-width: 520px;
        font-size: 0.75rem;
    }

    .compare-table thead th {
        font-size: 0.72rem;
        padding: 8px 6px;
    }

    .compare-table tbody td {
        padding: 8px 6px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cd-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cd-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .cd-header-left h2 {
        font-size: 1.3rem;
    }

    .cd-header-right {
        width: 100%;
    }

    .cd-description,
    .cd-modules,
    .cd-cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cd-modules-grid {
        grid-template-columns: 1fr;
    }

    .cd-special-note {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .cd-cta {
        flex-direction: column;
    }

    .cd-cta .btn-primary,
    .cd-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .course-detail-section {
        padding: 2rem 0;
    }

    .cd-header {
        padding: 1.2rem;
    }

    .cd-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .cd-header-left h2 {
        font-size: 1.15rem;
    }

    .cd-meta-item i {
        width: 34px;
        height: 34px;
    }

    .cd-module {
        padding: 1rem;
    }

    .cd-module-head h4 {
        font-size: 0.9rem;
    }

    .cd-modules-title {
        font-size: 1.1rem;
    }
}


/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background-color: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #c3a35d;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.rating {
    color: #ffa500;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    color: #bbbbbb;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .section-title {
    font-size: 22px !important;
    text-align: center !important;
  }

  .slider-wrapper {
    overflow: hidden !important;
  }

  .slider-track {
    display: flex !important;
    gap: 15px !important;
  }

  .testimonial-card {
    min-width: 85% !important;
    flex: 0 0 85% !important;
    padding: 15px !important;
  }

  .testimonial-card p {
    font-size: 14px !important;
  }

  .testimonial-author h4 {
    font-size: 14px !important;
  }

  .testimonial-author span {
    font-size: 12px !important;
  }

  .author-avatar {
    width: 35px !important;
    height: 35px !important;
    font-size: 12px !important;
  }

  .rating i {
    font-size: 12px !important;
  }

  /* VIDEO SECTION */
  .video-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 20px !important;
  }

  .video-section video {
    width: 100% !important;
    height: auto !important;
  }
}


/* SMALL MOBILE (extra tight screens) */
@media (max-width: 480px) {

  .testimonial-card {
    min-width: 90% !important;
    flex: 0 0 90% !important;
  }

  .section-title {
    font-size: 20px !important;
  }

}

/* ===== FAQ ===== */
.faq-section {
    padding: 30px 0;
    background-color: #0a0a0a;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #111111;
}

.faq-question h3 {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    flex: 1;
}

.faq-question i {
    color: #c3a35d;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question {
    background-color: #111111;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #bbbbbb;
    line-height: 1.7;
}

/* ===========================
   COURSES PREVIEW SECTION
   =========================== */

.courses-preview {
    padding: 80px 0;
    background: linear-gradient(188deg, #04040d 0%, #090912 50%, #080818 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.courses-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 150, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 200, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Animated grid lines in background */
.courses-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.courses-preview .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   SECTION TITLE
   =========================== */

.courses-preview .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.courses-preview .section-title span {
    display: inline-block;
}

.courses-preview .section-title .highlight {
    background: linear-gradient(135deg, #c6a253, #c79f49, #f9eb06);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-left: 10px;
    position: relative;
}

.courses-preview .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00c896, #00b4d8);
    border-radius: 2px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===========================
   DISCOUNT BANNER
   =========================== */

.discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.12), rgba(255, 107, 0, 0.12));
    border: 1px solid rgba(255, 183, 0, 0.3);
    border-radius: 16px;
    padding: 16px 32px;
    margin: 0 auto 50px auto;
    max-width: 700px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: bannerPulse 3s ease-in-out infinite;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 183, 0, 0.05) 45%,
        rgba(255, 183, 0, 0.05) 55%,
        transparent 60%
    );
    animation: bannerShine 4s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 183, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 183, 0, 0.2);
    }
}

@keyframes bannerShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.discount-banner i.fa-tags {
    font-size: 1.5rem;
    color: #ffb700;
    filter: drop-shadow(0 0 6px rgba(255, 183, 0, 0.4));
    animation: tagBounce 2s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes tagBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

.discount-banner span {
    font-size: 1rem;
    color: #f0e0c0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.discount-banner strong {
    color: #ffb700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.3);
}

/* ===========================
   COURSES GRID
   =========================== */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Second row with 2 cards - center them */
.courses-grid:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   COURSE CARD
   =========================== */

.course-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

/* Card glassmorphism inner glow */
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Card hover glow effect */
.course-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 200, 150, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 200, 150, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 200, 150, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.course-card:hover::after {
    opacity: 1;
}

/* ===========================
   FEATURED CARD (Special Styling)
   =========================== */

.course-card.featured {
    background: linear-gradient(145deg, rgba(0, 200, 150, 0.1), rgba(0, 150, 255, 0.05), rgba(255, 255, 255, 0.03));
    border-color: rgba(0, 200, 150, 0.2);
    box-shadow: 0 10px 40px rgba(0, 200, 150, 0.08);
}

.course-card.featured::before {
    background: linear-gradient(90deg, transparent, rgba(0, 200, 150, 0.3), transparent);
}

.course-card.featured::after {
    background: radial-gradient(circle at center, rgba(0, 200, 150, 0.1), transparent 60%);
}

.course-card.featured:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(0, 200, 150, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-12px) scale(1.02);
}

/* ===========================
   COURSE BADGE
   =========================== */

.course-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(0, 180, 216, 0.2));
    color: #d09a27;
    border: 1px solid rgba(255, 192, 5, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.course-card.featured .course-badge {
    background: linear-gradient(135deg, #ffb700, #ce9b2e);
    color: #0a0a1a;
    border: none;
    box-shadow: 0 4px 15px rgb(190 200 0 / 49%);
}

/* ===========================
   COURSE ICON
   =========================== */

.course-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.12), rgba(0, 180, 216, 0.08));
    border: 1px solid rgba(0, 200, 150, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.course-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.3), transparent, rgba(0, 180, 216, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.course-card:hover .course-icon-wrap::before {
    opacity: 1;
}

.course-icon-wrap i {
    font-size: 1.7rem;
    background: linear-gradient(135deg, #e3bd65, #eeaa12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
}

.course-card:hover .course-icon-wrap i {
    transform: scale(1.15) rotate(-5deg);
}

.course-card.featured .course-icon-wrap {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(0, 180, 216, 0.15));
    border-color: rgba(0, 200, 150, 0.25);
    box-shadow: 0 0 20px rgba(0, 200, 150, 0.1);
}

/* ===========================
   COURSE CARD TITLE (h3)
   =========================== */

.course-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.course-card:hover h3 {
    background: linear-gradient(135deg, #ffffff, #00c896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   COURSE LIST (ul)
   =========================== */

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex-grow: 1;
}

.course-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.course-card ul li:last-child {
    border-bottom: none;
}

.course-card:hover ul li {
    color: rgba(255, 255, 255, 0.85);
}

.course-card ul li i.fa-check {
    color: #00c896;
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 200, 150, 0.3));
}

.course-card ul li span {
    flex: 1;
}

/* ===========================
   COURSE META (Duration info)
   =========================== */

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    margin-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.course-meta span i {
    color: #00b4d8;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===========================
   COURSE FOOTER & BUTTON
   =========================== */

.course-footer {
    text-align: center;
    margin-top: auto;
}

.btn-course {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 28px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #d2981c, #ffa500);
    color: #000000;
    border: 1px solid rgba(0, 200, 150, 0.3);
}

/* Button shine effect */
.btn-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-course:hover::before {
    left: 100%;
}

.btn-course:hover {
    background: linear-gradient(135deg, #00c896, #00b4d8);
    color: #0a0a1a;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 200, 150, 0.35),
        0 0 15px rgba(0, 200, 150, 0.2);
}

.btn-course:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 200, 150, 0.25);
}

/* Featured card button */
.course-card.featured .btn-course {
    background: linear-gradient(135deg, #d2981c, #ffa500);
    color: #0a0a1a;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.3);
}

.course-card.featured .btn-course:hover {
    background: linear-gradient(135deg, #00dfa8, #00c8e8);
    box-shadow:
        0 10px 30px rgba(0, 200, 150, 0.45),
        0 0 20px rgba(0, 200, 150, 0.25);
    transform: translateY(-3px);
}

/* ===========================
   VIEW ALL BUTTON (Bottom CTA)
   =========================== */

.courses-preview .text-center {
    text-align: center;
}

.courses-preview .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c3a35d, #ffa500);
    color: #0a0a1a;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(0, 200, 150, 0.3);
}

.courses-preview .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.courses-preview .btn-primary:hover::before {
    left: 100%;
}

.courses-preview .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 40px rgba(0, 200, 150, 0.4),
        0 0 20px rgba(0, 200, 150, 0.2);
}

.courses-preview .btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.courses-preview .btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.courses-preview .btn-primary:hover i {
    transform: rotate(90deg);
}

/* ===========================
   RESPONSIVE - TABLET (768px)
   =========================== */

@media (max-width: 992px) {
    .courses-preview {
        padding: 60px 0;
    }

    .courses-preview .section-title {
        font-size: 2.2rem;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .courses-grid:nth-of-type(2) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .discount-banner {
        padding: 14px 24px;
        max-width: 100%;
    }
}

/* ===========================
   RESPONSIVE - MOBILE (576px)
   =========================== */

@media (max-width: 576px) {
    .courses-preview {
        padding: 50px 0;
    }

    .courses-preview .container {
        padding: 0 15px;
    }

    .courses-preview .section-title {
        font-size: 1.8rem;
    }

    .courses-grid,
    .courses-grid:nth-of-type(2) {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 14px 18px;
        gap: 8px;
        border-radius: 12px;
        margin-bottom: 35px;
    }

    .discount-banner i.fa-tags {
        font-size: 1.3rem;
    }

    .discount-banner span {
        font-size: 0.9rem;
    }

    .course-card {
        padding: 28px 22px 22px;
        border-radius: 16px;
    }

    .course-card:hover {
        transform: translateY(-5px);
    }

    .course-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .course-icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .course-icon-wrap i {
        font-size: 1.4rem;
    }

    .course-card h3 {
        font-size: 1.15rem;
    }

    .course-card ul li {
        font-size: 0.83rem;
        padding: 7px 0;
    }

    .course-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .course-meta span {
        font-size: 0.78rem;
    }

    .btn-course {
        padding: 12px 24px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .courses-preview .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   CARD STAGGER ANIMATION
   =========================== */

.course-card {
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeUp 0.7s ease forwards;
}

.course-card:nth-child(1) {
    animation-delay: 0.1s;
}

.course-card:nth-child(2) {
    animation-delay: 0.25s;
}

.course-card:nth-child(3) {
    animation-delay: 0.4s;
}

.courses-grid:nth-of-type(2) .course-card:nth-child(1) {
    animation-delay: 0.55s;
}

.courses-grid:nth-of-type(2) .course-card:nth-child(2) {
    animation-delay: 0.7s;
}

@keyframes cardFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   HOVER MICRO-INTERACTIONS
   =========================== */

.course-card ul li:hover {
    padding-left: 6px;
    color: rgba(255, 255, 255, 0.95);
}

.course-card ul li:hover i.fa-check {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(0, 200, 150, 0.6));
}

.course-card ul li i.fa-check {
    transition: all 0.3s ease;
}

/* ===========================
   DARK SCROLLBAR (if overflow)
   =========================== */

.courses-preview ::-webkit-scrollbar {
    width: 4px;
}

.courses-preview ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.courses-preview ::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 150, 0.3);
    border-radius: 10px;
}

/* ===========================
   ACCESSIBILITY - FOCUS STATES
   =========================== */

.btn-course:focus-visible,
.courses-preview .btn-primary:focus-visible {
    outline: 2px solid #00c896;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(0, 200, 150, 0.2);
}

.course-card:focus-within {
    border-color: rgba(0, 200, 150, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1);
}

/* ===========================
   REDUCED MOTION PREFERENCE
   =========================== */

@media (prefers-reduced-motion: reduce) {
    .course-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .course-card:hover {
        transform: none;
    }

    .discount-banner {
        animation: none;
    }

    .discount-banner::before {
        animation: none;
    }

    .discount-banner i.fa-tags {
        animation: none;
    }

    .btn-course::before,
    .courses-preview .btn-primary::before {
        transition: none;
    }

    .courses-preview .section-title .highlight {
        animation: none;
    }
}

/* ===== FORMS ===== */
.contact-form-section {
    padding: 80px 0;
    background-color: #111111;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.discount-offer {
    background: linear-gradient(126deg, #e1bf6f 0%, #efa709 100%);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.discount-offer i {
    margin-right: 0.5rem;
}

.discount-offer h3 {
    font-size: 1.1rem;
    display: inline;
}

.discount-offer-small {
    background: linear-gradient(135deg, #ffa500 0%, #ff6b00 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.8rem;
}

.form-content > p {
    text-align: center;
    color: #bbbbbb;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: #0a0a0a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c3a35d;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300d4ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.25);
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #bbbbbb;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.stats-box {
    background-color: #1a1a1a;
    padding: 0.5rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border: 1px solid #333;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #c3a35d;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: #bbbbbb;
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-stats-side {
        width: 100%;
    }

    .stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }
}

/* ===== MISSION VISION ===== */
.mission-vision {
    padding: 20px 0;
    background-color: #111111;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.mv-card p {
    color: #bbbbbb;
    line-height: 1.8;
}

/* ===== VALUES ===== */
.values {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: #c3a35d;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #bbbbbb;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .values {
        padding: 0px 0px;
    }

    .values .section-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .value-card {
        padding: 20px 15px;
        text-align: center;
    }

    .value-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .value-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .value-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values .section-title {
        font-size: 1.3rem;
    }

    .value-card h3 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.82rem;
    }
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 80px 0;
    background-color: #111111;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    border: 3px solid #111111;
}

.timeline-content {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    color: #c3a35d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #bbbbbb;
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.cta-content {
    text-align: center;
    background-color: #1a1a1a;
    padding: 4rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: #bbbbbb;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.quick-contact {
    padding: 40px 0;
    background-color: #0a0a0a;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quick-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    display: block;
}

.quick-card:hover {
    border-color: #c3a35d;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.quick-card i {
    font-size: 2.5rem;
    color: #c3a35d;
    margin-bottom: 0.8rem;
    display: block;
}

.quick-card h3 {
    margin-bottom: 0.3rem;
}

.quick-card p {
    color: #bbbbbb;
    font-size: 0.9rem;
    word-break: break-all;
}

.contact-section {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.contact-info-box {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.contact-info-box > p {
    color: #bbbbbb;
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.info-item h4 {
    color: #c3a35d;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-item p {
    color: #bbbbbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-item p a {
    color: #bbbbbb;
    transition: color 0.3s;
}

.info-item p a:hover {
    color: #c3a35d;
}

.social-links-contact {
    margin-top: 2rem;
}

.social-links-contact h4 {
    margin-bottom: 0.8rem;
    color: #c3a35d;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background-color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    transform: translateY(-3px);
}

.contact-form-box {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form-box .contact-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Info Box */
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-info-box > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .info-items {
        gap: 15px;
    }

    .info-item {
        gap: 12px;
        align-items: flex-start;
    }

    .info-icon {
        font-size: 1rem;
        min-width: 35px;
        height: 35px;
    }

    .info-item h4 {
        font-size: 0.9rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.85rem;
    }

    .social-links-contact h4 {
        font-size: 0.95rem;
    }

    .social-icons a {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    /* Contact Form Box */
    .discount-offer-small {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-bottom: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.88rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.88rem;
        padding: 10px 12px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1.3rem;
    }

    .info-icon {
        min-width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.82rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
    }
}
@media (max-width: 380px) {
    .contact-section {
        padding: 30px 0px;
    }

    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1.15rem;
    }

    .contact-info-box > p {
        font-size: 0.8rem;
    }

    .info-icon {
        min-width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .info-item h4 {
        font-size: 0.82rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.78rem;
    }

    .social-icons a {
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }

    .discount-offer-small {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .form-group textarea {
        rows: 4;
        min-height: 100px;
    }

    .btn-submit {
        font-size: 0.88rem;
        padding: 10px;
    }
}

@media (max-width: 320px) {
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1rem;
    }

    .info-item {
        gap: 8px;
    }

    .info-item p,
    .info-item a {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.75rem;
        padding: 7px 8px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* ===== MAP ===== */
.map-section {
    padding: 60px 0;
    background-color: #111111;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.map-container iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.2rem;
    color: #c3a35d;
}

.footer-col p {
    color: #bbbbbb;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #bbbbbb;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #c3a35d;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #bbbbbb;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-info-list li i {
    color: #c3a35d;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info-list li a {
    color: #bbbbbb;
    transition: color 0.3s;
}

.contact-info-list li a:hover {
    color: #c3a35d;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #c3a35d;
}

/* ===== POPUP FORM ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-form {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 480px;
    width: 92%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: popSlideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes popSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background-color: #333;
    transform: rotate(90deg);
}

.popup-discount {
    background: linear-gradient(135deg, #ffa500 0%, #ff6b00 100%);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.popup-form > h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.popup-form > p {
    text-align: center;
    color: #bbbbbb;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.popup-form .form-group {
    margin-bottom: 1rem;
}

.popup-form .form-group input,
.popup-form .form-group select {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.popup-form .btn-submit {
    font-size: 1rem;
}

/* ===== WHATSAPP - FIXED LEFT BOTTOM (always visible) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    font-size: 2rem;
    color: #ffffff;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: #111111;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1060;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-grid,
    .webinar-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding-top: 140px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .lang-left {
        display: none;
    }

    .sticky-marquee {
        top: 82px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .logo span {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .popup-form {
        padding: 1.8rem;
        width: 95%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .discount-badge {
        font-size: 0.82rem;
        padding: 0.6rem 1.2rem;
    }

    .webinar-banner {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .language-bar .container {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }

    .sticky-marquee {
        top: 75px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo span {
        font-size: 1rem;
    }

    .nav-menu {
        top: 82px;
    }
}

/* ===== SUCCESS POPUP ===== */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: successBounce 0.5s ease;
    border: 2px solid #c3a35d;
}

@keyframes successBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 5rem;
    color: #25d366;
    animation: successPulse 1s ease infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.success-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-popup > p {
    color: #bbbbbb;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.success-hindi {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.success-info span {
    color: #c3a35d;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-info span a {
    color: #25d366;
    font-weight: 600;
    transition: color 0.3s;
}

.success-info span a:hover {
    color: #ffffff;
}

.btn-success-close {
    background: linear-gradient(135deg, #c3a35d 0%, #d2981c 100%);
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-success-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.auto-close-text {
    color: #555555;
    font-size: 0.8rem;
    animation: blink 1.5s infinite;
}

@media (max-width: 600px) {
    .success-popup {
        padding: 2rem 1.5rem;
    }

    .success-popup h2 {
        font-size: 1.4rem;
    }

    .success-icon i {
        font-size: 4rem;
    }

    .success-info {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    /* Language bar height adjust */
    .language-bar {
        padding: 4px 0;
        font-size: 0.7rem;
    }

    /* Sticky marquee fix */
    .sticky-marquee {
        top: 25px;   /* language bar ke niche */
        padding: 6px 0;
    }

    .marquee-track span {
        font-size: 0.95rem;
        padding: 13px 0px;
    }

  

    /* Logo size bada karo */
    .logo-img {
        width: 180px;   /* 👈 important fix */
        height: auto;
    }

 
    

    /* Hamburger show karo */
    .hamburger {
        display: flex;
    }

    /* Menu hide (agar already nahi kiya hai) */
   
}

/* SLIDER */
.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 12px;
    will-change: transform;
}

/* CARD */
.testimonial-card {
    flex: 0 0 auto;
    width: 280px;
    padding: 15px;
    background: #000000;
    border-radius: 10px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        width: 75vw;
    }
}

/* VIDEO SECTION */
/* VIDEO SLIDER - DESKTOP: 4 grid, MOBILE: 1 at a time */
.vs-outer {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
}

.vs-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vs-slide video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.vs-mob-controls {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .vs-outer {
        overflow: hidden;
    }

    .vs-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 400%;
        height: 400px;
        gap: 0;
        transition: transform 0.8s ease;
    }

    .vs-slide {
        width: 25%;
        height: 100%;
        flex-shrink: 0;
        padding: 0 6px;
        box-sizing: border-box;
    }

    .vs-mob-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 14px;
    }

    .vs-mob-controls button {
        background: #111;
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
    }

    .vs-dots {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .vs-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        display: inline-block;
        transition: all 0.3s;
    }

    .vs-dots span.active {
        background: #222;
        width: 22px;
        border-radius: 3px;
    }
}



.udyam-modern {
  background: #000000;
  padding: 70px 20px;
}

.udyam-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.udyam-left {
  flex: 1;
  min-width: 280px;
}

.udyam-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffffff;
}

.udyam-left p {
  color: #b5b1b1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.udyam-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #b5b1b1;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.udyam-btn:hover {
  background: #333;
}

/* RIGHT SIDE */
.udyam-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* MOBILE VIEW FIX (CENTER PERFECT) */
@media (max-width: 768px) {

  .udyam-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 0px 0px !important;
  }

  .udyam-left,
  .udyam-right {
    min-width: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .udyam-left h2 {
    font-size: 22px !important;
    text-align: center !important;
  }

  .udyam-left p {
    font-size: 14px !important;
    text-align: center !important;
    max-width: 95% !important;
  }

  .certificate-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 15px !important;
    text-align: center !important;
  }

  .certificate-card h4 {
    font-size: 16px !important;
  }

  .certificate-card p {
    font-size: 13px !important;
  }

  .line {
    margin: 10px auto !important;
  }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .certificate-card {
    max-width: 280px !important;
  }

  .udyam-left h2 {
    font-size: 20px !important;
  }

  .udyam-left p {
    font-size: 13px !important;
  }

}

/* FAKE CERTIFICATE CARD */
.certificate-card {
  width: 320px;
  padding: 30px;
  background: #000000;
  border-radius: 10px;
  border: 1px solid #b5b1b1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.certificate-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #b5b1b1;
}

.certificate-card p {
  font-size: 13px;
  color: #b5b1b1;
  margin: 5px 0;
}

.certificate-card .line {
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .udyam-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* GALLERY */
.gallery {
    padding: 70px 20px;
    background: #0b0b0b;
}

.section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

/* 🔥 MASONRY STYLE */
.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* 🔥 LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* 🔥 MENTOR SECTION */
.mentors {
    padding: 80px 20px;
    background: #0b0b0b;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
}

/* GRID */
.mentor-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD */
.mentor-card {
    display: flex;
    gap: 30px;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    align-items: center;
    transition: 0.3s;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.mentor-img img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* FAKE PROFILE */
.fake-profile {
    width: 220px;
    height: 260px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.fake-avatar {
    font-size: 50px;
    color: #fff;
    background: #222;
    padding: 20px 30px;
    border-radius: 50%;
}

/* CONTENT */
.mentor-content h3 {
    color: #fff;
    margin-bottom: 5px;
}

.tag {
    display: inline-block;
    font-size: 13px;
    color: #0ef;
    margin-bottom: 15px;
}

.mentor-content p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mentor-content small {
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mentor-card {
        flex-direction: column;
        text-align: center;
    }

    .mentor-img img,
    .fake-profile {
        width: 100%;
        height: auto;
    }
}

/* ============================================
   PREMIUM MENTORS SECTION
   ============================================ */

.mentors-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #0a0a0a 50%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

.mentors-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 200, 83, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 150, 255, 0.03) 0%, transparent 50%);
    animation: mentorBgFloat 20s ease-in-out infinite;
}

@keyframes mentorBgFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, 2%); }
}

.mentors-premium .section-title {
    color: #fff;
    margin-bottom: 0.5rem;
}

.mentors-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== MENTOR SHOWCASE CARD ===== */
.mentor-showcase {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.mentor-showcase:hover {
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.08);
    transform: translateY(-4px);
}

.mentor-showcase.reverse {
    flex-direction: row-reverse;
}

/* ===== MENTOR VISUAL (Photo Side) ===== */
.mentor-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mentor-photo-frame {
    width: 260px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(0, 200, 83, 0.4);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
    background: linear-gradient(135deg, #1a1a3e, #0d1b2a);
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c853, #00bfa5);
}

.mentor-avatar-fallback span {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
}

.mentor-badge-strip {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    color: #00c853;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.badge-item i {
    font-size: 0.7rem;
}

/* ===== MENTOR DETAILS (Text Side) ===== */
.mentor-details {
    flex: 1;
}

.mentor-name-row {
    margin-bottom: 1rem;
}

.mentor-name-row h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.mentor-role {
    display: inline-block;
    background: linear-gradient(135deg, #00c853, #00bfa5);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Tags */
.mentor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.mentor-tags span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.mentor-tags span:hover {
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.mentor-tags span i {
    color: #00c853;
    font-size: 0.7rem;
}

/* Bio */
.mentor-bio p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.mentor-bio p:last-child {
    margin-bottom: 0;
}

/* Highlights */
.mentor-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.highlight-item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    color: #00c853;
    border-radius: 12px;
    font-size: 1rem;
    border: 1px solid rgba(0, 200, 83, 0.2);
    flex-shrink: 0;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* SEBI Note */
.mentor-sebi-note {
    margin-top: 1.2rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    font-size: 0.8rem;
    font-weight: 500;
}

.mentor-sebi-note i {
    font-size: 0.9rem;
}

/* ===== DIVIDER ===== */
.mentor-divider {
    text-align: center;
    margin: 2.5rem 0;
    position: relative;
}

.mentor-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.3), transparent);
}

.mentor-divider span {
    background: #0d1b2a;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    color: #00c853;
    font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .mentor-showcase,
    .mentor-showcase.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .mentor-photo-frame {
        width: 200px;
        height: 240px;
    }

    .mentor-avatar-fallback span {
        font-size: 3.5rem;
    }

    .mentor-name-row h3 {
        font-size: 1.5rem;
    }

    .mentor-tags {
        justify-content: center;
    }

    .mentor-bio p {
        text-align: left;
    }

    .mentor-highlights {
        justify-content: center;
    }

    .mentor-sebi-note {
        justify-content: center;
        text-align: center;
    }

    .mentors-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .mentors-premium {
        padding: 3rem 0;
    }

    .mentor-showcase {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .mentor-photo-frame {
        width: 170px;
        height: 210px;
    }

    .mentor-name-row h3 {
        font-size: 1.3rem;
    }

    .mentor-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .highlight-item {
        width: 100%;
        justify-content: center;
    }

    .badge-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }
}