:root {
  --blue: #0d43c7;
  --blue-dark: #0b2d7f;
  --blue-soft: #eaf1ff;
  --orange: #f66a11;
  --orange-dark: #d85500;
  --green: #1aa63a;
  --green-dark: #0f7e2c;
  --yellow: #f5b20a;
  --text: #0f172a;
  --muted: #42526b;
  --line: #d8e4ff;
  --white: #ffffff;
  --bg: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  --shadow: 0 18px 40px rgba(11, 45, 127, 0.14);
  --shadow-soft: 0 12px 24px rgba(11, 45, 127, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.section-pad {
  max-width: 1240px;
  margin: 0 auto;
  padding: 78px 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,67,199,0.08);
}
.navbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 22px rgba(13,67,199,0.10);
}
.brand-text strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.18rem;
}
.brand-text small {
  display: block;
  color: var(--orange-dark);
  font-weight: 700;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue-dark);
}
.nav-links a:hover { background: var(--blue-soft); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 26px rgba(26,166,58,0.25);
}
.nav-cta img { width: 22px; height: 22px; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-dark);
  margin: 5px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
  z-index: -1;
}
.hero-section::before {
  width: 280px;
  height: 280px;
  background: rgba(246,106,17,0.20);
  left: -60px;
  top: 40px;
}
.hero-section::after {
  width: 330px;
  height: 330px;
  background: rgba(13,67,199,0.14);
  right: -80px;
  top: 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 32px;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4eb;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: var(--blue-dark);
}
.hero-text {
  margin: 18px 0 24px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 28px rgba(26,166,58,0.28);
}
.primary-btn img { width: 24px; height: 24px; }
.btn-brand-badge,
.round-logo,
.mini-logo {
  display: inline-grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  flex: 0 0 auto;
}
.btn-brand-badge {
  width: 36px;
  height: 36px;
  padding: 3px;
}
.btn-brand-badge img { width: 100%; height: 100%; object-fit: contain; }
.secondary-btn {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.hero-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--blue);
}
.hero-stats span { color: var(--muted); font-weight: 700; }
.hero-card {
  display: grid;
  gap: 18px;
}
.hero-logo-card {
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.hero-logo {
  width: min(100%, 430px);
  margin: 0 auto 14px;
  object-fit: contain;
}
.hero-logo-card h2 {
  color: var(--orange-dark);
  margin: 4px 0 8px;
}
.hero-logo-card p {
  margin: 0;
  color: var(--muted);
}
.contact-pill {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #0d43c7, #0b2d7f);
  color: #fff;
}
.contact-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.round-logo {
  width: 54px;
  height: 54px;
  padding: 4px;
}
.round-logo img { width: 100%; height: 100%; object-fit: contain; }
.contact-pill-left small {
  display: block;
  color: #dbeafe;
}
.contact-pill-left strong { font-size: 1.25rem; }
.contact-pill a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(26,166,58,0.3);
}
.contact-pill a img { width: 26px; height: 26px; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-heading.left-align {
  margin: 0;
  text-align: left;
}
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--blue-dark);
}
.section-heading p:last-child { color: var(--muted); margin-bottom: 0; }

.program-grid,
.video-grid,
.feature-stack {
  display: grid;
  gap: 22px;
}
.program-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.video-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-stack { grid-template-columns: repeat(2, minmax(0,1fr)); }
.program-card,
.video-card,
.feature-card {
  padding: 24px;
}
.program-card h3,
.video-card h3,
.feature-card strong {
  margin: 0 0 10px;
  color: var(--blue-dark);
}
.program-card p,
.video-card p,
.feature-card p { color: var(--muted); margin-top: 0; }
.program-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.program-card li { margin: 7px 0; }
.icon-cube {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 900;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4f85ff);
  box-shadow: 0 12px 24px rgba(13,67,199,0.24);
}
.icon-cube.orange { background: linear-gradient(135deg, var(--orange), #ff9558); }
.icon-cube.green { background: linear-gradient(135deg, var(--green), #33c255); }

.carousel-shell,
.feedback-shell {
  position: relative;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 30%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.gallery-card,
.testimonial-card {
  scroll-snap-align: start;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f4f8ff;
}
.gallery-card figcaption {
  padding: 16px;
  font-weight: 800;
  color: var(--blue-dark);
}
.carousel-btn,
.feedback-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
}
.carousel-btn {
  background: linear-gradient(135deg, var(--blue), #4f85ff);
}
.feedback-btn {
  background: linear-gradient(135deg, var(--orange), #ff9558);
}
.prev { left: -14px; }
.next { right: -14px; }

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #dbeafe, #f4f8ff);
  margin-bottom: 16px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 3rem;
  color: var(--blue-dark);
  font-weight: 900;
}
.video-placeholder span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: var(--muted);
}

.feedback-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(234,241,255,0.70));
  border-top: 1px solid rgba(13,67,199,0.05);
  border-bottom: 1px solid rgba(13,67,199,0.05);
}
.feedback-carousel {
  grid-auto-columns: minmax(290px, 36%);
}
.testimonial-card {
  padding: 22px;
  min-height: 280px;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mini-logo {
  width: 42px;
  height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
}
.mini-logo img { width: 100%; height: 100%; object-fit: contain; }
.testimonial-top strong {
  display: block;
  color: var(--blue-dark);
}
.testimonial-top small {
  color: var(--orange-dark);
  font-weight: 700;
}
.stars {
  color: var(--yellow);
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  margin: 4px 0 12px;
}
.testimonial-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}
.feedback-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.feedback-note p { margin: 0; color: var(--muted); }

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: var(--blue-soft);
}

.site-footer {
  background: linear-gradient(180deg, #0d43c7 0%, #0b2d7f 100%);
  color: #fff;
  margin-top: 30px;
}
.site-footer a { color: #fff; }
.footer-top,
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top { padding-bottom: 10px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
  padding: 5px;
}
.footer-brand strong { display: block; font-size: 1.3rem; }
.footer-brand p { margin: 4px 0 0; color: #dbeafe; font-weight: 700; }
.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 24px;
}
.footer-whatsapp > img { width: 42px; height: 42px; }
.footer-whatsapp span { display: block; color: #dbeafe; }
.footer-whatsapp strong { font-size: 1.2rem; }
.footer-scroll-wrap {
  max-width: 1240px;
  margin: 12px auto 0;
  padding: 12px 24px 0;
  overflow: hidden;
}
.footer-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: footerScroll 30s linear infinite;
}
.footer-scroll-wrap:hover .footer-scroll-track { animation-play-state: paused; }
.footer-scroll-track img {
  width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}
.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #dbeafe;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a:hover { text-decoration: underline; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 34px rgba(26,166,58,0.28);
}
.floating-whatsapp > img { width: 28px; height: 28px; }
.floating-whatsapp span { display: flex; flex-direction: column; line-height: 1.05; }
.floating-whatsapp strong { font-size: 0.98rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.tilt-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.tilt-card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  box-shadow: var(--shadow);
}

@keyframes footerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .why-grid,
  .program-grid,
  .video-grid { grid-template-columns: 1fr; }
  .feature-stack { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .carousel-track { grid-auto-columns: minmax(260px, 55%); }
  .feedback-carousel { grid-auto-columns: minmax(290px, 60%); }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    background: #fff;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .contact-pill,
  .footer-top,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-whatsapp { width: 100%; }
  .feature-stack { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section-pad { padding: 58px 16px; }
  .navbar { padding: 12px 16px; }
  .brand-logo-img { width: 54px; height: 54px; }
  .brand-text strong { font-size: 1rem; }
  .hero-actions,
  .primary-btn,
  .secondary-btn { width: 100%; }
  .primary-btn,
  .secondary-btn { justify-content: center; }
  .carousel-track { grid-auto-columns: minmax(250px, 84%); }
  .feedback-carousel { grid-auto-columns: minmax(260px, 86%); }
  .carousel-btn,
  .feedback-btn { display: none; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 10px; }
}

/* Direct feedback image cards */
.feedback-carousel {
  grid-auto-columns: minmax(280px, 34%);
}
.feedback-image-card {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-image-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #f4f8ff;
}
.feedback-image-card figcaption {
  padding: 14px 16px;
  color: var(--blue-dark);
  font-weight: 800;
}
.feedback-add-card {
  border-style: dashed;
}
.feedback-add-card img {
  object-fit: contain;
  padding: 16px;
}
@media (max-width: 1080px) {
  .feedback-carousel { grid-auto-columns: minmax(280px, 52%); }
}
@media (max-width: 620px) {
  .feedback-carousel { grid-auto-columns: minmax(260px, 86%); }
}


/* Final fix: show parent feedback screenshot fully without cropping */
.feedback-image-card img {
  width: 100%;
  height: 560px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 10px;
}

.feedback-image-card {
  background: #ffffff;
}

@media (max-width: 1080px) {
  .feedback-image-card img {
    height: 520px;
  }
}

@media (max-width: 620px) {
  .feedback-image-card img {
    height: 460px;
    padding: 8px;
  }
}


/* Email contact additions */
.nav-email {
  background: #fff4eb;
  color: var(--orange-dark) !important;
  border: 1px solid rgba(246, 106, 17, 0.22);
}

.email-pill {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
}

.email-pill > span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-size: 1.45rem;
  font-weight: 900;
}

.email-pill small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.email-pill a {
  color: var(--blue-dark);
  font-weight: 900;
  word-break: break-word;
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 24px;
}

.footer-email > span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-email small {
  display: block;
  color: #dbeafe;
}

.footer-email strong {
  font-size: 1.05rem;
  word-break: break-word;
}

@media (max-width: 860px) {
  .footer-contact-block,
  .footer-email,
  .footer-whatsapp {
    width: 100%;
  }

  .nav-email {
    text-align: center;
  }
}
