@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =============================================
   YUVANEXT — style.css
   Color system: #C9A227 (gold), #FFD700 (yellow), #38bdf8 (navy), #fff (white)
   ============================================= */

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

html { scroll-behavior: smooth; }

body { color: #333; line-height: 1.6; background: #fff; overflow-x: hidden; width: 100%; }

h1, h2, h3, h4, h5, h6, .hero-tag, .btn-primary, .btn-outline, .btn-submit, .btn-card, .nav-links > li > a {
  font-family: var(--font-heading);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

section { padding: 80px 0; overflow: hidden; }

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container { padding: 0 20px; }
}

h1, h2, h3, h4 { color: #07162b; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
button { cursor: pointer; transition: 0.3s; }
ul { list-style: none; }

/* Fluid Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 700; }

/* ===== SECTION DEFAULTS ===== */
.section { padding: 70px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-header h2 span { color: #C9A227; }
.section-header p { color: #666; font-size: 1.05rem; margin-top: 4px; }
.section-header::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, #FFD700);
  border-radius: 10px;
  margin: 14px auto 0;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.8); }
.section-header.light::after { background: rgba(255,255,255,0.5); }

/* ===== BRAND DIVIDER ===== */
.brand-divider {
  height: 5px;
  background: #C9A227;
  width: 100%;
}


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A227, #e6b800);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
  cursor: pointer;
}
.btn-primary:hover {
  background: #fff;
  color: #C9A227;
  border-color: #C9A227;
  box-shadow: 0 6px 20px rgba(201,162,39,0.25);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.btn-outline:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #C9A227, #e6b800);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 4px 14px rgba(201,162,39,0.3);
  letter-spacing: 0.3px;
}
.btn-submit:hover { background: linear-gradient(135deg, #a8891f, #c9a227); box-shadow: 0 6px 20px rgba(201,162,39,0.4); transform: translateY(-1px); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.header-top {
  background: #C9A227;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  font-size: 0.85rem;
  height: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header-top .toll-free i { margin-right: 6px; }
.header-social a {
  color: #fff;
  margin-left: 12px;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.header-social a:hover { opacity: 0.75; }

.navbar {
  display: flex;
  align-items: center;
  padding: 14px 30px;
  gap: 0;
}

.logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}
.logo-image {
  width: 64px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 20px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #000;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #C9A227; }
.nav-links > li > a i { font-size: 0.7rem; margin-left: 4px; transition: transform 0.3s ease; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 3px solid #C9A227;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s;
}
.dropdown li a:hover { background: #C9A227; color: #fff; }
.has-dropdown:hover .dropdown { display: block; }

.btn-enquire {
  background: #C9A227;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.3s;
  border: 2px solid #C9A227;
}
.btn-enquire:hover { background: #fff; color: #C9A227; }

/* Sticky shrink */
.site-header.is-fixed .header-top { height: 0; opacity: 0; }
.site-header.is-fixed .navbar { padding: 8px 30px; }
.site-header.is-fixed { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../aviation-images/IMG_7677.PNG') center/cover no-repeat;
  animation: zoomInOut 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.82) 0%, rgba(201,162,39,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 30px 40px 80px;
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  color: #FFD700;
  border: 1px solid rgba(255,215,0,0.35);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #FFD700;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: -0.5px;
}
.hero-content h1 span {
  color: #FFD700;
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 26px;
  height: 26px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  animation: scrollBounce 1.4s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* ===== ABOUT HOME SECTION ===== */
.about-home { background: #fff; padding: 120px 0; }
.about-home-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.about-home-text { font-size: 1.1rem; line-height: 1.9; color: #444; margin-bottom: 25px; }
.about-home-image-box { position: relative; }
.about-home-img { width: 100%; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); border: 8px solid #fff; }
.about-home-exp {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #C9A227;
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 15px 35px rgba(201,162,39,0.3);
}

/* ===== COURSES ===== */
.courses-section { background: #f9f9f9; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #C9A227);
  opacity: 0;
  transition: opacity 0.35s;
}
.course-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.course-card:hover::before { opacity: 1; }
.course-card.featured {
  border-color: #C9A227;
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
}
.course-card.featured::before { opacity: 1; }

.course-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #C9A227;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #C9A227, #FFD700);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(201,162,39,0.3);
  transition: transform 0.3s;
}
.course-card:hover .course-icon { transform: scale(1.08) rotate(-4deg); }

.course-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-card ul {
  text-align: left;
  margin-bottom: 20px;
}
.course-card ul li {
  font-size: 0.88rem;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.course-card ul li i {
  color: #C9A227;
  margin-right: 8px;
  width: 14px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #C9A227, #e6b800);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 3px 10px rgba(201,162,39,0.25);
}
.btn-card:hover {
  background: #fff;
  color: #C9A227;
  border-color: #C9A227;
  box-shadow: none;
  transform: translateY(-1px);
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}
.stat-item {
  color: #fff;
  padding: 16px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.stat-item .stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  opacity: 0.9;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-item h3 span {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}
.stat-item p {
  font-size: 0.88rem;
  opacity: 0.88;
  margin-top: 8px;
  font-weight: 500;
}

/* ===== ENQUIRY FORM ===== */
.form-section { background: #fff; }

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.form-left h2 span { color: #C9A227; }
.form-left > p { color: #555; margin-bottom: 24px; }

.form-benefits li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #333;
}
.form-benefits li i {
  color: #C9A227;
  margin-right: 10px;
}

.enquiry-form { width: 100%; }

.form-row { margin-bottom: 20px; }

.float-group { position: relative; }
.float-group input,
.float-group select {
  width: 100%;
  padding: 16px 10px 6px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: #000;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.float-group input:focus,
.float-group select:focus { border-bottom: 2px solid #C9A227; }

.float-group label {
  position: absolute;
  top: 14px;
  left: 10px;
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  transition: all 0.2s;
}
.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label,
.float-group select:focus ~ label,
.float-group select:not([value=""]) ~ label,
.float-group label.active {
  top: 2px;
  font-size: 0.7rem;
  color: #C9A227;
}

.select-group::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.7rem;
  color: #999;
}

.gender-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.radio-group { display: flex; gap: 24px; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}
.radio-group input[type="radio"] { accent-color: #C9A227; width: 16px; height: 16px; }

/* ===== WHY YUVANEXT ===== */
.why-section { background: #f9f9f9; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #C9A227);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.why-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  transform: translateY(-5px);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(56,189,248,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 24px rgba(56,189,248,0.4);
}
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, #C9A227, #FFD700); box-shadow: 0 6px 18px rgba(201,162,39,0.3); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 6px 18px rgba(16,185,129,0.3); }
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.why-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testi-stats-bar {
  background: #111;
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 0;
}
.testi-stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.testi-stat {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.testi-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #C9A227;
}
.testi-stat span {
  font-size: 0.8rem;
  color: #aaa;
}
.testi-stat-stars { color: #C9A227; font-size: 0.85rem; }

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.testi-course-badge {
  background: rgba(201,162,39,0.18);
  color: #C9A227;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
}
.testi-stars { color: #C9A227; font-size: 0.78rem; }
.testi-salary-tag {
  display: inline-block;
  background: rgba(46,204,113,0.14);
  color: #2ecc71;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.testimonials-section {
  background: #1a1a1a;
  position: relative;
  padding: 70px 0;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: #242424;
  border-radius: 10px;
  padding: 28px 26px 26px;
  border-bottom: 4px solid #C9A227;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.testi-quote {
  color: #C9A227;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  background: #C9A227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.testi-author strong { display: block; color: #fff; font-size: 0.93rem; }
.testi-author > div > span { font-size: 0.8rem; color: #999; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C9A227;
  color: #fff;
  border: 4px solid #C9A227;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s;
  z-index: 5;
}
.carousel-btn:hover { background: #a8891f; border-color: #a8891f; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dots .dot.active { background: #C9A227; }

/* ===== PARTNERS ===== */
.partners-section { background: #fff; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.partner-logo {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  min-height: 118px;
  text-align: center;
}
.partner-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}
.partner-logo:hover {
  border-color: #C9A227;
  box-shadow: 0 4px 16px rgba(201,162,39,0.15);
  transform: translateY(-2px);
}

/* ===== BLOG ===== */
.blog-section { background: #f9f9f9; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-body { padding: 22px; }
.blog-date { font-size: 0.78rem; color: #C9A227; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body h4 { font-size: 1rem; font-weight: 700; margin: 8px 0 10px; color: #000; line-height: 1.4; }
.blog-body p { font-size: 0.87rem; color: #555; line-height: 1.6; margin-bottom: 16px; }
.blog-link { font-size: 0.88rem; font-weight: 600; color: #C9A227; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.blog-link:hover { gap: 10px; }

/* ===== FOOTER ===== */
.site-footer { background: #0c1a35; color: #94a3b8; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-logo-image { width: 88px; height: auto; border-radius: 50%; margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #cbd5e1; transition: 0.3s;
}
.footer-social a:hover { background: #C9A227; color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: #C9A227; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: #94a3b8; transition: 0.2s; }
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.newsletter-form { display: flex; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 11px 14px; color: #fff; outline: none; }
.newsletter-form button { background: #C9A227; color: #fff; border: none; padding: 10px 16px; cursor: pointer; }
.footer-bottom { background: #060f1f; padding: 18px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }

/* ===== STICKY ENROLL ===== */
.sticky-enroll {
  position: fixed; bottom: 30px; right: 30px; background: #C9A227; color: #fff; padding: 14px 24px;
  border-radius: 50px; font-weight: 700; font-size: 0.92rem; box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  z-index: 999; opacity: 0; transform: translateY(20px); transition: 0.4s; pointer-events: none;
  text-decoration: none;
}
.sticky-enroll.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 100px; right: 30px; width: 54px; height: 54px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  z-index: 998; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.7); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.85), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 30px; left: 30px; width: 44px; height: 44px;
  background: #07162b; color: #fff; border-radius: 50%; border: none; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25); z-index: 997;
  opacity: 0; transform: translateY(10px); transition: 0.3s; pointer-events: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: #C9A227; }

/* ===== TOAST NOTIFICATION ===== */
.yn-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #07162b; color: #fff; padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 3000; opacity: 0; transition: opacity 0.35s, transform 0.35s; white-space: nowrap;
  border-left: 4px solid #C9A227;
}
.yn-toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== COMPACT PREMIUM MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(7, 22, 43, 0.85); backdrop-filter: blur(8px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box.compact {
  background: #fff; border-radius: 28px; max-width: 440px; width: 92%;
  padding: 45px 35px; position: relative; transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  text-align: center;
}
.modal-overlay.active .modal-box.compact { transform: scale(1) translateY(0); }
.modal-icon-wrap {
  width: 70px; height: 70px; background: rgba(201,162,39,0.1); border-radius: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: #C9A227; font-size: 1.8rem; transform: rotate(-5deg);
}
.modal-header h2 { font-size: 2rem; font-weight: 800; color: #07162b; margin-bottom: 12px; letter-spacing: -0.5px; }
.modal-header h2 span { color: #C9A227; }
.modal-header p { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }
.modal-body-compact .float-group { margin-bottom: 20px; text-align: left; }
.modal-body-compact .float-group input {
  width: 100%; border: 2px solid #f1f5f9; background: #f8fafc; border-radius: 12px;
  padding: 16px 18px; font-size: 1rem; color: #07162b; transition: all 0.3s;
}
.modal-body-compact .float-group input:focus { border-color: #C9A227; background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(201,162,39,0.1); }
.modal-body-compact .float-group label {
  position: absolute; left: 18px; top: 16px; color: #94a3b8; pointer-events: none;
  transition: all 0.3s; font-size: 1rem;
}
.modal-body-compact .float-group input:focus + label,
.modal-body-compact .float-group label.active { transform: translateY(-30px) scale(0.85); color: #C9A227; font-weight: 700; left: 10px; }
.btn-modal {
  width: 100%; background: linear-gradient(135deg, #07162b, #1e293b); color: #fff;
  border: none; padding: 18px; border-radius: 14px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: 0.3s; margin-top: 10px; display: flex; align-items: center;
  justify-content: center; gap: 10px; box-shadow: 0 10px 25px rgba(7,22,43,0.2);
}
.btn-modal:hover { transform: translateY(-2px); background: #C9A227; box-shadow: 0 15px 35px rgba(201,162,39,0.3); }
.modal-note { margin-top: 20px; font-size: 0.8rem; color: #94a3b8; font-weight: 500; }
.modal-close {
  position: absolute; top: 15px; right: 15px; width: 34px; height: 34px;
  background: #f1f5f9; border: none; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; color: #64748b; z-index: 10;
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.modal-close:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .courses-grid, .why-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonial-page { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TABLET: footer grid 2-col before collapsing ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-home-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-home { padding: 80px 0; }
  .about-home-exp { position: static; margin-top: 24px; border-radius: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2n)::after { display: none; }
  /* Prevent horizontal scroll from large padded sections */
  .hero-content { padding: 30px 24px 30px 40px; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .btn-enquire {
    margin-left: auto;
    margin-right: 15px;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
  }
  .hamburger { display: flex; margin-left: 0; padding: 10px; }
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); padding: 20px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 1px solid #f0f0f0;
  }
  .nav-links.open { display: flex; animation: slideDown 0.4s ease forwards; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links > li { width: 100%; border-bottom: 1px solid #f8f8f8; }
  .nav-links > li > a { padding: 18px 25px; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; color: #07162b; font-weight: 600; }
  .dropdown { position: static; background: #fcfcfc; box-shadow: none; border-top: none; padding: 0; }
  .dropdown li a { padding: 14px 45px; font-size: 0.95rem; }

  /* Fix iOS Safari parallax bug on all hero types */
  .page-hero,
  .about-hero,
  .why-hero,
  .training-hero,
  .course-hero { background-attachment: scroll !important; }

  /* Hero */
  .hero-content { padding: 30px 20px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }

  /* Prevent any element from causing horizontal overflow */
  body { overflow-x: hidden; }
  img, video, iframe, table { max-width: 100%; }

  /* About */
  .about-home-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-home { padding: 60px 0; }
  .about-home-exp { position: static; margin-top: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }

  /* Grids */
  .courses-grid, .why-grid, .blog-grid, .testimonial-page, .form-wrapper, .partners-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Footer */
  .footer-col { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  .footer-offices { text-align: center; }
  .footer-offices p { justify-content: center; }

  .partner-logo { min-height: 80px; padding: 15px; }

  /* Floating buttons — stack vertically, smaller */
  .sticky-enroll { display: none; }
  .whatsapp-btn { bottom: 80px; right: 20px; width: 48px; height: 48px; font-size: 1.3rem; }
  #backToTop { bottom: 20px; left: 20px; width: 40px; height: 40px; font-size: 0.9rem; }

  /* Toast — wrap text on small screens */
  .yn-toast { white-space: normal; text-align: center; max-width: 88vw; font-size: 0.88rem; padding: 12px 20px; }

  /* Modal */
  .modal-box.compact { padding: 40px 25px; width: 95%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }
  .section-header h2 { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 2.2rem; }
  .btn-submit, .btn-modal { padding: 14px; font-size: 0.95rem; }
  .page-hero h1 { font-size: 2.2rem; }
}

/* ==========================================================================
   GLOBAL PARTNERS SECTION
   ========================================================================== */
.global-partners {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.partners-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.partners-title-wrap h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #C9A227;
  margin-bottom: 15px;
  font-weight: 700;
}

.partners-title-wrap h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: #07162b;
  letter-spacing: -1px;
}

.partners-title-wrap h2 span {
  color: #C9A227;
  position: relative;
}

.partners-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* Add gradient masks for smooth fade */
.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.partners-track {
  display: flex;
  gap: 100px;
  align-items: center;
  animation: scrollLogos 40s linear infinite;
  width: max-content;
}

.partner-logo-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.partner-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

.partner-logo-item img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

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

@media (max-width: 768px) {
  .global-partners { padding: 60px 0; }
  .partners-track { gap: 50px; animation-duration: 30s; }
  .partner-logo-item { height: 35px; }
  .partner-logo-item img { max-width: 140px; }
  .partners-slider::before, .partners-slider::after { width: 80px; }
}

