/* =====================================================
   BUDHA INTERN PVT. LTD. — Production Master Stylesheet
   Palette: Cyan #00BCD4 | Teal #0097A7 | Dark Teal #007C91 | Navy Blue #0D47A1 | Deep Navy #0A192F | Light Cyan #E0F7FA
   ===================================================== */

:root {
  /* Brand Colors */
  --cyan:          #00BCD4;
  --cyan-dark:     #00ACC1;
  --teal:          #0097A7;
  --dark-teal:     #007C91;
  --navy:          #0D47A1;
  --navy-deep:     #0A192F;
  --navy-mid:      #005F73;

  /* Surfaces */
  --bg-page:       #F8FAFC;
  --bg-card:       #FFFFFF;
  --bg-alt:        #F0FAFD;
  --bg-accent:     #E0F7FA;
  
  /* Text & Borders */
  --text-main:     #0F172A;
  --text-sub:      #334155;
  --text-muted:    #64748B;
  --border:        #E2E8F0;
  --border-cyan:   #B2EBF2;

  /* Shadows */
  --shadow-sm:     0 4px 14px rgba(10, 25, 47, 0.05);
  --shadow-md:     0 8px 24px rgba(10, 25, 47, 0.08);
  --shadow-lg:     0 16px 36px rgba(10, 25, 47, 0.14);

  /* Border Radius */
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-full:   9999px;
  --transition:    all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 64px 0;
  position: relative;
}

.tc { text-align: center; }

/* ===== TYPOGRAPHY & GRADIENTS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.theme-gradient-gold, .gradient-gold, .theme-gradient-text {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 50%, #007C91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.theme-gradient-navy {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 50%, #007C91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
}

.section-h2 {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.section-p {
  font-size: 1.02rem;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* ===== BUTTON SYSTEM ===== */
.btn-gold, .btn-vibrant {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 12px 26px !important;
  border-radius: var(--radius-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.35) !important;
  transition: var(--transition) !important;
  cursor: pointer;
}

.btn-gold:hover, .btn-vibrant:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(0, 188, 212, 0.5) !important;
  color: #FFFFFF !important;
}

.btn-slide-solid, .btn-primary, .btn-theme-gradient {
  background: linear-gradient(135deg, #0D47A1 0%, #007C91 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 12px 26px !important;
  border-radius: var(--radius-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(0, 188, 212, 0.4) !important;
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.25) !important;
  transition: var(--transition) !important;
  cursor: pointer;
}

.btn-slide-solid:hover, .btn-primary:hover, .btn-theme-gradient:hover {
  background: linear-gradient(135deg, #007C91 0%, #00BCD4 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(0, 188, 212, 0.45) !important;
}

.btn-slide-outline, .btn-outline-navy {
  background: #FFFFFF !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 11px 24px !important;
  border-radius: var(--radius-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1.5px solid var(--teal) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--transition) !important;
  cursor: pointer;
}

.btn-slide-outline:hover, .btn-outline-navy:hover {
  background: var(--bg-accent) !important;
  border-color: var(--cyan) !important;
  color: var(--navy-deep) !important;
  transform: translateY(-2px) !important;
}

/* ===== TOP UTILITY BAR ===== */
.topbar {
  background: var(--navy-deep);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.25);
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.topbar span i { color: var(--cyan); }

.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-left: 14px;
  transition: var(--transition);
}

.topbar-social a:hover { color: var(--cyan); }

/* ===== STICKY NAVBAR ===== */
.navbar {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--cyan);
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(10, 25, 47, 0.12);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(0, 188, 212, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background: #FFFFFF;
  border: 1.5px solid var(--cyan);
  padding: 1px;
}

.nav-brand:hover .brand-logo-img { transform: scale(1.08); }

.brand-text { display: flex; flex-direction: column; }

.brand-text .b1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
}

.brand-text .b2 {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy-deep);
  background: rgba(0, 188, 212, 0.08);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2.5px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  left: 14px;
  right: 14px;
}

/* Nav CTA Buttons */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-login {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-login:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.nav-register {
  background: linear-gradient(135deg, #0D47A1 0%, #007C91 50%, #00BCD4 100%) !important;
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.35) !important;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-register:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.55) !important;
  color: #FFFFFF !important;
}

/* Mobile Hamburger & Drawer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 28px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.mobile-menu a:hover {
  background: var(--bg-alt);
  color: var(--navy-deep);
}

.mobile-menu .m-cta {
  padding: 18px 28px;
  display: flex;
  gap: 12px;
}

/* ===== HERO SLIDER SECTION ===== */
.slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 60%, #007C91 100%);
  isolation: isolate;
  border-bottom: 3px solid var(--cyan);
}

.slides-wrap {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 520px;
}

.slide-1, .slide-2, .slide-3 {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 50%, #007C91 100%);
}

.slide-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  min-height: 520px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.slide-content {
  padding: 48px 0;
  position: relative;
  z-index: 4;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.4);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4DD0E1;
  margin-bottom: 16px;
}

.slide-eyebrow .edot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--cyan);
}

.slide-h1 {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.slide-h1 .line1 { display: block; color: #FFFFFF; }
.slide-h1 .line2 {
  display: block;
  background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 18px 0 30px;
}

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 60%);
  transition: transform 1.2s ease;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.65);
  border: 1.5px solid rgba(0, 188, 212, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #0A192F;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.sdot.active {
  background: var(--cyan);
  width: 28px;
  border-radius: 10px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--cyan);
  z-index: 11;
  animation: progressBar 5s linear infinite;
}

@keyframes progressBar { from { width: 0%; } to { width: 100%; } }

/* ===== HERO STATS STRIP ===== */
.hero-stats-wrap {
  position: relative;
  z-index: 10;
  margin-top: -36px;
  margin-bottom: 36px;
}

.hero-stats-bar {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 100%);
  border: 2px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.hs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 16px;
}

.hs-item:last-child { border-right: none; padding-right: 0; }

.hs-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}

.hs-txt {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  display: block;
}

.hs-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  display: block;
  font-weight: 500;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
}

.marquee-label-top {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 12px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

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

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-size: 0.82rem;
}

.marquee-badge .mb-icon { font-size: 1.2rem; }
.marquee-badge strong { color: var(--navy-deep); font-weight: 700; }
.marquee-badge small { color: var(--text-muted); font-size: 0.72rem; }

/* ===== FEATURE CARDS & WHY CHOOSE US (FIXED GRID & ICON BOXES) ===== */
.features-bg { background: var(--bg-page); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.feature-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 188, 212, 0.15);
  border-color: var(--cyan);
}

.feature-icon-wrap {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  font-size: 1.4rem !important;
  margin-bottom: 20px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ===== FILTER TABS & SEARCH BAR ===== */
.domain-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.dtab {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dtab:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}

.dtab.active {
  background: linear-gradient(135deg, #0D47A1 0%, #0097A7 100%);
  color: #FFFFFF;
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.25);
}

.price-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
}

.price-btn:hover, .price-btn.active {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}

/* ===== DOMAIN PROGRAM CARDS GRID ===== */
.programs-bg { background: var(--bg-alt); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.program-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 188, 212, 0.2);
  border-color: var(--cyan);
}

.program-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.program-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
  font-size: 1.3rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  flex-shrink: 0 !important;
}

.prog-badge {
  background: rgba(0, 188, 212, 0.12);
  border: 1px solid rgba(0, 188, 212, 0.35);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.program-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 20px;
}

.prog-enroll-meta {
  margin-bottom: 16px;
}

.pem-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pem-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
}

.pem-fill {
  height: 100%;
  background: linear-gradient(90deg, #00BCD4, #0097A7);
  border-radius: 10px;
}

.prog-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== BRANCHES & STREAMS SECTION ===== */
.branches-section {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 100%);
  color: #FFFFFF;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.branch-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.branch-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.branch-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 188, 212, 0.2);
  color: var(--cyan);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-card-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.branch-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.branch-item i { color: var(--cyan); }

/* ===== HOW IT WORKS / STEPS ===== */
.how-bg { background: var(--bg-page); }

.steps-grid-wrap {
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  z-index: 1;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.step-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 188, 212, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 50px;
}

.step-icon-main {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D47A1, #007C91);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ===== CERTIFICATE SHOWCASE ===== */
.cert-showcase-section {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 100%);
  padding: 64px 0;
  color: #FFFFFF;
}

.cert-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== 1-TO-1 OFFICIAL CERTIFICATE IMAGE SHOWCASE ===== */
.cert-preview-card {
  background: #001030;
  border: 3px solid #C9A227;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cert-preview-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(201, 162, 39, 0.35);
}

.cert-image-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cert-sample-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cert-preview-card:hover .cert-sample-img {
  transform: scale(1.02);
}

.cert-verify-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
}

.cvo-badge {
  background: rgba(0, 16, 48, 0.92);
  border: 1.5px solid #C9A227;
  color: #F4C430;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testi-bg { background: var(--bg-page); }

.testi-carousel-wrap {
  position: relative;
  margin-top: 36px;
  padding: 0 48px;
}

.testi-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
  padding: 10px 0;
}

.testi-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
}

.testi-card-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}

@media (max-width: 1024px) {
  .testi-card-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .testi-carousel-wrap { padding: 0; }
  .testi-card-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.testi-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-arrow:hover {
  background: var(--cyan);
  color: #FFFFFF;
  border-color: var(--cyan);
  transform: translateY(-50%) scale(1.08);
}

.testi-arrow.prev { left: 0; }
.testi-arrow.next { right: 0; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-cyan);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.tdot.active {
  background: var(--cyan);
  width: 28px;
  border-radius: 10px;
}

/* FAQ Section & Accordion */
.faq-bg { background: var(--bg-alt); }

.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  border-color: var(--cyan);
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.14);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
  user-select: none;
}

.faq-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  color: var(--cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--cyan);
  color: #FFFFFF;
}

.faq-ans {
  font-size: 0.93rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: none;
}

.faq-item.open .faq-ans {
  display: block;
}

/* ===== VERIFICATION RESULT CARD ===== */
.vresult-card {
  background: #FFFFFF;
  border: 2px solid var(--border-cyan);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 33, 71, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 36px auto 0;
  text-align: left;
}

.vresult-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0D47A1, #00BCD4);
}

.vr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed #e2e8f0;
  margin-bottom: 24px;
}

.vr-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vr-brand-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--cyan);
  background: #FFFFFF;
  padding: 2px;
}

.vr-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.vr-brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vr-status-badge {
  background: #dcfce7;
  color: #15803d;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid #bbf7d0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.vr-recipient {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--border-cyan);
}

.vr-recipient p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.vr-recipient h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.vr-domain-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan-dark);
}

.vr-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.vr-meta-item {
  background: #FFFFFF;
  border: 1px solid var(--border-cyan);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.vr-meta-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.vr-meta-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}

.vr-signatures {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1.5px dashed #e2e8f0;
}

/* ===== ABOUT MISSION & VISION CARDS ===== */
.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.about-mv-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.about-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.12);
  border-color: var(--cyan);
}

.about-mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
  flex-shrink: 0;
}

.about-mv-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.about-mv-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-info-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 33, 71, 0.12);
  border-color: var(--cyan);
}

.cic-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cic-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.cic-detail-list li {
  font-size: 0.88rem;
  color: var(--navy-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cic-detail-list li i {
  color: var(--cyan-dark);
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}

/* Form Layout & Form Controls */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group-item label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.form-input-field {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--navy-deep);
  background: #FFFFFF;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-input-field:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.15);
}

.form-input-field::placeholder {
  color: #94a3b8;
}

textarea.form-input-field {
  min-height: 120px;
  resize: vertical;
}

.mform-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: #FFFFFF;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  box-sizing: border-box;
}

.mform-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.15);
}

.mform-input::placeholder {
  color: #94a3b8;
}

.eye-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.faq-info-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.faq-info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-info-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.faq-info-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: left;
}

.faq-info-stat i { color: var(--cyan); font-size: 1.1rem; }

/* CTA */
.cta-bg {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 64px 0;
}

.cta-inner h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.cta-devanagari {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 24px;
  border-top: 4px solid var(--cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-brand-sub {
  font-size: 0.78rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2.5px;
  background: var(--cyan);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i { color: var(--cyan); margin-top: 3px; }

.footer-socials { display: flex; gap: 10px; }

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.soc-btn:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 16px;
}

.footer-bottom-links a:hover { color: var(--cyan); }

/* ===== FLOATING WIDGETS ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.wa-float:hover { transform: scale(1.1); }

.back-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--cyan);
  color: var(--navy-deep);
}

/* ===== PAGE HERO BANNER & INSTANT SEARCH ===== */
.page-hero {
  background: linear-gradient(135deg, #0A192F 0%, #0D47A1 50%, #007C91 100%);
  padding: 64px 0 48px;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 3px solid var(--cyan);
}

.page-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.intern-search-bar {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.intern-search-bar i {
  color: var(--cyan-dark);
  font-size: 1.1rem;
  margin-right: 10px;
}

.intern-search-bar input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: transparent;
}

.intern-search-bar input::placeholder {
  color: var(--text-muted);
}

.intern-search-btn {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.35);
  transition: var(--transition);
}

.intern-search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.5);
}

/* ===== PRICE & DURATION BADGES ===== */
.badge-free-tag {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #16a34a;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-paid-tag {
  background: rgba(0, 188, 212, 0.12);
  border: 1px solid rgba(0, 188, 212, 0.35);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== PAGINATION ===== */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.page-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  color: var(--navy-deep);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.page-btn:hover:not(:disabled) {
  background: var(--cyan);
  color: #FFFFFF;
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-num {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1.5px solid var(--border-cyan);
  color: var(--navy-deep);
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-num:hover, .page-num.active {
  background: linear-gradient(135deg, #0D47A1, #0097A7);
  color: #FFFFFF;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.25);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hs-item { border-right: none; }
  .features-grid, .programs-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid, .cert-showcase-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-image { display: none; }
  .slide-h1 { font-size: 2.1rem; }
  .hero-stats-bar { grid-template-columns: 1fr; }
  .features-grid, .programs-grid, .testi-grid, .steps-grid, .about-mv-grid, .contact-cards-grid, .contact-form-grid, .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links a { margin: 0 8px; }
  .page-hero-title { font-size: 2rem; }
}
