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

:root {
  --navy:   #0a1f3c;
  --gold:   #d4a012;
  --gold2:  #f0c040;
  --cream:  #fdf8f0;
  --light:  #f4f7fc;
  --dark:   #0d0d0d;
  --muted:  #6b7280;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(10,31,60,0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
/* ── Logo image — responsive ── */
.navbar-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* white logo on dark navbar – keep background transparent */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
  transition: transform .25s ease, filter .25s ease;
}
.navbar-brand:hover .navbar-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 8px rgba(212,160,18,.45));
}
@media (max-width: 767.98px) {
  .navbar-logo-img { height: 40px; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-logo-img { height: 46px; }
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .3px;
  padding: 6px 18px !important;
  transition: color .25s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold2) !important; }
.btn-consult {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 8px 22px !important;
  font-size: .9rem;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(212,160,18,.45); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block;
  background: rgba(212,160,18,.12);
  color: var(--gold);
  border-left: 3px solid var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
}
.gold-underline {
  display: inline-block;
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 60%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 60%, #163565);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.breadcrumb-nav { margin-top: 18px; }
.breadcrumb-nav a { color: var(--gold2); text-decoration: none; font-size: .88rem; }
.breadcrumb-nav span { color: rgba(255,255,255,.4); font-size: .88rem; margin: 0 8px; }
.breadcrumb-nav .current { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ── BUTTONS ── */
.hero-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 13px 36px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(212,160,18,.5); color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold2);
}
.stat-item .label { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: 2px; }

/* ── ABOUT ── */
#about, .about-section { padding: 90px 0; background: var(--cream); }
.about-img-main {
  width: 100%; border-radius: 16px;
  object-fit: cover; height: 420px;
  box-shadow: 0 20px 60px rgba(10,31,60,.18);
}
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.about-badge .big { font-size: 2rem; font-weight: 700; color: var(--gold2); font-family: 'Playfair Display', serif; }
.about-badge small { font-size: .75rem; opacity: .75; display: block; margin-top: 2px; }
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #374151;
  font-size: .95rem;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── SERVICES ── */
#services, .services-section { padding: 90px 0; background: var(--light); }
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(10,31,60,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10,31,60,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--navy);
}
.service-card h5 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── COLLEGES ── */
#colleges, .colleges-section { padding: 90px 0; background: var(--cream); }
.college-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10,31,60,.08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.college-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,31,60,.15); }
.college-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.college-card:hover img { transform: scale(1.04); }
.college-img-wrap { overflow: hidden; position: relative; }
.college-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold2);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.college-body { padding: 20px; }
.college-body h5 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.college-body p { color: var(--muted); font-size: .87rem; margin-bottom: 12px; }
.college-body .btn-link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.college-body .btn-link-gold:hover { color: var(--navy); }

/* ── TESTIMONIALS ── */
#testimonials, .testimonials-section { padding: 90px 0; background: var(--navy); }
#testimonials .section-title,
.testimonials-section .section-title { color: #fff; }
#testimonials .section-tag,
.testimonials-section .section-tag { background: rgba(212,160,18,.2); color: var(--gold2); }
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: background .3s;
}
.testi-card:hover { background: rgba(255,255,255,.1); }
.testi-stars { color: var(--gold2); font-size: 1.1rem; margin-bottom: 16px; }
.testi-text { color: rgba(255,255,255,.82); line-height: 1.75; font-size: .95rem; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-author .name { color: #fff; font-weight: 600; font-size: .93rem; }
.testi-author .city { color: rgba(255,255,255,.5); font-size: .8rem; }

/* ── CONTACT ── */
#contact, .contact-section { padding: 90px 0; background: #fff; }
.contact-form-wrap {
  background: var(--light);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 6px 30px rgba(10,31,60,.07);
}
.contact-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(10,31,60,.15);
}
.form-control, .form-select {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .93rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,18,.15);
  outline: none;
}
.form-label { font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: 6px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 13px 36px;
  font-size: 1rem;
  width: 100%;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,18,.4); }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h6 { color: var(--navy); font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 60%, #163565);
  padding: 60px 0;
}
.newsletter-input {
  border: none;
  border-radius: 40px 0 0 40px;
  padding: 14px 22px;
  font-size: .93rem;
  width: 100%;
  outline: none;
}
.newsletter-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 0 40px 40px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.newsletter-btn:hover { opacity: .88; }

/* ── FOOTER ── */
footer {
  background: #040d1a;
  color: rgba(255,255,255,.65);
  padding: 60px 0 28px;
}
footer .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
footer .logo-text span { color: var(--gold2); }
.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  /* Knock out white bg so it sits cleanly on the dark navy footer */
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 8px rgba(212,160,18,.2));
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .footer-logo-img { height: 56px; }
}
footer p { font-size: .88rem; line-height: 1.7; }
footer h6 { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px; }
footer a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer a:hover { color: var(--gold2); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-links li::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 28px 0 22px; }
.social-icons a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: background .25s, color .25s;
  margin-right: 8px;
}
.social-icons a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212,160,18,.45);
  display: none;
  z-index: 9998;
  transition: transform .2s;
  align-items: center;
  justify-content: center;
}
#scrollTop:hover { transform: translateY(-3px); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .about-badge { right: 0; bottom: -18px; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float i {
  font-size: 1.5rem;
  line-height: 1;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.75); }
}
@media (max-width: 576px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-label { display: none; }
  .whatsapp-float i { font-size: 1.7rem; }
}

/* ── ADMISSION BANNER (top bar) ── */
.admission-banner {
  background: linear-gradient(90deg, var(--navy) 0%, #163565 50%, var(--navy) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 9px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 1001;
  overflow: hidden;
  animation: bannerSlide .6s ease both;
}
@keyframes bannerSlide {
  from { transform: translateY(-100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
/* Fade edges */
.admission-banner::before,
.admission-banner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.admission-banner::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.admission-banner::after {
  right: 40px;
  background: linear-gradient(to left, var(--navy), transparent);
}
.admission-banner-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.admission-banner-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Duplicate content span for seamless loop */
.banner-text-copy { display: inline-flex; align-items: center; gap: 6px; padding: 0 60px; }
.admission-blink {
  animation: blink 1.4s step-start infinite;
  font-size: 1.1rem;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.banner-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: color .2s;
  padding: 4px 8px;
  line-height: 1;
  z-index: 3;
}
.banner-close:hover { color: #fff; }

/* ── PM TOAST ── */
.pm-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  z-index: 99999;
  font-weight: 600;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border: 1px solid rgba(212,160,18,.3);
}
.pm-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ADMISSION POPUP MODAL ── */
.pm-modal-badge {
  display: inline-block;
  background: rgba(212,160,18,.18);
  border: 1px solid rgba(212,160,18,.5);
  color: var(--gold2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.pm-modal-form .pm-modal-badge { display: block; text-align: center; }
.pm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,12,30,.75);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}
.pm-modal-overlay.open { opacity: 1; }
.pm-modal {
  background: linear-gradient(145deg, #0e2448 0%, #163565 100%);
  border: 1px solid rgba(212,160,18,.4);
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  transform: scale(.88) translateY(30px);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
}
.pm-modal-overlay.open .pm-modal {
  transform: scale(1) translateY(0);
}
.pm-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.pm-modal-close:hover { background: rgba(255,255,255,.2); }
.pm-modal-badge {
  display: inline-block;
  background: rgba(212,160,18,.18);
  border: 1px solid rgba(212,160,18,.5);
  color: var(--gold2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.pm-modal-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pm-modal-sub {
  color: rgba(255,255,255,.6);
  font-size: .93rem;
  margin-bottom: 22px;
}
.pm-modal-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}
.pm-modal-courses span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
}
.pm-modal-actions { margin-bottom: 16px; }
.pm-modal-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 40px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  width: 100%;
  transition: opacity .2s, transform .2s;
}
.pm-modal-wa:hover { opacity: .9; transform: translateY(-2px); color: #fff; }
.pm-modal-wa i { font-size: 1.2rem; }
.pm-modal-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.pm-modal-phones a {
  color: var(--gold2);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.pm-modal-phones a:hover { color: #fff; }

/* ── WHATSAPP FLOAT (updated phone) — position now managed by .float-btn-stack ── */

/* ── MAP SECTION ── */
.map-section-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10,31,60,.15);
  border: 3px solid var(--gold);
}

/* ── Popup Form (Apply Now) ── */
.pm-modal-form {
  max-width: 580px !important;
  text-align: left !important;
  padding: 36px 36px 28px !important;
}
.pm-modal-form .pm-modal-badge { text-align: center; }
.pm-modal-form .pm-modal-title { text-align: center; margin-bottom: 20px !important; }
.pm-form-body { margin-top: 4px; }
.pm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.pm-form-group { display: flex; flex-direction: column; margin-bottom: 12px; }
.pm-form-row .pm-form-group { margin-bottom: 0; }
.pm-form-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 5px;
  letter-spacing: .03em;
}
.pm-form-control {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  padding: 9px 12px;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.pm-form-control::placeholder { color: rgba(255,255,255,.35); }
.pm-form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.11);
}
.pm-form-control option { background: #163565; color: #fff; }
textarea.pm-form-control { resize: none; }
.pm-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #c8920a 100%);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  letter-spacing: .02em;
}
.pm-submit-btn:hover { opacity: .9; transform: translateY(-2px); }
@media (max-width: 520px) {
  .pm-form-row { grid-template-columns: 1fr; }
  .pm-modal-form { padding: 28px 20px 22px !important; }
}

/* ── FLOATING BUTTONS STACK (Call CTA + WhatsApp) ── */
.float-btn-stack {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn-stack .whatsapp-float,
.float-btn-stack .call-float {
  position: static;
  z-index: auto;
}
.call-float {
  background: linear-gradient(135deg, var(--navy), #163565);
  color: var(--gold2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(10,31,60,.40);
  transition: transform .25s, box-shadow .25s;
  animation: callPulse 3s infinite;
  border: 1px solid rgba(212,160,18,.3);
}
.call-float i { font-size: 1.4rem; line-height: 1; }
.call-float:hover {
  color: var(--gold2);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(10,31,60,.55);
  animation: none;
}
@keyframes callPulse {
  0%,100%{ box-shadow:0 6px 24px rgba(10,31,60,.40); }
  50%    { box-shadow:0 6px 32px rgba(10,31,60,.65); }
}
.call-float-label { white-space: nowrap; }
@media (max-width:576px){
  .float-btn-stack { bottom:80px; right:16px; gap:10px; }
  .call-float { padding:13px; border-radius:50%; }
  .call-float-label { display:none; }
  .call-float i { font-size:1.6rem; }
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS — PM Eduventures
   ══════════════════════════════════════════════ */

/* Base: all animatable elements start hidden */
[data-animate] {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.75s;
  transition-property: opacity, transform, filter;
  will-change: opacity, transform;
}
[data-animate].anim-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Slide up (default) */
[data-animate="slide-up"] {
  transform: translateY(50px);
}

/* Slide in from left */
[data-animate="slide-left"] {
  transform: translateX(-60px);
}

/* Slide in from right */
[data-animate="slide-right"] {
  transform: translateX(60px);
}

/* Fade + zoom in */
[data-animate="zoom-in"] {
  transform: scale(0.88);
}

/* Fade only */
[data-animate="fade"] {
  opacity: 0;
}

/* Flip up */
[data-animate="flip-up"] {
  transform: perspective(600px) rotateX(18deg) translateY(40px);
}

/* Blur reveal */
[data-animate="blur-in"] {
  filter: blur(12px);
  transform: translateY(20px);
}

/* Delay classes */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }

/* Section headings get a special underline reveal */
.section-title { position: relative; }
.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
[data-animate].anim-visible .section-title::after,
.anim-visible .section-title::after {
  width: 60px;
}

/* Stagger cards automatically when parent gets .stagger-children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.stagger-children.anim-visible > *:nth-child(1) { transition-delay: 0.05s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(2) { transition-delay: 0.15s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(3) { transition-delay: 0.25s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(4) { transition-delay: 0.35s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(5) { transition-delay: 0.45s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(6) { transition-delay: 0.55s; opacity:1; transform:none; }
.stagger-children.anim-visible > *:nth-child(n+7) { transition-delay: 0.65s; opacity:1; transform:none; }

/* Stat counter bar pulse on reveal */
.stats-bar.anim-visible {
  animation: statsReveal 0.6s ease forwards;
}
@keyframes statsReveal {
  from { box-shadow: inset 0 0 0 0 rgba(212,160,18,0); }
  to   { box-shadow: inset 0 -4px 0 0 var(--gold); }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-animate] * { transition: none !important; animation: none !important; }
}

/* mobile-cta-bar removed */
