/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --blue: #1e5bff;
  --blue-dark: #1546d4;
  --blue-light: #e8f0ff;
  --orange: #ff6b1a;
  --orange-light: #fff0e6;
  --green: #10b981;
  --green-light: #e6faf5;
  --purple: #7c3aed;
  --purple-light: #f3eaff;
  --gold: #f59e0b;

  --dark: #0a1e3d;
  --dark-2: #1a2942;
  --gray-1: #f8fafc;
  --gray-2: #f1f5f9;
  --gray-3: #e2e8f0;
  --gray-4: #94a3b8;
  --gray-5: #64748b;
  --gray-6: #334155;
  --white: #ffffff;

  --grad-blue: linear-gradient(135deg, #1e5bff 0%, #7c3aed 100%);
  --grad-orange: linear-gradient(135deg, #ff6b1a 0%, #f59e0b 100%);
  --grad-soft: linear-gradient(180deg, #f0f5ff 0%, #fff7f0 100%);
  --grad-dark: linear-gradient(135deg, #0a1e3d 0%, #1e3a8a 100%);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.15);

  --font: "Plus Jakarta Sans", sans-serif;
  --font-serif: "DM Serif Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PRELOADER
============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 110px;
  height: auto;
  margin-bottom: 30px;
  animation: logoFloat 1.5s ease infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--grad-blue);
  border-radius: 4px;
  animation: loadBar 1.2s ease infinite;
}

@keyframes loadBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 2px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: var(--blue);
  color: #fff;
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-left a,
.top-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.top-left a:hover,
.top-right a:hover {
  opacity: 0.8;
}

.top-right {
  gap: 10px;
}
.top-right a {
  font-size: 1.1rem;
}
.top-right span:first-child {
  margin-right: 6px;
  opacity: 0.85;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  background: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  height: 56px;
  width: auto;
}

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

.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 600;
  background: var(--blue-light);
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 3px;
  width: fit-content;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-6);
  border-radius: 8px;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-a:hover,
.nav-a.active {
  color: var(--blue);
}

.nav-a.active {
  border-bottom: 3px solid var(--blue);
  border-radius: 0;
  padding-bottom: 7px;
}

.caret {
  font-size: 0.7rem;
  transition: transform 0.25s;
}
.has-drop {
  position: relative;
}
.has-drop:hover .caret {
  transform: rotate(180deg);
}

.drop {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  border: 1px solid var(--gray-2);
}

.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-6);
  border-radius: 8px;
  transition: all 0.2s;
  text-transform: none;
  letter-spacing: normal;
}

.drop-a:hover {
  background: var(--blue-light);
  color: var(--blue);
  padding-left: 18px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(30, 91, 255, 0.3);
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
  padding: 60px 0 100px;
  background: var(--grad-soft);
  position: relative;
  overflow: hidden;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(30, 91, 255, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* HERO LEFT */
.hero-left {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.3);
}

.hb-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hb-spark {
  font-size: 0.95rem;
}

.hero-welcome {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-5);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-courses {
  margin-bottom: 40px;
}

.hc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hc-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.25s;
}

.hc-item:hover,
.hc-item.active {
  color: var(--orange);
  position: relative;
}

.hc-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.hc-item sup {
  font-size: 0.7em;
}

.hc-sep {
  color: var(--gray-4);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.35);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30, 91, 255, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--gray-3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-outline span {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  height: 600px;
}

.hero-img-wrap {
  position: relative;
  background: linear-gradient(180deg, #e8efff 0%, #fff7f0 100%);
  border-radius: 30px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 91, 255, 0.15);
}

.hero-person-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}

.hero-person-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hpt-label {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.hpt-name {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  animation: floatY 3s ease infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-top {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.float-bottom {
  bottom: 30px;
  right: -10px;
  animation-delay: 1.5s;
}

.fc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fc-ico-blue {
  background: var(--blue-light);
}

.fc-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.fc-num-sm {
  font-size: 1.3rem;
}

.fc-label {
  font-size: 0.75rem;
  color: var(--gray-5);
  line-height: 1.3;
  margin-top: 4px;
}

.amb-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.35);
}

/* ============================================
   ACHIEVERS STRIP (Autoscroll)
============================================ */
.achievers-strip {
  padding: 80px 0 60px;
  background: #fff;
  overflow: hidden;
}

.ach-strip-header {
  text-align: center;
  margin-bottom: 40px;
}

.strip-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-top: 12px;
  color: var(--dark);
}

.achievers-scroll {
  overflow: hidden;
  padding: 30px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

.achievers-track {
  display: flex;
  gap: 24px;
  animation: scrollX 40s linear infinite;
  width: max-content;
}

.achievers-track:hover {
  animation-play-state: paused;
}

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

.ach-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.ach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.ach-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-light);
  flex-shrink: 0;
}

.ach-info {
  flex: 1;
  min-width: 0;
}

.ach-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.ach-info p {
  font-size: 0.78rem;
  color: var(--gray-5);
  margin-bottom: 6px;
}

.ach-score {
  display: inline-block;
  background: var(--grad-orange);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================
   SHARED SECTION STYLES
============================================ */
.sec-head {
  margin-bottom: 60px;
}

.sec-head.center {
  text-align: center;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.under-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.under-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--gray-5);
  max-width: 640px;
  line-height: 1.8;
}

.sec-desc.center {
  margin: 0 auto;
}

/* ============================================
   COURSES
============================================ */
.courses-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

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

.course-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.cc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.course-card:hover .cc-icon {
  transform: rotate(-8deg) scale(1.05);
}

.cc-icon svg {
  width: 28px;
  height: 28px;
}

.cc-blue {
  border-color: rgba(30, 91, 255, 0.15);
}
.cc-blue .cc-icon {
  background: var(--blue-light);
  color: var(--blue);
}
.cc-blue::before {
  background: var(--blue);
}
.cc-blue .cc-sub {
  color: var(--blue);
}

.cc-green {
  border-color: rgba(16, 185, 129, 0.15);
}
.cc-green .cc-icon {
  background: var(--green-light);
  color: var(--green);
}
.cc-green::before {
  background: var(--green);
}
.cc-green .cc-sub {
  color: var(--green);
}

.cc-orange {
  border-color: rgba(255, 107, 26, 0.15);
}
.cc-orange .cc-icon {
  background: var(--orange-light);
  color: var(--orange);
}
.cc-orange::before {
  background: var(--orange);
}
.cc-orange .cc-sub {
  color: var(--orange);
}

.cc-purple {
  border-color: rgba(124, 58, 237, 0.15);
}
.cc-purple .cc-icon {
  background: var(--purple-light);
  color: var(--purple);
}
.cc-purple::before {
  background: var(--purple);
}
.cc-purple .cc-sub {
  color: var(--purple);
}

.course-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.course-card h3 sup {
  font-size: 0.65em;
}

.cc-sub {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.cc-desc {
  font-size: 0.92rem;
  color: var(--gray-5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cc-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}

.cc-blue .cc-link {
  color: var(--blue);
}
.cc-green .cc-link {
  color: var(--green);
}
.cc-orange .cc-link {
  color: var(--orange);
}
.cc-purple .cc-link {
  color: var(--purple);
}

.course-card:hover .cc-link {
  gap: 10px;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

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

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid var(--gray-2);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.wc-icon svg {
  width: 26px;
  height: 26px;
}

.wc-blue {
  border-color: rgba(30, 91, 255, 0.2);
}
.wc-blue .wc-icon {
  background: var(--blue-light);
  color: var(--blue);
}

.wc-green {
  border-color: rgba(16, 185, 129, 0.2);
}
.wc-green .wc-icon {
  background: var(--green-light);
  color: var(--green);
}

.wc-orange {
  border-color: rgba(255, 107, 26, 0.2);
}
.wc-orange .wc-icon {
  background: var(--orange-light);
  color: var(--orange);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray-5);
  line-height: 1.7;
}

/* ============================================
   MILESTONE / ACHIEVEMENTS
============================================ */
.milestone-sec {
  padding: 80px 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.milestone-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.m-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.m-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.m-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.m-plus {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--orange);
  vertical-align: top;
  margin-left: 4px;
}

.m-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-sec {
  padding: 100px 0;
  background: #fff;
}

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

.test-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.stars {
  font-size: 1rem;
  margin-bottom: 16px;
}

.test-card p {
  font-size: 0.95rem;
  color: var(--gray-6);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-2);
}

.ta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ta-blue {
  background: var(--grad-blue);
}
.ta-orange {
  background: var(--grad-orange);
}
.ta-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.test-author h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.test-author p {
  font-size: 0.82rem;
  color: var(--blue);
  margin: 0;
  font-weight: 600;
}

.test-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--gray-2);
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-ico {
  font-size: 1.8rem;
}

.ts-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1;
}

.ts-label {
  font-size: 0.85rem;
  color: var(--gray-5);
  margin-top: 2px;
}

/* ============================================
   FAQ
============================================ */
.faq-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-2);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(30, 91, 255, 0.1);
}

.faq-q {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  transition: all 0.3s;
}

.faq-num {
  background: var(--blue-light);
  color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-num {
  background: var(--blue);
  color: #fff;
}

.faq-text {
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-6);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 26px 24px 84px;
  font-size: 0.95rem;
  color: var(--gray-5);
  line-height: 1.8;
}

.faq-help {
  text-align: center;
  margin-top: 50px;
}

.faq-help p {
  font-size: 1.05rem;
  color: var(--gray-6);
  margin-bottom: 20px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-sec {
  padding: 80px 0;
  background: #fff;
}

.cta-box {
  background: var(--grad-dark);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cd-circle {
  position: absolute;
  border-radius: 50%;
}

.cd-circle.c1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.3), transparent 70%);
}

.cd-circle.c2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -120px;
  background: radial-gradient(circle, rgba(30, 91, 255, 0.3), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(255, 107, 26, 0.4);
}

.btn-white:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-3px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fb-logo img {
  height: 50px;
  border-radius: 10px;
}

.fb-logo span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-list li span {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}
.footer-bottom a:hover {
  color: var(--orange);
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: floatY 2s ease infinite;
}

.to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.4);
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .sec-title {
    font-size: 2.4rem;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto 50px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-right {
    height: 480px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .top-bar {
    font-size: 0.78rem;
  }
  .top-left {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    display: none;
  }

  .nav-right.show {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .nav-a {
    justify-content: space-between;
    padding: 12px 14px;
  }

  .nav-a.active {
    border-bottom: none;
    background: var(--blue-light);
    border-radius: 8px;
    padding: 12px 14px;
  }

  .drop {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0 0 8px 16px;
    padding: 6px;
    display: none;
  }

  .has-drop.open .drop {
    display: block;
  }

  .top-bar {
    display: none;
  }

  .hero {
    padding: 40px 0 60px;
  }
  .hero-welcome {
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-courses {
    font-size: 1rem;
  }
  .hc-item {
    font-size: 1rem;
  }

  .courses-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .courses-sec,
  .why-sec,
  .testimonial-sec,
  .faq-sec,
  .cta-sec,
  .milestone-sec {
    padding: 60px 0;
  }

  .sec-title {
    font-size: 2rem;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
  .cta-box {
    padding: 50px 28px;
    border-radius: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-card {
    padding: 12px 16px;
  }
  .float-top {
    left: -5px;
    top: 10px;
  }
  .float-bottom {
    right: -5px;
    bottom: 15px;
  }

  .faq-q {
    padding: 18px 20px;
    gap: 12px;
  }
  .faq-num {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  .faq-a p {
    padding: 0 20px 20px 66px;
  }

  .ach-card {
    flex: 0 0 240px;
    padding: 14px;
  }
  .ach-card img {
    width: 52px;
    height: 52px;
  }

  .test-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .sec-title {
    font-size: 1.7rem;
  }
  .cta-content h2 {
    font-size: 1.7rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline,
  .btn-white,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    height: 400px;
  }

  .brand-name {
    font-size: 1.05rem;
  }
  .brand-logo {
    height: 46px;
  }

  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .m-card::after {
    display: none;
  }
  .m-num,
  .m-plus {
    font-size: 2.8rem;
  }
}
/* ============================================
   CTA SECTION (Matching Brand Colors)
============================================ */
.cta-sec {
  padding: 80px 0;
  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #fff5eb 0%, #ffe4d1 50%, #e8efff 100%);
  border-radius: 32px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(255, 107, 26, 0.15);
}

/* Decorative shapes */
.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cd-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.cd-shape.s1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.25),
    transparent 70%
  );
}

.cd-shape.s2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(30, 91, 255, 0.2), transparent 70%);
}

.cd-shape.s3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15),
    transparent 70%
  );
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.2);
}

.cta-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.2);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}

.cta-highlight {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--gray-6);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON - Now using brand gradient orange */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--grad-orange);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(255, 107, 26, 0.35);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 107, 26, 0.5);
  filter: brightness(1.05);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--gray-3);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-cta-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.15);
}

.btn-ico {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.btn-cta-secondary .btn-ico {
  background: var(--orange-light);
}

/* Visual side */
.cta-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BIG CIRCLE - Now using brand gradient orange */
.cta-circle-big {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(255, 107, 26, 0.4);
  position: relative;
  animation: floatY 3s ease infinite;
}

.cta-circle-big::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px dashed rgba(255, 107, 26, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.cta-emoji {
  font-size: 6rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.cta-mini-card {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 3;
  animation: floatY 3s ease infinite;
}

.cta-mini-card span {
  font-size: 1.5rem;
}

.cta-mini-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1;
}

.cta-mini-card p {
  font-size: 0.75rem;
  color: var(--gray-5);
  margin: 2px 0 0;
}

.cmc-1 {
  top: 20px;
  right: -10px;
  animation-delay: 0.5s;
}

.cmc-2 {
  bottom: 20px;
  left: -10px;
  animation-delay: 1.5s;
}

/* Responsive */
@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 40px;
    text-align: center;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-content h2 {
    font-size: 2.4rem;
  }
  .cta-visual {
    height: 280px;
  }
  .cta-circle-big {
    width: 200px;
    height: 200px;
  }
  .cta-emoji {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 40px 20px;
    border-radius: 24px;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-actions {
    flex-direction: column;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .cta-mini-card {
    padding: 10px 14px;
  }
  .cta-mini-card strong {
    font-size: 1rem;
  }
}

/* ============================================
   PRELOADER (Zoom Animation)
============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

/* Zoom In / Zoom Out Animation */
.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: logoZoom 1.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(30, 91, 255, 0.2));
}

@keyframes logoZoom {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--grad-blue);
  border-radius: 4px;
  animation: loadBar 1.2s ease infinite;
}

@keyframes loadBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 2px;
  animation: textFade 1.6s ease-in-out infinite;
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================
   PRELOADER (Centered)
============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Zoom In / Zoom Out Animation */
.preloader-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  animation: logoZoom 1.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(30, 91, 255, 0.2));
}

@keyframes logoZoom {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--grad-blue);
  border-radius: 4px;
  animation: loadBar 1.2s ease infinite;
}

@keyframes loadBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto;
  animation: textFade 1.6s ease-in-out infinite;
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================
   ABOUT PAGE STYLES
============================================ */

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f0 0%, #ffe8d6 50%, #e8f0ff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ph-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(30, 91, 255, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.bc-sep {
  color: var(--gray-4);
}

.bc-current {
  color: var(--gray-6);
  font-weight: 600;
}

.ph-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.ph-subtitle {
  font-size: 1.1rem;
  color: var(--gray-5);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== OUR STORY SECTION ===== */
.story-sec {
  padding: 100px 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.story-visuals {
  position: relative;
  min-height: 540px;
}

.story-main-img {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-main-img:hover img {
  transform: scale(1.05);
}

.story-sub-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-exp-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--grad-orange);
  color: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(255, 107, 26, 0.4);
  z-index: 3;
}

.seb-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
}

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

.seb-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.seb-text span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-6);
  font-weight: 500;
}

.sf-ico {
  color: var(--green);
  font-size: 1.2rem;
}

/* ===== MISSION VISION VALUES ===== */
.mvv-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

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

.mvv-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-2);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.mvv-card.featured {
  transform: translateY(-20px);
  box-shadow: var(--shadow-lg);
}

.mvv-card.featured:hover {
  transform: translateY(-30px);
}

.mvv-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mvv-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.mvv-card:hover .mvv-icon {
  transform: rotate(-10deg) scale(1.1);
}

.mvv-blue .mvv-icon {
  background: var(--blue-light);
  color: var(--blue);
}
.mvv-orange .mvv-icon {
  background: var(--orange-light);
  color: var(--orange);
}
.mvv-green .mvv-icon {
  background: var(--green-light);
  color: var(--green);
}

.mvv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 400;
}

.mvv-card p {
  font-size: 0.98rem;
  color: var(--gray-5);
  line-height: 1.8;
}

.mvv-deco {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.08;
}

.mvv-blue .mvv-deco {
  background: var(--blue);
}
.mvv-orange .mvv-deco {
  background: var(--orange);
}
.mvv-green .mvv-deco {
  background: var(--green);
}

/* ===== TIMELINE ===== */
.timeline-sec {
  padding: 100px 0;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.tl-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--orange));
  transform: translateX(-50%);
  border-radius: 3px;
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
}

.tl-left {
  left: 0;
  text-align: right;
}

.tl-right {
  left: 50%;
  text-align: left;
}

.tl-dot {
  position: absolute;
  top: 50px;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s;
}

.tl-left .tl-dot {
  right: -11px;
}

.tl-right .tl-dot {
  left: -11px;
}

.tl-item:hover .tl-dot {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.3);
}

.tl-card {
  background: #fff;
  padding: 26px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-2);
  transition: all 0.3s;
  position: relative;
}

.tl-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.tl-year {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}

.tl-current .tl-year {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tl-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.tl-card p {
  font-size: 0.92rem;
  color: var(--gray-5);
  line-height: 1.7;
}

/* ===== FACULTY PAGE ===== */
.faculty-page-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

.faculty-page-sec .faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.faculty-page-sec .faculty-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid var(--gray-2);
  transition: all 0.3s;
}

.faculty-page-sec .faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-light);
}

.faculty-img {
  position: relative;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.faculty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.faculty-page-sec .faculty-card:hover .faculty-img img {
  transform: scale(1.1);
}

.faculty-social {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s;
}

.faculty-page-sec .faculty-card:hover .faculty-social {
  opacity: 1;
  transform: translate(-50%, 0);
}

.faculty-social a {
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faculty-social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.faculty-info {
  text-align: center;
  padding: 0 8px 12px;
}

.faculty-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.faculty-info p {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.fac-exp {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== ABOUT STATS ===== */
.about-stats-sec {
  padding: 100px 0;
  background: #fff;
}

.abs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.abs-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abs-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s;
  position: relative;
}

.abs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.abs-card:nth-child(odd) {
  transform: translateY(-20px);
}

.abs-card:nth-child(odd):hover {
  transform: translateY(-30px);
}

.abs-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

.abs-blue {
  border-color: rgba(30, 91, 255, 0.2);
}
.abs-blue .abs-icon {
  background: var(--blue-light);
  color: var(--blue);
}
.abs-blue .abs-num,
.abs-blue .abs-plus {
  color: var(--blue);
}

.abs-orange {
  border-color: rgba(255, 107, 26, 0.2);
}
.abs-orange .abs-icon {
  background: var(--orange-light);
  color: var(--orange);
}
.abs-orange .abs-num,
.abs-orange .abs-plus {
  color: var(--orange);
}

.abs-green {
  border-color: rgba(16, 185, 129, 0.2);
}
.abs-green .abs-icon {
  background: var(--green-light);
  color: var(--green);
}
.abs-green .abs-num,
.abs-green .abs-plus {
  color: var(--green);
}

.abs-purple {
  border-color: rgba(124, 58, 237, 0.2);
}
.abs-purple .abs-icon {
  background: var(--purple-light);
  color: var(--purple);
}
.abs-purple .abs-num,
.abs-purple .abs-plus {
  color: var(--purple);
}

.abs-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  display: inline-block;
}

.abs-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
}

.abs-card p {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--gray-5);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE - ABOUT PAGE
============================================ */
@media (max-width: 1100px) {
  .ph-title {
    font-size: 2.8rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .mvv-card.featured {
    transform: none;
  }
  .mvv-card.featured:hover {
    transform: translateY(-10px);
  }
  .faculty-page-sec .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abs-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }
  .ph-title {
    font-size: 2.2rem;
  }

  .story-sec,
  .mvv-sec,
  .timeline-sec,
  .faculty-page-sec,
  .about-stats-sec {
    padding: 60px 0;
  }

  .story-main-img {
    height: 360px;
  }
  .story-sub-img {
    width: 160px;
    height: 160px;
    bottom: -20px;
    right: 0;
  }
  .story-exp-badge {
    padding: 18px 22px;
  }
  .seb-num {
    font-size: 2.4rem;
  }

  .story-features {
    grid-template-columns: 1fr;
  }

  /* Timeline single column on mobile */
  .tl-line {
    left: 20px;
  }
  .tl-item,
  .tl-left,
  .tl-right {
    width: 100%;
    left: 0;
    padding: 20px 0 20px 50px;
    text-align: left;
  }
  .tl-left .tl-dot,
  .tl-right .tl-dot {
    left: 9px;
    right: auto;
  }

  .faculty-page-sec .faculty-grid {
    grid-template-columns: 1fr;
  }
  .abs-grid-cards {
    grid-template-columns: 1fr;
  }
  .abs-card:nth-child(odd) {
    transform: none;
  }
  .abs-card:nth-child(odd):hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .ph-title {
    font-size: 1.8rem;
  }
  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .mvv-card {
    padding: 30px 24px;
  }
  .mvv-card h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   ABOUT STATS SECTION (Simple & Clean)
============================================ */
.about-stats-sec {
  padding: 100px 0;
  background: #fff;
}

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

.abs-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-2);
  transition: all 0.3s ease;
}

.abs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.abs-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.abs-ico-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.abs-ico-orange {
  background: var(--orange-light);
  color: var(--orange);
}
.abs-ico-green {
  background: var(--green-light);
  color: var(--green);
}
.abs-ico-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.abs-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.abs-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--dark);
}

.abs-plus {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}

.abs-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.abs-card p {
  font-size: 0.88rem;
  color: var(--gray-5);
}

/* Responsive */
@media (max-width: 1024px) {
  .abs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .abs-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-sec {
    padding: 70px 0;
  }
  .abs-num {
    font-size: 2.6rem;
  }
}

/* ============================================
   RESULTS PAGE STYLES
============================================ */

/* ===== QUICK STATS ===== */
.result-stats {
  padding: 60px 0;
  background: #fff;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rs-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s;
}

.rs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.rs-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rs-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.rs-orange {
  background: var(--orange-light);
  color: var(--orange);
}
.rs-green {
  background: var(--green-light);
  color: var(--green);
}
.rs-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.rs-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}

.rs-num span {
  font-size: 1.4rem;
  color: var(--orange);
}

.rs-info p {
  font-size: 0.88rem;
  color: var(--gray-5);
  margin-top: 4px;
}

/* ===== ACHIEVERS SECTION ===== */
.achievers-sec {
  padding: 80px 0;
  background: var(--grad-soft);
}

/* Filter Buttons */
.result-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.rf-btn {
  padding: 10px 22px;
  background: #fff;
  color: var(--gray-6);
  border: 1px solid var(--gray-3);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.rf-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.rf-btn.active {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(30, 91, 255, 0.3);
}

/* Achievers Grid */
.achievers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achiever-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-2);
  position: relative;
}

.achiever-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.achiever-card.hide {
  display: none;
}

.ach-rank {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 6px 15px rgba(255, 107, 26, 0.4);
}

.ach-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.ach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.achiever-card:hover .ach-img img {
  transform: scale(1.08);
}

.ach-exam-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
}

.ach-blue {
  background: var(--blue);
}
.ach-orange {
  background: var(--orange);
}
.ach-green {
  background: var(--green);
}
.ach-purple {
  background: var(--purple);
}

.ach-details {
  padding: 22px;
}

.ach-details h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.ach-score {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.as-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-6);
}

.as-item i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

/* ===== YEAR-WISE RESULTS ===== */
.year-results-sec {
  padding: 100px 0;
  background: #fff;
}

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

.year-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: all 0.3s;
  text-align: center;
}

.year-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.yc-year {
  font-family: var(--font-serif);
  font-size: 3rem;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
}

.yc-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
}

.yc-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1;
}

.yc-stat span {
  font-size: 0.78rem;
  color: var(--gray-5);
  margin-top: 4px;
  display: block;
}

.yc-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--grad-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 8px 18px rgba(255, 107, 26, 0.4);
}

/* ===== SUCCESS STORY ===== */
.success-story-sec {
  padding: 100px 0;
  background: var(--grad-soft);
}

.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.ss-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 540px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.ss-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-rank-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 20px 26px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.ssr-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.ssr-text {
  font-size: 0.85rem;
  color: var(--gray-6);
  font-weight: 600;
}

.ss-quote {
  font-size: 1.1rem;
  color: var(--gray-6);
  line-height: 1.8;
  margin: 24px 0;
  font-style: italic;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
}

.ss-author {
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}

.ss-author h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ss-author p {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
}

.ss-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .rs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ss-img-wrap {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .achievers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-filter {
    gap: 6px;
  }
  .rf-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  .ss-img-wrap {
    height: 380px;
  }
  .achievers-sec,
  .year-results-sec,
  .success-story-sec {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .rs-grid {
    grid-template-columns: 1fr;
  }
  .achievers-grid {
    grid-template-columns: 1fr;
  }
  .year-grid {
    grid-template-columns: 1fr;
  }
  .ach-img {
    height: 320px;
  }
}

/* ============================================
   RESULTS PAGE STYLES (Expanded)
============================================ */

/* ===== QUICK STATS (BIGGER) ===== */
.result-stats {
  padding: 100px 0 80px;
  background: #fff;
  position: relative;
}

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

.rs-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.rs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.rs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.rs-card:hover::before {
  transform: scaleX(1);
}

.rs-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.rs-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.rs-orange {
  background: var(--orange-light);
  color: var(--orange);
}
.rs-green {
  background: var(--green-light);
  color: var(--green);
}
.rs-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.rs-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--dark);
  line-height: 1;
}

.rs-num span {
  font-size: 1.8rem;
  color: var(--orange);
}

.rs-info p {
  font-size: 0.95rem;
  color: var(--gray-5);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== ACHIEVERS SECTION (BIGGER) ===== */
.achievers-sec {
  padding: 120px 0;
  background: var(--grad-soft);
}

/* Filter Buttons */
.result-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: #fff;
  padding: 14px;
  border-radius: 70px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-2);
}

.rf-btn {
  padding: 12px 26px;
  background: transparent;
  color: var(--gray-6);
  border: none;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.rf-btn:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.rf-btn.active {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 91, 255, 0.3);
}

/* Achievers Grid */
.achievers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.achiever-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-2);
  position: relative;
}

.achiever-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.achiever-card.hide {
  display: none;
}

.ach-rank {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad-orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(255, 107, 26, 0.45);
}

.ach-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.ach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.achiever-card:hover .ach-img img {
  transform: scale(1.1);
}

.ach-exam-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.ach-blue {
  background: var(--blue);
}
.ach-orange {
  background: var(--orange);
}
.ach-green {
  background: var(--green);
}
.ach-purple {
  background: var(--purple);
}

.ach-details {
  padding: 26px;
}

.ach-details h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.ach-score {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.as-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-6);
  font-weight: 500;
}

.as-item i {
  color: var(--orange);
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

/* ===== SUBJECT-WISE TOPPERS (NEW) ===== */
.subject-toppers-sec {
  padding: 120px 0;
  background: #fff;
}

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

.subject-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.subject-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.subject-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-2);
  margin-bottom: 20px;
}

.subject-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.subject-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.subject-title p {
  font-size: 0.82rem;
  color: var(--gray-5);
}

.toppers-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topper-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s;
}

.topper-row:hover {
  background: var(--gray-1);
}

.tr-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tr-info {
  flex: 1;
}

.tr-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}

.tr-info span {
  font-size: 0.8rem;
  color: var(--gray-5);
}

.tr-score {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 700;
}

/* ===== YEAR-WISE RESULTS (BIGGER) ===== */
.year-results-sec {
  padding: 120px 0;
  background: var(--grad-soft);
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.year-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
  text-align: center;
}

.year-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.yc-year {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 28px;
}

.yc-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 24px;
  border-top: 1px solid var(--gray-2);
}

.yc-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--dark);
  line-height: 1;
}

.yc-stat span {
  font-size: 0.82rem;
  color: var(--gray-5);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

.yc-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--grad-orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 22px rgba(255, 107, 26, 0.4);
}

/* ===== VIDEO TESTIMONIALS (NEW) ===== */
.video-test-sec {
  padding: 120px 0;
  background: #fff;
}

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

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-2);
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.video-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.08);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  z-index: 3;
  transition: all 0.3s;
  padding-left: 6px;
}

.video-card:hover .video-play-btn {
  background: var(--orange);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.video-info {
  padding: 24px;
}

.video-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-2);
}

.video-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vma-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.vma-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
}

.vma-info span {
  font-size: 0.75rem;
  color: var(--gray-5);
}

.video-rank {
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== SUCCESS STORY (BIGGER) ===== */
.success-story-sec {
  padding: 120px 0;
  background: var(--grad-soft);
}

.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ss-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 620px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.ss-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-rank-badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.ssr-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.ssr-text {
  font-size: 0.9rem;
  color: var(--gray-6);
  font-weight: 700;
}

.ss-quote {
  font-size: 1.15rem;
  color: var(--gray-6);
  line-height: 1.9;
  margin: 28px 0;
  font-style: italic;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
}

.ss-author {
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}

.ss-author h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.ss-author p {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 600;
}

.ss-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .rs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subject-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ss-img-wrap {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .result-stats,
  .achievers-sec,
  .year-results-sec,
  .subject-toppers-sec,
  .video-test-sec,
  .success-story-sec {
    padding: 70px 0;
  }
  .achievers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .result-filter {
    padding: 8px;
    gap: 4px;
  }
  .rf-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
  .ss-img-wrap {
    height: 420px;
  }
  .yc-year {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .rs-grid {
    grid-template-columns: 1fr;
  }
  .achievers-grid {
    grid-template-columns: 1fr;
  }
  .year-grid {
    grid-template-columns: 1fr;
  }
  .ach-img {
    height: 360px;
  }
  .ss-img-wrap {
    height: 360px;
  }
}

/* ===== SUBJECT-WISE TOPPERS (NEW) ===== */
.subject-toppers-sec {
  padding: 120px 0;
  background: #fff;
}

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

.subject-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.subject-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.subject-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-2);
  margin-bottom: 20px;
}

.subject-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.subject-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.subject-title p {
  font-size: 0.82rem;
  color: var(--gray-5);
}

.toppers-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topper-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s;
}

.topper-row:hover {
  background: var(--gray-1);
}

.tr-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tr-info {
  flex: 1;
}

.tr-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}

.tr-info span {
  font-size: 0.8rem;
  color: var(--gray-5);
}

.tr-score {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 700;
}

/* ============================================
   CONTACT PAGE STYLES
============================================ */

/* ===== CONTACT INFO CARDS ===== */
.contact-info-sec {
  padding: 80px 0 40px;
  background: #fff;
}

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

.ci-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ci-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.ci-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.ci-card:hover::before {
  transform: scaleX(1);
}

.ci-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 22px;
  transition: transform 0.3s;
}

.ci-card:hover .ci-icon {
  transform: rotate(-10deg) scale(1.1);
}

.ci-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.ci-orange {
  background: var(--orange-light);
  color: var(--orange);
}
.ci-green {
  background: var(--green-light);
  color: var(--green);
}
.ci-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.ci-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.ci-card p {
  font-size: 0.9rem;
  color: var(--gray-5);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ci-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.3s;
}

.ci-card:nth-child(2) .ci-link {
  color: var(--orange);
}
.ci-card:nth-child(3) .ci-link {
  color: var(--green);
}
.ci-card:nth-child(4) .ci-link {
  color: var(--purple);
}

.ci-card:hover .ci-link {
  gap: 10px;
}

/* ===== CONTACT FORM + MAP ===== */
.contact-form-sec {
  padding: 60px 0 100px;
  background: var(--grad-soft);
}

.cfs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.cfs-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 50px 44px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--gray-2);
}

.cfs-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 14px 0 14px;
}

.cfs-desc {
  font-size: 1rem;
  color: var(--gray-5);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form label i {
  color: var(--blue);
  width: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-3);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: all 0.3s;
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 91, 255, 0.08);
}

.contact-form textarea {
  font-family: var(--font);
  line-height: 1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-4);
}

.cf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.cf-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.cf-consent label {
  font-size: 0.85rem;
  color: var(--gray-5);
  font-weight: 500;
  cursor: pointer;
  line-height: 1.6;
}

.cf-submit {
  padding: 16px 30px;
  background: var(--grad-blue);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.3);
  margin-top: 6px;
}

.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30, 91, 255, 0.45);
  filter: brightness(1.05);
}

.cf-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

/* ===== MAP SIDE ===== */
.cfs-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--gray-2);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 30px;
  border: 1px solid var(--gray-2);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.mic-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-2);
  margin-bottom: 22px;
}

.mic-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.mic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mic-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.mic-header p {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

.mic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.mic-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-6);
  line-height: 1.6;
}

.mic-list li i {
  color: var(--orange);
  font-size: 1rem;
  width: 18px;
  text-align: center;
  margin-top: 4px;
  flex-shrink: 0;
}

.mic-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s;
  color: #fff;
}

.mic-blue {
  background: var(--blue);
}

.mic-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(30, 91, 255, 0.35);
}

.mic-orange {
  background: var(--orange);
}

.mic-orange:hover {
  background: #e55e15;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 107, 26, 0.35);
}

/* ===== RESPONSIVE - CONTACT PAGE ===== */
@media (max-width: 1100px) {
  .ci-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cfs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cfs-map-wrap {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-info-sec {
    padding: 60px 0 30px;
  }
  .contact-form-sec {
    padding: 40px 0 60px;
  }
  .cfs-form-wrap {
    padding: 36px 28px;
  }
  .cfs-title {
    font-size: 1.9rem;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .mic-actions {
    grid-template-columns: 1fr;
  }
  .map-card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .ci-grid {
    grid-template-columns: 1fr;
  }
  .cfs-form-wrap {
    padding: 28px 22px;
  }
  .cfs-title {
    font-size: 1.6rem;
  }
  .map-info-card {
    padding: 24px 22px;
  }
  .mic-header {
    gap: 12px;
  }
  .mic-icon {
    width: 48px;
    height: 48px;
  }
}
/* ============================================
   FOOTER LINKS — ALWAYS VISIBLE CHEVRON
============================================ */
.footer-col ul li a {
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.footer-col ul li a::before {
  content: "\f105"; /* chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--orange);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-col ul li a:hover::before {
  background: var(--orange);
  color: #fff;
  transform: rotate(360deg);
}

/* ============================================
   CTA SECTION — HIDE VISUAL & CENTER CONTENT
============================================ */
.cta-box {
  grid-template-columns: 1fr !important;
  text-align: center;
  padding: 70px 40px;
}

.cta-visual {
  display: none !important;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content p {
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  justify-content: center;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .cta-box {
    padding: 50px 24px;
  }
}


.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #ddd;
  line-height: 1.6;
}

.footer-contact-icon {
  min-width: 18px;
  color: #ff6b1a; /* change to your theme color */
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact span:last-child {
  flex: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #aaa;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-bottom a {
  color:#ff6b1a; /* your theme color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hamburger icon toggle */
.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.active .open-icon {
  display: none;
}

.menu-toggle.active .close-icon {
  display: inline-block;
  color: black; /* red cross */
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #0a2540;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}


/* ============================================
   GOOGLE REVIEWS SECTION
============================================ */
.google-reviews-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-sec::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(66,133,244,0.08), transparent);
  border-radius: 50%;
}

.google-reviews-sec::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251,188,5,0.08), transparent);
  border-radius: 50%;
}

/* Google Rating Badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 2px solid #e8eaed;
  padding: 14px 24px;
  border-radius: 50px;
  margin-top: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.grb-left {
  display: flex;
  align-items: center;
}

.grb-right {
  text-align: left;
}

.grb-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.grb-rating strong {
  font-size: 24px;
  color: #202124;
  font-weight: 700;
}

.grb-stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.grb-right p {
  font-size: 12px;
  color: #5f6368;
  margin: 2px 0 0;
}

/* Reviews Grid */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* Review Card */
.gr-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #4285F4 0%,
    #EA4335 33%,
    #FBBC05 66%,
    #34A853 100%
  );
}

.gr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gr-card.gr-featured {
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
  border-color: #FBBC05;
}

/* Card Header */
.gr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 8px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.gr-avatar.gr-blue { background: linear-gradient(135deg, #4285F4, #1a73e8); }
.gr-avatar.gr-orange { background: linear-gradient(135deg, #FF6B35, #F7931E); }
.gr-avatar.gr-green { background: linear-gradient(135deg, #34A853, #0f9d58); }

.gr-user {
  flex: 1;
  min-width: 0;
}

.gr-user h4 {
  font-size: 15px;
  color: #202124;
  margin: 0 0 4px;
  font-weight: 600;
}

.gr-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5f6368;
  flex-wrap: wrap;
}

.gr-meta i {
  color: #FBBC05;
  font-size: 10px;
}

.gr-dot {
  color: #dadce0;
}

.gr-google-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Stars */
.gr-stars {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Review Text */
.gr-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3c4043;
  margin: 0;
}

.gr-text strong {
  color: #202124;
  font-weight: 600;
}

/* CTA Button */
.gr-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #202124;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #e8eaed;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #4285F4;
}

.btn-google-review i {
  font-size: 12px;
  color: #4285F4;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .gr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gr-card.gr-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .google-reviews-sec {
    padding: 60px 0;
  }

  .gr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gr-card.gr-featured {
    grid-column: span 1;
  }

  .google-rating-badge {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
  }

  .grb-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gr-card {
    padding: 20px;
  }

  .gr-user h4 {
    font-size: 14px;
  }

  .gr-text {
    font-size: 13px;
  }
}



/* ── STATS SECTION ── */
.about-stats-sec {
  padding: 80px 0;
  background: #f8faff;
}

.abs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.abs-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.abs-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.abs-ico-blue   { background: #e8f0fe; color: #2563eb; }
.abs-ico-orange { background: #fff3e0; color: #f97316; }
.abs-ico-green  { background: #e8f5e9; color: #16a34a; }
.abs-ico-purple { background: #f3e8ff; color: #9333ea; }

.abs-num-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.abs-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.abs-plus {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.abs-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.abs-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .abs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .abs-grid {
    grid-template-columns: 1fr;
  }

  .abs-num {
    font-size: 2.2rem;
  }
}


/* ============================================
   VIDEO SECTION — LOCAL VIDEOS + INSTAGRAM
============================================ */

/* Video Thumb with actual video */
.video-thumb {
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb .vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #2563eb;
  color: #fff;
}

.video-play-btn.playing {
  opacity: 0;
  pointer-events: none;
}

.video-thumb:hover .video-play-btn.playing {
  opacity: 1;
  pointer-events: auto;
}

/* Mute Button */
.video-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb:hover .video-mute-btn {
  opacity: 1;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Duration / Label Badge */
.video-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Video Info */
.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Meta Author */
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vma-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vma-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vma-info {
  display: flex;
  flex-direction: column;
}

.vma-info strong {
  font-size: 0.85rem;
  color: #1e293b;
}

.vma-info span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Instagram Link Icon */
.video-insta-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-insta-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

/* ── INSTAGRAM CTA CARD ── */
.video-insta-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.insta-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-cta-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(131, 58, 180, 0.4);
}

/* Glow Effects */
.insta-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.insta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.insta-glow.g1 {
  width: 200px;
  height: 200px;
  background: #fcb045;
  top: -40px;
  right: -40px;
}

.insta-glow.g2 {
  width: 150px;
  height: 150px;
  background: #833ab4;
  bottom: -30px;
  left: -30px;
}

.insta-cta-content {
  position: relative;
  z-index: 2;
}

.insta-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.insta-cta-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.insta-cta-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #fff;
}

.insta-cta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.insta-cta-inner:hover .insta-cta-handle {
  background: rgba(255, 255, 255, 0.35);
}

/* Instagram Stats */
.insta-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.is-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.is-item strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.is-item span {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── BOTTOM INSTAGRAM BANNER ── */
.insta-bottom-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, #fef3f2, #fef9ef, #f3e8ff);
  border: 1px solid #fecdd3;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ibb-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ibb-left > i {
  font-size: 2rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ibb-left strong {
  font-size: 1rem;
  color: #1e293b;
  display: block;
}

.ibb-left p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2px 0 0;
}

.ibb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.ibb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.35);
}

.ibb-btn .fa-external-link-alt {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .insta-cta-inner {
    min-height: 320px;
    padding: 30px 20px;
  }

  .insta-stats {
    gap: 16px;
  }

  .insta-bottom-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .ibb-left {
    flex-direction: column;
    text-align: center;
  }

  .video-play-btn {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

/* ============================================
   VIDEO LIGHTBOX MODAL
============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Dark Overlay */
.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

/* Video Container */
.vm-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  transform: scale(0.8) translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .vm-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.vm-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.vm-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Video Wrapper */
.vm-video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
}

/* The Video Player */
.vm-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* Custom video controls styling */
.vm-player::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* ── VIDEO CARD THUMB STYLES ── */
.video-thumb {
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.video-thumb .vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* clicks go to play button */
}

/* Play Button on Card */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: #2563eb;
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

/* Play icon animation */
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

/* Duration / Label Badge */
.video-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Hover effect on card */
.video-card:hover .video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .vm-container {
    width: 95%;
  }

  .vm-close {
    top: -46px;
    right: 4px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .vm-video-wrap {
    border-radius: 12px;
    aspect-ratio: auto;
  }

  .vm-player {
    max-height: 70vh;
  }

  .video-play-btn {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .vm-container {
    width: 98%;
  }

  .vm-close {
    top: -42px;
    width: 34px;
    height: 34px;
  }
}

/* ============================================
   PLAY BUTTON — PROPER CENTER (ALL SCREENS)
============================================ */

/* Force perfect center on all screen sizes */
.video-play-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

/* Keep hover effect working with !important */
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15) !important;
}

/* ── MOBILE FIX ── */
@media (max-width: 768px) {
  .video-play-btn {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.1rem !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
  }
}

@media (max-width: 480px) {
  .video-play-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 1rem !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* Fix video-thumb to ensure correct positioning context */
.video-thumb {
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
  width: 100% !important;
}

/* Fix pulse animation not to break center */
.video-play-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: calc(100% + 12px) !important;
  height: calc(100% + 12px) !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  animation: playPulse 2s ease-in-out infinite !important;
  pointer-events: none !important;
}

@keyframes playPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.5;
  }
}


/* ===== OUR STORY SECTION ===== */
.story-sec {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT: VISUALS ===== */
.story-visuals {
  position: relative;
  padding: 20px 40px 40px 20px;
  min-height: 520px;
}

/* Main Image */
.story-main-img {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.story-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Sub Image (floating bottom-right) */
.story-sub-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.story-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience Badge (floating bottom-left) */
.story-exp-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  color: #fff;
  padding: 18px 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.35);
  z-index: 4;
}

.seb-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.seb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.seb-text strong {
  font-size: 14px;
  font-weight: 700;
}

.seb-text span {
  font-size: 13px;
  opacity: 0.95;
}

/* ===== RIGHT: CONTENT ===== */
.story-content {
  padding-left: 20px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  color: #4f46e5;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.grad-text {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 16px;
}

.sec-desc strong {
  color: #0f172a;
  font-weight: 700;
}

/* Features Grid */
.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 28px 0;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
  font-weight: 500;
}

.sf-ico {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-visuals {
    max-width: 550px;
    margin: 0 auto;
    padding: 20px 30px 30px 20px;
  }

  .story-content {
    padding-left: 0;
  }

  .sec-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .story-sec {
    padding: 60px 0;
  }

  .story-main-img {
    height: 420px;
  }

  .story-sub-img {
    width: 150px;
    height: 170px;
    bottom: -10px;
    right: -10px;
    border-width: 4px;
  }

  .story-exp-badge {
    left: -10px;
    padding: 14px 20px;
  }

  .seb-num {
    font-size: 32px;
  }

  .sec-title {
    font-size: 28px;
  }

  .story-features {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   ADMISSION MODAL / POPUP
============================================ */
.admission-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.admission-modal.active {
  display: flex;
  opacity: 1;
}

.admission-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.admission-modal-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 35px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.admission-modal.active .admission-modal-box {
  transform: scale(1) translateY(0);
}

@keyframes modalPop {
  from {
    transform: scale(0.85) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.admission-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.admission-close:hover {
  background: #ef4444;
  color: #fff;
  transform: rotate(90deg) scale(1.05);
}

/* Header */
.admission-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.admission-modal-header .sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.admission-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.2;
}

.admission-modal-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Reuse the same form styles from your contact form */
.admission-form .form-group {
  margin-bottom: 15px;
}

.admission-form .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.admission-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.admission-form label i {
  color: #f97316;
}

.admission-form input,
.admission-form select,
.admission-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  transition: all 0.2s ease;
  outline: none;
}

.admission-form input:focus,
.admission-form select:focus,
.admission-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.admission-form textarea {
  resize: vertical;
  min-height: 80px;
}

.admission-form .cf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  font-size: 13px;
  color: #64748b;
}

.admission-form .cf-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #f97316;
  flex-shrink: 0;
}

.admission-form .cf-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.admission-form .cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.4);
}

.admission-form .cf-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin: 12px 0 0;
}

.admission-form .cf-note i {
  color: #10b981;
  margin-right: 4px;
}

/* Body scroll lock when modal open */
body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 600px) {
  .admission-modal-box {
    padding: 30px 20px 20px;
    border-radius: 16px;
    max-height: 95vh;
  }

  .admission-modal-title {
    font-size: 22px;
  }

  .admission-form .cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .admission-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }
}

/* Make the hero-badge look like a button */
button.hero-badge {
  border: none;
  cursor: pointer;
  font-family: inherit;
}


