/*
Theme Name: YouthTech Institute Pro
Theme URI: https://youthtech.edu.pk
Author: Youth Skills & Technical Institute, Bannu
Description: Professional light theme with navy blue – designed specifically for Youth Skills & Technical Institute, Bannu.
Version: 2.0
License: GNU General Public License v2
Text Domain: yst
Tags: education, professional, light, navy, responsive
*/

/* ════════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════════ */
:root {
  --navy:        #1B3070;
  --navy-mid:    #2B4A9E;
  --navy-light:  #3D62C8;
  --navy-bg:     #EEF2FF;
  --navy-bg2:    #F5F7FF;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --text:        #1A1A2E;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --border:      #DDE3F0;
  --shadow-sm:   0 2px 10px rgba(27,48,112,0.07);
  --shadow-md:   0 6px 30px rgba(27,48,112,0.12);
  --shadow-lg:   0 16px 50px rgba(27,48,112,0.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
h1,h2,h3,h4,h5 { color: var(--text); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(30px, 4.5vw, 54px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 17px; }
p  { color: var(--text-body); line-height: 1.75; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-bg);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(27,48,112,0.12);
}
.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
}
.section-title { margin-bottom: 10px; }
.section-sub { color: var(--text-muted); font-size: 16px; max-width: 540px; }
.section-sub.center { margin: 0 auto 48px; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(27,48,112,0.28);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,48,112,0.35);
  color: #ffffff !important;
}
/* contact info card sits on light-blue bg — btn inside must stay white */
.contact-info-card .btn-primary,
.contact-info-card .btn-primary:hover { color: #ffffff !important; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--navy-bg);
  transform: translateY(-2px);
  color: var(--navy);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.yst-topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  font-size: 13px;
}
.yst-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--white); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.yst-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.yst-header.scrolled { box-shadow: var(--shadow-md); }
.yst-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.yst-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.yst-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  transition: transform var(--transition);
}
.yst-logo:hover img { transform: rotate(5deg) scale(1.05); }
.yst-logo-text { line-height: 1.15; }
.yst-logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.yst-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}
.yst-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.yst-menu a {
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
  position: relative;
}
.yst-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.yst-menu a:hover,
.yst-menu a.current {
  color: var(--navy);
  background: var(--navy-bg);
}
.yst-menu a:hover::after,
.yst-menu a.current::after { transform: scaleX(1); }
.yst-menu .btn-primary { padding: 9px 20px; font-size: 13px; color: #FFFFFF !important; }
.yst-menu .btn-primary:hover { color: #FFFFFF !important; }
.yst-menu .btn-primary::after { display: none; }

/* Hamburger */
.yst-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.yst-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.yst-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.yst-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.yst-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.yst-mobile-nav {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--navy-bg);
  padding: 8px 0 20px;
  box-shadow: var(--shadow-md);
}
.yst-mobile-nav.open { display: block; }
.yst-mobile-nav a {
  display: flex;
  align-items: center;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.yst-mobile-nav a:last-child { border-bottom: none; }
.yst-mobile-nav a:hover { color: var(--navy); background: var(--navy-bg); padding-left: 36px; }

/* ════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════ */
.yst-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.yst-slider-track {
  display: flex;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.77,0,0.175,1);
}
.yst-slide {
  min-width: 100%;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
}
.yst-slide.active .slide-bg { transform: scale(1.05); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,48,112,0.88) 0%, rgba(27,48,112,0.6) 55%, rgba(27,48,112,0.2) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 70px 0;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #B8CAFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  animation: slideUp 0.7s 0.1s ease both;
}
.slide-badge::before { content: '✦'; font-size: 10px; }
.slide-content h1 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  animation: slideUp 0.7s 0.2s ease both;
}
.slide-content h1 em {
  font-style: normal;
  color: #93AAFF;
  display: block;
}
.slide-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 34px;
  max-width: 500px;
  line-height: 1.7;
  animation: slideUp 0.7s 0.3s ease both;
}
.slide-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.4s ease both;
}

/* Slider UI */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.s-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: all 0.35s;
}
.s-dot.active { background: var(--white); width: 28px; border-radius: 4px; }

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 26px; right: 32px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
}
.slide-counter span { color: var(--white); font-size: 17px; font-weight: 800; }

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

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.yst-trust {
  background: var(--navy-bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--border);
  transition: all var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--navy-mid); }
.trust-item .t-icon { font-size: 17px; }

/* ════════════════════════════════════════
   STATS COUNTER
════════════════════════════════════════ */
.yst-stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.yst-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-block {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: transform var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { transform: translateY(-4px); }
.stat-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.stat-num {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ════════════════════════════════════════
   COURSES SECTION
════════════════════════════════════════ */
.yst-courses { background: var(--white); }
.courses-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.f-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
}
.f-btn.active, .f-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 22px;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}
.course-card:hover {
  transform: translateY(-7px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
}
.c-thumb {
  height: 148px;
  overflow: hidden;
  position: relative;
}
.c-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.course-card:hover .c-thumb img { transform: scale(1.08); }
.c-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
  transition: transform 0.45s ease;
}
.course-card:hover .c-placeholder { transform: scale(1.1); }
.c-body { padding: 18px 20px 20px; }
.c-cat {
  display: inline-block;
  background: var(--navy-bg);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 9px;
}
.c-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.35;
}
.c-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.c-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
}
.c-dur { color: var(--text-muted); font-weight: 500; }
.badge-free {
  background: #E8F8EE;
  color: #16A34A;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}
.badge-paid {
  background: var(--navy-bg);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}

/* ════════════════════════════════════════
   FEATURES / WHY US
════════════════════════════════════════ */
.yst-features { background: var(--navy-bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.feat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all var(--transition);
}
.feat-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-icon-wrap {
  width: 54px; height: 54px;
  background: var(--navy-bg);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.feat-card:hover .feat-icon-wrap { background: var(--navy); }
.feat-card:hover .feat-icon-wrap .feat-emoji { filter: brightness(10); }
.feat-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.feat-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════
   ABOUT STRIP (homepage)
════════════════════════════════════════ */
.yst-about-strip { background: var(--white); }
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .big { font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.about-img-badge .small { font-size: 11px; opacity: 0.8; }
.about-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.values-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.value-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--navy-bg2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--navy);
  transition: all var(--transition);
}
.value-item:hover { background: var(--navy-bg); transform: translateX(4px); }
.value-item .v-icon { font-size: 20px; margin-top: 1px; }
.value-item h5 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.value-item p { font-size: 13px; color: var(--text-muted); }

/* ════════════════════════════════════════
   MD MESSAGE
════════════════════════════════════════ */
.yst-md-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1E50 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.yst-md-section::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 380px;
  color: rgba(255,255,255,0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.md-card-inner { position: relative; z-index: 2; }
.md-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}
.md-photo-wrap img, .md-avatar-ph {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  margin: 0 auto;
}
.md-avatar-ph {
  background: var(--navy-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.md-photo-wrap::after {
  content: '★ MD';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.md-quote-text {
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 26px;
  line-height: 1.55;
}
.md-quote-text .hl { color: #93AAFF; }
.md-name { color: #93AAFF; font-weight: 800; font-size: 16px; margin-bottom: 2px; }
.md-role-txt { color: rgba(255,255,255,0.45); font-size: 13px; }

/* ════════════════════════════════════════
   RESEARCH / BLOG CARDS
════════════════════════════════════════ */
.yst-research { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 175px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 20px 22px 22px; }
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--navy); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}
.blog-read-more {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.yst-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.yst-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.yst-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.yst-cta .cta-inner { position: relative; z-index: 2; }
.yst-cta h2 { color: var(--white); margin-bottom: 12px; }
.yst-cta p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 500px; margin: 0 auto 36px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.yst-footer { background: #0D1B3E; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-logo img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-name { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.2; }
.footer-brand-name span { color: #93AAFF; display: block; font-size: 11px; font-weight: 500; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover { background: var(--navy-mid); border-color: var(--navy-light); transform: translateY(-2px); }
.footer-col-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(147,170,255,0.2);
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-links a::before { content: '›'; color: #93AAFF; font-size: 16px; }
.footer-links a:hover { color: #93AAFF; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 11px;
  color: rgba(255,255,255,0.45);
  font-size: 13.5px;
  margin-bottom: 13px;
  line-height: 1.6;
}
.footer-contact-item .ci { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-item a:hover { color: #93AAFF; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.footer-wa-btn:hover { opacity: 0.88; transform: translateY(-2px); color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { color: rgba(255,255,255,0.25); font-size: 12.5px; }

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.wa-float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float-btn:hover { transform: scale(1.12) rotate(-8deg); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float-btn .wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ════════════════════════════════════════
   PAGE HEADER (inner pages)
════════════════════════════════════════ */
.yst-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 50px;
  position: relative;
  overflow: hidden;
}
.yst-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.yst-page-header .inner { position: relative; z-index: 2; }
.yst-page-header h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(26px, 4vw, 40px); }
.yst-page-header p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.mission-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.mission-img img { width: 100%; }
.mission-text .section-sub { max-width: 100%; color: var(--text-body); font-size: 16px; line-height: 1.8; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-7px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--navy-bg);
  transition: border-color var(--transition);
}
.team-card:hover .team-photo { border-color: var(--navy); }
.team-ph {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--navy-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
  border: 3px solid transparent;
  transition: border-color var(--transition);
}
.team-card:hover .team-ph { border-color: var(--navy); }
.team-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  background: var(--navy-bg);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.team-wa {
  display: block;
  margin: 10px auto 0;
  width: 32px; height: 32px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform var(--transition);
}
.team-wa:hover { transform: scale(1.15); }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #EEF2FF;
  border: 1.5px solid #C7D2F5;
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover {
  background: #E0E8FF;
  border-color: var(--navy);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.ci-icon {
  width: 50px; height: 50px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background var(--transition);
  box-shadow: 0 2px 8px rgba(27,48,112,0.10);
}
.contact-info-card:hover .ci-icon { background: #FFFFFF; }
.ci-text h4 { font-size: 14px; font-weight: 700; color: #1B3070; margin-bottom: 3px; }
.ci-text p, .ci-text a { font-size: 13.5px; color: #1A1A2E; transition: color var(--transition); font-weight: 500; }
.ci-text a:hover { color: var(--navy-mid); text-decoration: underline; }
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 22px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,48,112,0.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ════════════════════════════════════════
   RESULT & VERIFICATION PAGES
════════════════════════════════════════ */
.result-box, .verification-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.result-box .icon-top, .verification-box .icon-top {
  font-size: 52px;
  margin-bottom: 18px;
  display: block;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.result-box h2, .verification-box h2 { margin-bottom: 10px; }
.result-box p, .verification-box p { color: var(--text-muted); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }
.result-form-wrap .form-group { text-align: left; }

/* ════════════════════════════════════════
   RESEARCH / BLOG PAGE
════════════════════════════════════════ */
.research-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}

/* ════════════════════════════════════════
   CONTENT PAGE (single/page)
════════════════════════════════════════ */
.yst-content { padding: 72px 0; }
.content-wrap { max-width: 820px; }
.content-wrap .entry-content h2 { margin: 32px 0 12px; font-size: 24px; color: var(--navy); }
.content-wrap .entry-content h3 { margin: 24px 0 10px; font-size: 19px; }
.content-wrap .entry-content p { margin-bottom: 18px; color: var(--text-body); }
.content-wrap .entry-content ul { padding-left: 22px; margin-bottom: 18px; }
.content-wrap .entry-content ul li { margin-bottom: 8px; color: var(--text-body); list-style: disc; }
.content-wrap .entry-content img { border-radius: var(--radius-md); margin: 22px 0; box-shadow: var(--shadow-md); }
.content-wrap .entry-content blockquote {
  border-left: 4px solid var(--navy);
  padding: 14px 20px;
  background: var(--navy-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.up { transform: translateY(28px); }
.reveal.left { transform: translateX(-28px); }
.reveal.right { transform: translateX(28px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 540px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .mission-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .yst-menu { display: none; }
  .yst-hamburger { display: flex; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-block:last-child, .stat-block:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .section-pad { padding: 62px 0; }
  .trust-item { padding: 8px 12px; font-size: 12px; }
  .courses-top { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .yst-slide { min-height: 460px; }
  .slider-prev, .slider-next { display: none; }
  .result-box, .verification-box { padding: 30px 22px; }
  .contact-form-wrap { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .slide-content { padding: 50px 0; }
  .slide-content h1 { font-size: 26px; }
  .trust-list { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}
