/* =====================================================
   CITY WORLD SCHOOL - COMPLETE STYLESHEET
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES
   ===================================================== */
:root {
  --primary-blue: #1f5f9b;
  --primary-blue-dark: #163f6b;
  --primary-blue-light: #5fb3d4;
  --light-blue: #8ec6df;
  --light-blue-pale: #d6ecf5;
  --yellow: #f4e70b;
  --yellow-dark: #d4c800;
  --green: #8cc63f;
  --green-dark: #7ac142;
  --pink: #ff6b6b;
  --pink-dark: #ff4757;
  --orange: #f28c38;
  --purple: #4b4fa3;
  --shadow-colored: 0 10px 40px rgba(31, 95, 155, 0.3);
  --gradient-hero: linear-gradient(180deg, #e6f0f8 0%, #fff 100%);
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--light-blue) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--orange) 100%
  );
  --gradient-success: linear-gradient(135deg, var(--green) 0%, #38d9a9 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
  --font-display: "Playfair Display", serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-preloader: 9999;
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --header-height: 80px;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}
main {
  display: block;
  margin-top: 0;
  padding-top: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
::selection {
  background: var(--primary-blue);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-dark);
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}
p {
  margin-bottom: var(--space-4);
}
.text-primary {
  color: var(--primary-blue);
}
.text-accent {
  color: var(--orange);
}
.text-yellow {
  color: var(--yellow);
}

/* =====================================================
   4. UTILITY CLASSES
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label.center {
  justify-content: center;
}
.label-line {
  width: 40px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}
.section-label span:not(.label-line) {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Head */
.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtext {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-colored);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(46, 111, 149, 0.4);
}
.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--yellow);
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244, 231, 11, 0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 231, 11, 0.5);
  background: #fff;
  color: var(--primary-blue);
}
.btn-hero-primary i {
  font-size: 13px;
  transition: var(--transition);
}
.btn-hero-primary:hover i {
  transform: translateX(4px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-hero-secondary i {
  font-size: 16px;
}

/* =====================================================
   5. PRELOADER
   ===================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--light-blue-pale) 0%,
    var(--white) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-preloader);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
  position: relative;
}
.loader-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  animation: loaderBounce 1.4s ease-in-out infinite both;
}
.loader-circle:nth-child(1) {
  background: var(--primary-blue);
  animation-delay: -0.32s;
}
.loader-circle:nth-child(2) {
  background: var(--yellow);
  animation-delay: -0.16s;
}
.loader-circle:nth-child(3) {
  background: var(--green);
}
.loader-star {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow);
  font-size: 2rem;
  animation: starSpin 2s linear infinite;
}
.loader-text {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary-blue);
  animation: pulse 1.5s ease-in-out infinite;
}

/* =====================================================
   8. HERO SECTION
   ===================================================== */

@media (max-width: 992px) {
  .hero-slide-bg img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-slide-bg img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hero-slide-bg img {
    width: 100%;

    height: auto;

    object-fit: contain;

    display: block;
  }
}
.hero {
  position: relative;
  width: 100%;
  margin-top: 0;
  overflow: visible;
}

/* REMOVE GAP */
.header.scrolled ~ main .hero {
  margin-top: 0;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  position: relative;
}

/* SWIPER */
.hero-swiper {
  width: 100%;
  height: auto;
}

/* SLIDE */
.hero-slide {
  width: 100%;
  position: relative;
}

/* IMAGE */
.hero-slide-bg img {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: cover;
}

/* REMOVE OVERLAY */
.hero-slide-overlay {
  display: none;
}

/* HERO CONTENT */
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* NAVIGATION BUTTONS */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-nav i {
  font-size: 18px;
  color: #234a9f;
}

.hero-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* =====================================================
   STATS BAR
   ===================================================== */

.hero-stats-bar {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 50;
  padding: 0 20px;
}

.stats-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 40px;
  gap: 40px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.stat-icon {
  width: 55px;
  height: 55px;
  background: #d6ecf5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 22px;
  color: #1f5f9b;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #1f5f9b;
  line-height: 1;
}

.stat-number::after {
  content: "+";
}

.stat-text {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.stat-divider-v {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
}

/* =====================================================
   ABOUT SECTION FIX
   ===================================================== */

.about-section {
  padding-top: 140px !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .hero-stats-bar {
    bottom: -120px;
  }

  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 25px;
  }

  .stat-box {
    flex: 0 0 calc(50% - 20px);
  }

  .stat-divider-v {
    display: none;
  }

  .about-section {
    padding-top: 180px !important;
  }
}

@media (max-width: 768px) {
  .hero-slide-bg img {
    min-height: 260px;
    object-fit: cover;
  }

  .hero-nav {
    width: 45px;
    height: 45px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-stats-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 20px;
  }

  .stats-bar-inner {
    padding: 20px;
    border-radius: 20px;
  }

  .stat-box {
    flex: 0 0 100%;
  }

  .about-section {
    padding-top: 60px !important;
  }
}

@media (max-width: 576px) {
  .stats-bar-inner {
    padding: 18px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
  }

  .stat-icon i {
    font-size: 18px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-text {
    font-size: 11px;
  }
}

/* SECOND SLIDER TEXT FIX */

.hero-text-content {
  max-width: 900px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;

  max-width: 1000px;
}

.hero-title br {
  display: none;
}

/* CENTER HERO CONTENT */

.hero-slide-content {
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-text-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-btns {
  justify-content: center;
}

.hero-tag {
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  margin-left: auto;
  margin-right: auto;
}

/* HERO TAGLINE */

/* HERO SUB TAGLINE */

.hero-subtag {
  margin-top: 18px;

  font-size: 22px;

  font-weight: 500;

  color: #ffffff;

  line-height: 1.5;

  text-align: center;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* HERO TITLE */

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 1.15;

  color: #ffffff;

  text-align: center;

  margin-bottom: 10px;
}

/* HERO TAG */

.hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 25px;

  padding: 12px 24px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50px;

  color: #ffffff;

  backdrop-filter: blur(10px);
}

.hero-tag span {
  color: #ffffff;
}

.hero-text-content {
  text-align: center;

  max-width: 1000px;

  margin: 0 auto;
}

.hero-title {
  color: #ffffff !important;
}

.hero-title .hero-highlight {
  color: #f4e70b !important;
}

.hero-desc {
  color: #ffffff !important;
}

.hero-tag span {
  color: #ffffff !important;
}
/* Overlay only for slide 2 and 3 */

.hero-slide.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: relative;
}

/* HERO TAGLINE STYLING */

/* =========================================
   COMMON HERO TAGLINE STYLING
========================================= */

.hero-top-line,
.hero-bottom-line {
  display: inline-block;

  padding: 12px 28px;

  margin-bottom: 24px;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50px;

  color: #ffffff !important;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.5;

  backdrop-filter: blur(10px);

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* TITLE */

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 1.15;

  color: #ffffff !important;

  text-align: center;

  margin-bottom: 20px;
}

.hero-highlight {
  color: #f4e70b !important;
}

/* CENTER */

.hero-text-content {
  text-align: center;

  max-width: 1000px;

  margin: 0 auto;
}

.hero-btns {
  justify-content: center;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero-top-line,
  .hero-bottom-line {
    font-size: 13px;

    padding: 8px 18px;

    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}
.hero-text-content {
  text-align: center;
}

.hero-btns {
  justify-content: center;
}

.hero-title {
  color: #ffffff !important;
}

.hero-highlight {
  color: #f4e70b !important;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero-top-line {
    font-size: 13px;
    padding: 8px 18px;
  }

  .hero-bottom-line {
    font-size: 16px;
  }
}
/* =====================================================
   9. ABOUT SECTION
   ===================================================== */

.about-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* =========================================
   ABOUT IMAGES PERFECT LAYOUT
========================================= */

.cloud-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.about-section .cloud-svg {
  margin-top: 25px;
}
.about-images {
  position: relative;

  min-height: 620px;

  width: 100%;
}

/* MAIN BIG IMAGE */

.about-img-main {
  position: relative;

  width: 72%;

  border-radius: 30px;

  overflow: hidden;

  z-index: 2;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
  width: 100%;

  height: 470px;

  object-fit: cover;

  display: block;
}

/* TOP SMALL IMAGE */

.about-img-accent {
  position: absolute;

  top: -25px;

  right: 40px;

  width: 160px;

  border-radius: 22px;

  overflow: hidden;

  border: 5px solid #fff;

  z-index: 4;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-img-accent img {
  width: 100%;

  height: 160px;

  object-fit: cover;

  display: block;
}

/* BOTTOM IMAGE */

.about-img-secondary {
  position: absolute;

  bottom: 10px;

  right: -10px;

  width: 290px;

  border-radius: 28px;

  overflow: hidden;

  border: 6px solid #fff;

  z-index: 5;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.about-img-secondary img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  display: block;
}

/* DOTS */

.about-deco-dots {
  position: absolute;

  left: -35px;

  top: 90px;

  width: 90px;

  height: 90px;

  background-image: radial-gradient(#8ec6df 2px, transparent 2px);

  background-size: 12px 12px;

  opacity: 0.5;
}

/* CIRCLE */

.about-deco-circle {
  position: absolute;

  left: 40px;

  bottom: -25px;

  width: 110px;

  height: 110px;

  border: 4px dashed #f4e70b;

  border-radius: 50%;

  opacity: 0.45;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .about-images {
    max-width: 650px;

    margin: 0 auto 60px;
  }

  .about-img-main {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .about-images {
    min-height: 500px;
  }

  .about-img-main {
    width: 85%;
  }

  .about-img-main img {
    height: 340px;
  }

  .about-img-accent {
    width: 120px;

    right: 10px;
  }

  .about-img-accent img {
    height: 120px;
  }

  .about-img-secondary {
    width: 220px;

    right: 0;
  }

  .about-img-secondary img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .about-images {
    min-height: 420px;
  }

  .about-img-main img {
    height: 280px;
  }

  .about-img-secondary {
    width: 180px;
  }

  .about-img-secondary img {
    height: 150px;
  }

  .about-img-accent {
    width: 90px;
  }

  .about-img-accent img {
    height: 90px;
  }
}
.about-deco-dots {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.2;
}
.about-deco-circle {
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 4px dashed var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  animation: spin 20s linear infinite;
}
.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-800);
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.about-feat-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon i {
  font-size: 20px;
}
.about-feat-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.about-feat-card p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* =====================================================
   10. PROGRAMS SECTION
   ===================================================== */
.programs-section {
  background: var(--gray-50);
  padding: 100px 0;
}
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.prog-tab {
  padding: 10px 24px;
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}
.prog-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}
.prog-tab.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}
.programs-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.prog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.prog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.prog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prog-card:hover .prog-card-img img {
  transform: scale(1.08);
}
.prog-age-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.prog-card-body {
  padding: 28px 24px;
}
.prog-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.prog-icon-wrap i {
  font-size: 22px;
}
.prog-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.prog-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.prog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.prog-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0;
}
.prog-list li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: var(--transition);
}
.prog-link:hover {
  gap: 12px;
  color: var(--primary-blue-dark);
}
.programs-bottom-cta {
  text-align: center;
  margin-top: 50px;
}

/* =====================================================
   11. WHY CHOOSE US
   ===================================================== */
/* =========================================
   WHY CHOOSE US NEW
========================================= */

.why-section {
  padding: 100px 0;
  background: #f8fafc;
}

.why-top-content {
  text-align: center;
  margin-bottom: 60px;
}

.section-label.center {
  justify-content: center;
}

.section-label.center .label-line {
  width: 55px;
  height: 3px;
  background: #ffcc00;
  margin-right: 12px;
  display: inline-block;
}

.section-label.center span {
  font-size: 14px;
  font-weight: 700;
  color: #1e5da8;
  letter-spacing: 2px;
}

.why-main-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2937;
  margin-top: 20px;
}

.why-main-title span {
  display: block;
  color: #f59e0b;
}

.why-mini-points {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.mini-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mini-point i {
  color: #ff0033;
  font-size: 15px;
}

.mini-point span {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* GRID */

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */

.why-box-card {
  border-radius: 28px;
  padding: 25px 18px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.why-box-card:nth-child(1) {
  background: #d5d73d;
}

.why-box-card:nth-child(2) {
  background: #13b997;
}

.why-box-card:nth-child(3) {
  background: #25aae1;
}

.why-box-card:nth-child(4) {
  background: #5a00a5;
}

.why-box-card:nth-child(5) {
  background: #ff4500;
}

.why-box-card:nth-child(6) {
  background: #f2b208;
}

.why-box-card:nth-child(7) {
  background: #0f8dd8;
}

.why-box-card:nth-child(8) {
  background: #f95c7f;
}

.why-box-card:nth-child(9) {
  background: #2bb673;
}

.why-box-card:nth-child(10) {
  background: #7b4bff;
}

.why-box-card:hover {
  transform: translateY(-10px);
}

.why-box-card h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* IMAGE */

.why-box-image {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.why-box-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.why-box-card p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1400px) {
  .why-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .why-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-main-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .why-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-main-title {
    font-size: 34px;
  }

  .why-box-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .why-grid-new {
    grid-template-columns: 1fr;
  }

  .why-main-title {
    font-size: 28px;
  }

  .mini-point {
    width: 100%;
    justify-content: center;
  }
}
/* =====================================================
   12. ADMISSIONS BANNER
   ===================================================== */

.admission-banner-section {
  padding: 80px 0;
  background: var(--white);
}
.admission-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(242, 140, 56, 0.3);
  position: relative;
}
.admission-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.admission-left {
  position: relative;
  overflow: hidden;
}
.admission-img {
  height: 100%;
  min-height: 350px;
}
.admission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admission-right {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.admission-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  width: fit-content;
  animation: pulse 2s ease-in-out infinite;
}
.admission-tag i {
  animation: bellRing 1s ease-in-out infinite;
}
.admission-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.admission-year {
  display: block;
  color: var(--gray-800);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.admission-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.admission-branches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.adm-branch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.adm-branch i {
  font-size: 12px;
}
.admission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =====================================================
   13. TESTIMONIALS
   ===================================================== */
.testimonials-section {
  background: var(--gray-50);
  padding: 100px 0;
}
.testimonials-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-swiper {
  padding: 20px 0 60px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-blue);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars i {
  color: var(--yellow);
  font-size: 16px;
}
.testi-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
  flex-grow: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-blue-pale);
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.testi-info span {
  font-size: 13px;
  color: var(--gray-500);
}
.testi-quote-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--light-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-quote-icon i {
  font-size: 18px;
  color: var(--primary-blue);
}
.testimonials-section .swiper-pagination {
  position: relative !important;
  margin-top: 10px;
}
.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
  transition: var(--transition);
}
.testimonials-section .swiper-pagination-bullet-active {
  background: var(--primary-blue);
  width: 28px;
  border-radius: var(--radius-full);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.testi-btn {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.testi-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* =====================================================
   14. GALLERY
   ===================================================== */
.gallery-section {
  background: var(--white);
  padding: 100px 0;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item.tall img {
  height: 416px;
}
.gal-item:hover img {
  transform: scale(1.08);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(31, 95, 155, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-tag {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition);
}
.gal-item:hover .gal-tag {
  transform: translateY(0);
}
.gallery-bottom-cta {
  text-align: center;
  margin-top: 50px;
}

/* =====================================================
   15. CTA SECTION
   ===================================================== */
.cta-new-overlay {
  position: absolute;
  inset: 0;

  background: rgba(20, 75, 130, 0.45);

  backdrop-filter: blur(2px);
}
.cta-new-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-new-bg {
  position: absolute;
  inset: 0;
}
.cta-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-new-title {
  font-size: clamp(2rem, 3vw, 3.2rem);

  color: var(--white);

  margin-bottom: 20px;

  line-height: 1.25;

  white-space: nowrap;
}
@media (max-width: 992px) {
  .cta-new-title {
    white-space: normal;
  }
}
.cta-new-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-new-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.cta-new-icon i {
  font-size: 36px;
  color: var(--yellow);
}
.cta-new-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-new-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-new-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.cta-new-phone {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.cta-new-phone a {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
  transition: var(--transition);
}
.cta-new-phone a:hover {
  color: var(--white);
}

/* =====================================================
   16. FOOTER
   ===================================================== */

.footer {
  background: #ffffff;
  color: var(--gray-800);
  position: relative;
}

/* .footer-wave {
  position: absolute;
  top: -99px;
  left: 0;
  width: 100%;
  line-height: 0;
} */

.footer .section-divider svg {
  height: 100px;
}

@media (max-width: 768px) {
  .footer .section-divider svg {
    height: 50px;
  }
}

.footer-main {
  padding: var(--space-16) 0 var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  align-items: start;
}

.footer-col {
  text-align: left;
}

.footer-about {
  padding-right: var(--space-8);
}

.footer-desc {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(31, 95, 155, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: var(--text-base);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-size: var(--text-lg);
  color: var(--gray-900);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-700);
  font-size: var(--text-sm);
  transition: var(--transition);
  width: fit-content;
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-links i {
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(31, 95, 155, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary-blue);
  font-size: var(--text-base);
}

.contact-info {
  font-size: var(--text-sm);
}

.contact-info strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: var(--space-1);
}

.contact-info span,
.contact-info a {
  color: var(--gray-600);
  display: block;
  line-height: 1.6;
}

.contact-info span {
  white-space: nowrap;
}

.contact-info a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  background: #f5f7fb;
  padding: var(--space-5) 0;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.copyright {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: 0;
}

.developer-credit {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: 0;
}

.developer-link {
  color: var(--primary-blue);
  font-weight: 700;
  transition: var(--transition);
}

.developer-link:hover {
  color: var(--orange);
  text-decoration: underline;
}
/* =====================================================
   17. BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-colored);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: var(--z-fixed);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
}

/* =====================================================
   18. WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-800);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =====================================================
   19. ANIMATIONS
   ===================================================== */
@keyframes loaderBounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes starSpin {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bellRing {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30% {
    transform: rotate(15deg);
  }
  20%,
  40% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

/* =====================================================
   20. RESPONSIVE
   ===================================================== */

/* 1024px */
@media (max-width: 1024px) {
  .top-bar-left {
    gap: var(--space-4);
  }
  .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: var(--space-8);
  }
  .footer-about {
    padding-right: var(--space-4);
  }
}

/* 992px */
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .school-logo {
    height: 55px;
  }
  @media (max-width: 576px) {
    .school-logo {
      height: 70px;
    }
  }
  .hero {
    margin-top: 0;
  }

  .hero-slider {
    height: auto;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .hero-desc {
    font-size: 15px;
  }
  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  .stat-box {
    flex: 0 0 calc(50% - 20px);
  }
  .stat-divider-v {
    display: none;
  }
  .about-section {
    padding: 70px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-images {
    min-height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .programs-section {
    padding: 70px 0;
  }
  .programs-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-section {
    padding: 70px 0;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .admission-card {
    grid-template-columns: 1fr;
  }
  .admission-img {
    min-height: 250px;
  }
  .admission-right {
    padding: 36px 30px;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.tall img {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  /* === MOBILE NAV === */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 0 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    gap: 0;
    display: flex;
    margin: 0;
    list-style: none;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-item {
    border-bottom: 1px solid var(--gray-100);
    position: relative;
  }
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 0;
    width: 100%;
    border-left: 4px solid transparent;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link.active {
    color: var(--primary-blue);
    background: var(--light-blue-pale);
    border-left-color: var(--primary-blue);
  }
  .nav-link .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--gray-400);
    margin-left: auto;
  }
  .has-dropdown.open > .nav-link .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-blue);
  }

  /* === MOBILE DROPDOWN === */
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    background: var(--gray-50);
    margin: 0;
  }
  .has-dropdown.open > .dropdown-menu {
    display: block;
  }
  /* Kill desktop hover on mobile */
  .nav-item:hover > .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .has-dropdown.open:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 44px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    transition: all 0.2s ease;
    transform: none;
  }
  .dropdown-link:last-child {
    border-bottom: none;
  }
  .dropdown-link:hover,
  .dropdown-link:active {
    background: var(--light-blue-pale);
    color: var(--primary-blue);
    padding-left: 50px;
    transform: none;
  }
  .dropdown-link i {
    font-size: 14px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  .menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: 0.3s ease;
    display: block;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* 768px */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .about-images {
    min-height: 300px;
  }
  .about-img-main img {
    height: 280px;
  }
  .about-img-secondary {
    width: 50%;
  }
  .about-img-secondary img {
    height: 150px;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid-new {
    grid-template-columns: 1fr;
  }
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  .testi-card {
    padding: 28px 22px;
  }
  .gallery-section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

/* 576px */
@media (max-width: 576px) {
  .hero-slider {
    height: auto;
    min-height: auto;
  }
  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
  .hero-stats-bar {
    position: relative;
    margin-top: 0;
    padding-top: 15px;
  }
  .stats-bar-inner {
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    gap: 16px;
  }
  .stat-box {
    flex: 0 0 calc(50% - 10px);
    gap: 10px;
  }
  .stat-icon {
    width: 42px;
    height: 42px;
  }
  .stat-icon i {
    font-size: 18px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-text {
    font-size: 11px;
  }
  .about-section {
    padding: 50px 0;
  }
  .programs-section {
    padding: 50px 0;
  }
  .prog-card-img {
    height: 180px;
  }
  .prog-card-body {
    padding: 20px 18px;
  }
  .programs-tabs {
    gap: 8px;
  }
  .prog-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
  .why-section {
    padding: 50px 0;
  }
  .admission-banner-section {
    padding: 50px 0;
  }
  .admission-img {
    min-height: 200px;
  }
  .admission-right {
    padding: 28px 20px;
  }
  .admission-actions {
    flex-direction: column;
  }
  .admission-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .gal-item img,
  .gal-item.tall img {
    height: 220px;
  }
  .cta-new-section {
    padding: 70px 0;
  }
  .cta-new-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-new-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .footer-about {
    grid-column: auto;
  }
  .footer-wave {
    top: -49px;
  }
  .footer-wave svg {
    height: 50px;
  }
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
  .whatsapp-float {
    right: 20px;
    bottom: 80px;
    width: 50px;
    height: 50px;
  }
  .nav-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* 480px */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
  .btn-lg {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Print */
@media print {
  .header,
  .footer,
  .back-to-top,
  .whatsapp-float {
    display: none !important;
  }
  .section {
    page-break-inside: avoid;
  }
}

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

/* =========================================
   PAGE HERO
========================================= */

.page-hero {
  position: relative;

  margin-top: 0;

  height: 550px;

  display: flex;

  align-items: center;

  overflow: hidden;
}

/* BG */

.page-hero-bg {
  position: absolute;

  inset: 0;
}

.page-hero-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

/* Gallery page: show full collage image without cropping */

.page-gallery .page-hero-bg img {
  object-fit: contain;
}

/* TRANSPARENT OVERLAY */

.page-hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(20, 75, 130, 0.38);

  backdrop-filter: blur(1px);
}

/* CONTENT */

.page-hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  display: flex;

  align-items: center;

  height: 100%;
}

.page-hero-text {
  max-width: 650px;
}

/* BREADCRUMB */

.page-breadcrumb {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 10px;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.82);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.95);

  transition: var(--transition);
}

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

.page-breadcrumb .fa-chevron-right {
  font-size: 10px;

  color: rgba(255, 255, 255, 0.55);
}

/* TITLE */

.page-hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);

  color: var(--white);

  font-weight: 800;

  margin-bottom: 10px;

  line-height: 1.15;
}

/* DESC */

.page-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 1800px;

  white-space: nowrap;
}

/* HERO BADGE */

.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  max-width: 230px;
  height: auto;
  display: block;
  pointer-events: none;
  border-radius: 12px;
}

/* WAVE */

.page-hero-wave {
  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  line-height: 0;

  z-index: 3;
}

.page-hero-wave svg {
  width: 100%;

  height: 110px;
}

.page-hero-wave svg path {
  fill: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .page-hero {
    height: 360px;
  }

  .page-hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 320px;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .page-hero-desc {
    font-size: 15px;
  }

  .page-hero-wave svg {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: 280px;
  }

  .page-breadcrumb {
    font-size: 12px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-desc {
    font-size: 14px;

    line-height: 1.6;
  }
}

/* HERO BADGE RESPONSIVE */

@media (max-width: 992px) {
  .hero-badge {
    max-width: 160px;
    top: 16px;
    left: 16px;
  }
}

@media (max-width: 768px) {
  .hero-badge {
    max-width: 110px;
    left: auto;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    max-width: 80px;
    top: 10px;
    left: auto;
    right: 8px;
    border-radius: 6px;
  }
}

.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.page-hero-wave svg {
  width: 100%;
  height: 80px;
}

/* About Section Layout */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}

/* Image Wrapper */
.about-intro-images {
  position: sticky;
  top: 100px;
}

/* Common Image Style */
.intro-img {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
  position: relative;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

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

/* Top Image */
.top-img {
  height: 280px;
}

/* Middle Grid */
.intro-middle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.intro-middle-grid .intro-img {
  height: 190px;
}

/* Bottom Image */
.bottom-img {
  height: 240px;
}

/* Floating Badge */
.intro-floating-badge {
  position: absolute;
  right: -20px;
  top: 240px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffd500, #ff9f1c);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
  z-index: 5;
  text-align: center;
}

.intro-badge-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: #1e293b;
}

.intro-badge-txt {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

/* Content Text */
.about-intro-text {
  font-size: 16px;
  line-height: 2;
  color: var(--gray-600);
  margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-images {
    position: relative;
    top: 0;
  }
}

@media (max-width: 576px) {
  .intro-middle-grid {
    grid-template-columns: 1fr;
  }

  .top-img,
  .bottom-img,
  .intro-middle-grid .intro-img {
    height: 220px;
  }
}
/* Mission & Vision */
.mv-section {
  background: var(--gray-50);
  padding: 100px 0;
}

.mv-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.mv-card-new {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
}

.mv-card-new.vision {
  border-top-color: var(--yellow);
}

.mv-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-card-icon-wrap.mission-icon {
  background: var(--light-blue-pale);
}

.mv-card-icon-wrap.mission-icon i {
  font-size: 28px;
  color: var(--primary-blue);
}

.mv-card-icon-wrap.vision-icon {
  background: rgba(255, 214, 10, 0.2);
}

.mv-card-icon-wrap.vision-icon i {
  font-size: 28px;
  color: var(--yellow-dark);
}

.mv-card-new h3 {
  font-size: 22px;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.mv-card-new > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
}

.mv-checklist li i {
  font-size: 14px;
  flex-shrink: 0;
}

.mv-card-new:not(.vision) .mv-checklist li i {
  color: var(--green);
}

.mv-card-new.vision .mv-checklist li i {
  color: var(--yellow-dark);
}

/* Core Values */
.core-values-grid {
  text-align: center;
}

.cv-title {
  font-size: 22px;
  color: var(--gray-800);
  margin-bottom: 32px;
}

.cv-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.cv-item {
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.cv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.cv-icon i {
  font-size: 22px;
}

.cv-item h4 {
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.cv-item p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--white);
  padding: 100px 0;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.philosophy-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.philosophy-pillars-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.pillar-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--light-blue);
  line-height: 1;
  flex-shrink: 0;
  min-width: 45px;
}

.pillar-body h4 {
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.pillar-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Development Areas */
.dev-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.dev-area-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.dev-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.dev-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.dev-icon i {
  font-size: 22px;
}

.dev-area-card h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.dev-area-card p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Team Section */
.team-section {
  background: var(--gray-50);
  padding: 100px 0;
}

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

.team-card-new {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.team-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card-new:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  gap: 10px;
  justify-content: center;
  transform: translateY(100%);
  transition: var(--transition);
}

.team-card-new:hover .team-overlay {
  transform: translateY(0);
}

.team-overlay a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 16px;
  transition: var(--transition);
}

.team-overlay a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.team-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(244, 231, 11, 0.3);
}

.team-card-info {
  padding: 24px;
}

.team-card-info h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.team-role-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-blue-pale);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.team-card-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.team-bottom-cta {
  text-align: center;
}

.team-bottom-cta p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

/* Timeline Section */
.timeline-section {
  background: var(--white);
  padding: 100px 0;
}

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 20px 0;
}

.timeline-line-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--light-blue);
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.tl-item.tl-left {
  padding-right: 60px;
}

.tl-item.tl-right {
  left: 50%;
  padding-left: 60px;
}

.tl-marker {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  z-index: 2;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(46, 111, 149, 0.3);
}

.tl-left .tl-marker {
  right: -25px;
}

.tl-right .tl-marker {
  left: -25px;
}

.tl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.tl-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.tl-year {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.tl-card h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.tl-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Future Vision */
.future-vision-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.future-vision-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.fv-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.fv-icon-wrap i {
  font-size: 32px;
  color: var(--yellow);
}

.future-vision-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.future-vision-card > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

.fv-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.fv-stat-item {
  text-align: center;
}

.fv-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
}

.fv-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   ABOUT PAGE RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
  .page-hero {
    margin-top: 70px;
    height: 35vh;
    min-height: 280px;
  }

  .about-intro-section {
    padding: 70px 0;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-intro-images {
    min-height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .mv-section {
    padding: 70px 0;
  }

  .mv-cards-grid {
    grid-template-columns: 1fr;
  }

  .cv-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .philosophy-section {
    padding: 70px 0;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-img img {
    height: 350px;
  }

  .dev-areas {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-section {
    padding: 70px 0;
  }

  .team-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-section {
    padding: 70px 0;
  }

  .timeline-line-v {
    left: 30px;
  }

  .tl-item {
    width: 100%;
    padding: 0 0 40px 80px;
  }

  .tl-item.tl-left {
    padding-right: 0;
  }

  .tl-item.tl-right {
    left: 0;
    padding-left: 80px;
  }

  .tl-left .tl-marker,
  .tl-right .tl-marker {
    left: 5px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .about-intro-stats {
    flex-direction: column;
  }

  .cv-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .dev-areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid-new {
    grid-template-columns: 1fr;
  }

  .team-img-wrap {
    height: 250px;
  }

  .future-vision-card {
    padding: 36px 24px;
  }

  .fv-stats {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: 30vh;
    min-height: 250px;
  }

  .page-hero-wave svg {
    height: 50px;
  }

  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-images {
    min-height: 300px;
  }

  .intro-img-main img {
    height: 280px;
  }

  .intro-img-secondary {
    width: 50%;
  }

  .intro-img-secondary img {
    height: 150px;
  }

  .mv-section {
    padding: 50px 0;
  }

  .mv-card-new {
    padding: 28px 22px;
  }

  .cv-items {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .philosophy-section {
    padding: 50px 0;
  }

  .dev-areas {
    grid-template-columns: 1fr;
  }

  .team-section {
    padding: 50px 0;
  }

  .timeline-section {
    padding: 50px 0;
  }

  .tl-item {
    padding: 0 0 30px 70px;
  }

  .tl-item.tl-left,
  .tl-item.tl-right {
    padding-left: 70px;
  }

  .tl-marker {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .tl-card {
    padding: 20px;
  }
}

/* =====================================================
   MOBILE DROPDOWN FIX
   ===================================================== */
@media (max-width: 992px) {
  .has-dropdown .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    position: static;
    padding: 0 0 0 20px;
    min-width: auto;
    background: var(--gray-50);
    border-radius: 0;
    margin: 0;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .has-dropdown .nav-link .fa-chevron-down {
    margin-left: auto;
    transition: var(--transition);
  }

  .has-dropdown.open .nav-link .fa-chevron-down {
    transform: rotate(180deg);
  }

  .dropdown-link {
    border-bottom: 1px solid var(--gray-100);
  }

  .dropdown-link:last-child {
    border-bottom: none;
  }
}

/* =====================================================
   MOBILE MENU & DROPDOWN FIX
   ===================================================== */
@media (max-width: 992px) {
  /* Mobile menu overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 0 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    gap: 0;
    display: flex;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Nav links */
  .nav-item {
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 0;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--primary-blue);
    background: var(--light-blue-pale);
    border-left: 4px solid var(--primary-blue);
  }

  .nav-link .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--gray-400);
  }

  .has-dropdown.open .nav-link .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-blue);
  }

  /* Dropdown menu mobile */
  .has-dropdown .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    background: var(--gray-50);
    margin: 0;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  /* Dropdown links */
  .dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    transition: var(--transition);
  }

  .dropdown-link:last-child {
    border-bottom: none;
  }

  .dropdown-link:hover,
  .dropdown-link:active {
    background: var(--light-blue-pale);
    color: var(--primary-blue);
    padding-left: 48px;
  }

  .dropdown-link i {
    font-size: 14px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  /* Hamburger animation */
  .menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: 0.3s ease;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile overlay background */
  .nav-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }

  .nav-menu.active::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    width: 100%;
    max-width: 100%;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 14px;
  }

  .dropdown-link {
    padding: 12px 20px 12px 36px;
    font-size: 13px;
  }
}

/* =====================================================
   PROGRAMS PAGE STYLES
   ===================================================== */

/* Programs Intro */
.prog-intro-section {
  background: #f4f8f4;
  padding: 80px 0 60px;
}

.prog-intro-wrap {
  margin-bottom: 50px;
}

/* Quick Nav Pills */
.prog-nav-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.prog-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.prog-pill:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(31, 95, 155, 0.2);
}

.prog-pill i {
  font-size: 15px;
}

/* Program Detail Section */
.prog-detail-section {
  background: #f4f8f4;
  padding: 90px 0;
}

.prog-detail-section.alt-bg {
  background: #edf1ed;
}

/* Program Detail Grid */
.prog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.prog-detail-grid.reverse .prog-detail-img-col {
  order: 2;
}

.prog-detail-grid.reverse .prog-detail-content-col {
  order: 1;
}

/* Image Column */
.prog-detail-img-col {
  position: relative;
}

.prog-detail-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.prog-detail-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.prog-detail-age-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(31, 95, 155, 0.3);
}

.prog-detail-time-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--yellow);
  color: var(--gray-800);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(244, 231, 11, 0.3);
}

/* Content Column */
.prog-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 16px;
}

.prog-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gray-800);
  margin-bottom: 18px;
  line-height: 1.25;
}

.prog-detail-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Features Grid */
.prog-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.prog-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.prog-feat-item:hover {
  background: var(--light-blue-pale);
  border-color: var(--light-blue);
  transform: translateX(3px);
}

.prog-feat-item i {
  font-size: 16px;
  color: var(--primary-blue);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

/* Schedule Box */
.prog-schedule-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.prog-detail-section.alt-bg .prog-schedule-box {
  background: var(--white);
}

.prog-schedule-box h4 {
  font-size: 15px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prog-schedule-box h4 i {
  color: var(--primary-blue);
}

.prog-sched-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.prog-sched-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prog-sched-row span:first-child {
  color: var(--gray-500);
  font-weight: 500;
}

.prog-sched-row span:last-child {
  color: var(--gray-800);
  font-weight: 700;
  text-align: right;
}

/* FAQ Section */
.prog-faq-section {
  background: var(--white);
  padding: 100px 0;
  overflow: visible;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.faq-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-card.active {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.1);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.faq-btn:hover {
  color: var(--primary-blue);
}

.faq-card.active .faq-btn {
  color: var(--primary-blue);
  background: var(--gray-50);
}

.faq-btn span {
  flex: 1;
}

.faq-btn i {
  font-size: 14px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

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

.faq-body p,
.faq-body ul {
  padding: 0 28px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.faq-body p:first-child {
  padding-top: 0;
}

.faq-body p:last-child,
.faq-body ul:last-child {
  padding-bottom: 24px;
}

.faq-body ul li {
  list-style: disc;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .faq-btn {
    padding: 18px 20px;
    font-size: 14px;
  }

  .faq-body p,
  .faq-body ul {
    padding: 0 20px;
    font-size: 14px;
  }

  .faq-body p:last-child,
  .faq-body ul:last-child {
    padding-bottom: 20px;
  }
}

/* =====================================================
   PROGRAMS PAGE - FULL RESPONSIVE FIX
   ===================================================== */

/* ---- Base Mobile Fixes ---- */
@media (max-width: 1200px) {
  .prog-detail-grid {
    gap: 50px;
  }

  .prog-detail-img-wrap img {
    height: 400px;
  }
}

@media (max-width: 992px) {
  /* Intro Section */
  .prog-intro-section {
    padding: 60px 0 40px;
  }

  .prog-nav-pills {
    gap: 10px;
    margin-top: 30px;
  }

  .prog-pill {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Detail Sections */
  .prog-detail-section {
    padding: 60px 0;
  }

  .prog-detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /* Fix reverse on mobile - image always on top */
  .prog-detail-grid.reverse {
    direction: ltr;
  }

  .prog-detail-grid.reverse .prog-detail-img-col {
    order: -1;
  }

  .prog-detail-grid.reverse .prog-detail-content-col {
    order: 1;
  }

  .prog-detail-img-wrap img {
    height: 380px;
  }

  /* Features Grid */
  .prog-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Schedule Box */
  .prog-schedule-box {
    padding: 20px;
  }

  /* FAQ */
  .prog-faq-section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .page-hero {
    height: 35vh;
    min-height: 260px;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-hero-desc {
    font-size: 14px;
  }

  /* Intro */
  .prog-intro-section {
    padding: 50px 0 30px;
  }

  .prog-nav-pills {
    gap: 8px;
  }

  .prog-pill {
    padding: 9px 16px;
    font-size: 12px;
  }

  .prog-pill span {
    display: none;
  }

  .prog-pill i {
    font-size: 16px;
  }

  /* Detail */
  .prog-detail-section {
    padding: 50px 0;
  }

  .prog-detail-img-wrap img {
    height: 280px;
  }

  .prog-detail-age-tag,
  .prog-detail-time-tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .prog-detail-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .prog-detail-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Features */
  .prog-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .prog-feat-item {
    padding: 10px 12px;
    font-size: 13px;
    gap: 8px;
  }

  .prog-feat-item i {
    font-size: 14px;
    width: 18px;
  }

  /* Schedule */
  .prog-schedule-box {
    padding: 16px;
    margin-bottom: 20px;
  }

  .prog-schedule-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .prog-sched-row {
    font-size: 13px;
    padding: 8px 0;
  }

  /* FAQ */
  .prog-faq-section {
    padding: 50px 0;
  }

  .faq-btn {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-body p,
  .faq-body ul {
    font-size: 13px;
    padding: 0 18px;
  }

  .faq-body p:last-child,
  .faq-body ul:last-child {
    padding-bottom: 18px;
  }
}

@media (max-width: 576px) {
  /* Hero */
  .page-hero {
    height: 30vh;
    min-height: 220px;
  }

  .page-hero-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .page-hero-desc {
    font-size: 13px;
  }

  .page-breadcrumb {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* Intro */
  .prog-intro-section {
    padding: 40px 0 24px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-subtext {
    font-size: 14px;
  }

  /* Nav Pills - icon only on very small */
  .prog-nav-pills {
    justify-content: center;
    gap: 6px;
  }

  .prog-pill {
    padding: 10px 14px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  /* Detail */
  .prog-detail-section {
    padding: 40px 0;
  }

  .prog-detail-grid {
    gap: 24px;
  }

  .prog-detail-img-wrap img {
    height: 220px;
    border-radius: var(--radius);
  }

  .prog-detail-age-tag {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .prog-detail-time-tag {
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .prog-detail-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .prog-detail-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .prog-detail-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  /* Features - single column */
  .prog-features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .prog-feat-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Schedule */
  .prog-schedule-box {
    padding: 14px;
    margin-bottom: 16px;
    border-radius: var(--radius);
  }

  .prog-schedule-box h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .prog-sched-row {
    font-size: 12px;
    padding: 7px 0;
  }

  /* Button */
  .prog-detail-content-col .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* FAQ */
  .prog-faq-section {
    padding: 40px 0;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-card {
    border-radius: var(--radius);
  }

  .faq-btn {
    padding: 14px 16px;
    font-size: 13px;
    gap: 10px;
  }

  .faq-btn i {
    font-size: 12px;
  }

  .faq-body p,
  .faq-body ul {
    font-size: 13px;
    padding: 0 16px;
  }

  .faq-body p:last-child,
  .faq-body ul:last-child {
    padding-bottom: 16px;
  }

  /* CTA */
  .cta-new-section {
    padding: 60px 0;
  }

  .cta-new-title {
    font-size: 1.5rem;
  }

  .cta-new-text {
    font-size: 14px;
  }

  .cta-new-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-new-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  :root {
    --container-padding: 0.875rem;
  }

  .page-hero-title {
    font-size: 1.4rem;
  }

  .prog-detail-img-wrap img {
    height: 190px;
  }

  .prog-pill {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .prog-feat-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .prog-sched-row {
    font-size: 11px;
  }

  .prog-sched-row span:last-child {
    text-align: right;
    max-width: 55%;
  }

  .faq-btn {
    font-size: 12px;
    padding: 12px 14px;
  }
}

/* =====================================================
   ADMISSIONS PAGE STYLES
   ===================================================== */

/* Hero Badge */
.adm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--yellow);
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

/* Highlights Bar */
.adm-highlights-bar {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding: 0 var(--container-padding);
}

.adm-highlights-grid {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 40px;
  gap: 20px;
}

.adm-hl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.adm-hl-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.1);
}

.adm-hl-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-hl-icon i {
  font-size: 20px;
  color: var(--white);
}

.adm-hl-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 3px;
}

.adm-hl-text p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Main Admissions Section */
.adm-main-section {
  background: var(--white);
  padding: 80px 0;
}

.adm-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Info Column */
.adm-info-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gray-800);
  margin-bottom: 20px;
  line-height: 1.3;
}

.adm-info-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.adm-quick-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.adm-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border-left: 3px solid var(--green);
  transition: var(--transition);
}

.adm-feat-item:hover {
  transform: translateX(4px);
  background: var(--light-blue-pale);
}

.adm-feat-item i {
  color: var(--green);
  font-size: 14px;
}

/* Steps Box */
.adm-steps-box {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px 0;
  border: 1px solid var(--gray-100);
}

.adm-steps-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.adm-steps-box h3 i {
  color: var(--primary-blue);
}

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

.adm-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.adm-step:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.adm-step-num {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.adm-step-body h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.adm-step-body p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Docs Box */
.adm-docs-box {
  background: rgba(140, 198, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(140, 198, 63, 0.25);
}

.adm-docs-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.adm-docs-box h3 i {
  color: var(--green);
}

.adm-docs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.adm-docs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.adm-docs-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.adm-docs-list li i {
  color: var(--green);
  font-size: 13px;
}

/* Form Card */
.adm-form-col {
  position: sticky;
  top: 100px;
}

.adm-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
}

.adm-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.adm-form-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.25);
}

.adm-form-icon i {
  font-size: 28px;
  color: var(--white);
}

.adm-form-header h3 {
  font-size: 20px;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.adm-form-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 0;
}

.adm-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.adm-form-group {
  margin-bottom: 18px;
}

.adm-form-group.full {
  grid-column: 1 / -1;
}

.adm-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.req {
  color: var(--pink);
}

.adm-input-wrap {
  position: relative;
}

.adm-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
  pointer-events: none;
}

.adm-input-wrap input,
.adm-input-wrap select {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.adm-input-wrap input:focus,
.adm-input-wrap select:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 95, 155, 0.1);
}

.adm-form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--gray-700);
  background: var(--gray-50);
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: var(--transition);
}

.adm-form-group textarea:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 95, 155, 0.1);
}

/* Checkbox */
.adm-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.adm-checkbox-label input[type="checkbox"] {
  display: none;
}

.adm-checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--white);
  margin-top: 1px;
}

.adm-checkbox-label input:checked ~ .adm-checkmark {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.adm-checkbox-label input:checked ~ .adm-checkmark::after {
  content: "✓";
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.adm-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  margin-top: 4px;
}

.adm-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  margin-bottom: 0;
}

.adm-form-note i {
  margin-right: 4px;
}

/* Fee Section */
.adm-fee-section {
  background: linear-gradient(135deg, #163f6b 0%, #1f5f9b 50%, #2a7ab5 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.adm-fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.adm-fee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
}

.adm-fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.adm-fee-card.featured {
  border-color: var(--yellow);
  transform: scale(1.03);
}

.adm-fee-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.adm-fee-badge {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--yellow);
  color: var(--gray-800);
  padding: 4px 36px;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adm-fee-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.adm-fee-icon i {
  font-size: 26px;
  color: var(--white);
}

.adm-fee-card h3 {
  font-size: 20px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.adm-fee-age {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.adm-fee-rows {
  margin-bottom: 20px;
}

.adm-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 14px;
}

.adm-fee-row:last-child {
  border-bottom: none;
}

.adm-fee-row span:first-child {
  color: var(--gray-500);
}

.adm-fee-row span:last-child {
  color: var(--gray-800);
  font-weight: 700;
}

.adm-fee-row.highlight {
  background: var(--light-blue-pale);
  margin: 8px -8px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.adm-fee-row.highlight span:last-child {
  color: var(--primary-blue);
  font-size: 16px;
}

.adm-fee-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px;
}

.adm-fee-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adm-fee-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.adm-fee-note i {
  font-size: 22px;
  color: var(--yellow);
  flex-shrink: 0;
}

.adm-fee-note p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.adm-fee-note strong {
  color: var(--yellow);
}

/* Why Section */
.adm-why-section {
  background: var(--gray-50);
  padding: 100px 0;
}

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

.adm-why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.adm-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-top-color: var(--primary-blue);
}

.adm-why-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.adm-why-icon i {
  font-size: 28px;
}

.adm-why-card:hover .adm-why-icon {
  transform: scale(1.1) rotate(5deg);
}

.adm-why-card h3 {
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.adm-why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Testimonials */
.adm-testi-section {
  background: var(--white);
  padding: 100px 0;
}

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

.adm-testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.adm-testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--light-blue-pale);
  line-height: 1;
}

.adm-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-blue);
}

.adm-testi-stars {
  margin-bottom: 16px;
}

.adm-testi-stars i {
  color: var(--yellow);
  font-size: 14px;
}

.adm-testi-card > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.adm-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.adm-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.adm-testi-author h4 {
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.adm-testi-author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* =====================================================
   ADMISSIONS PAGE RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .adm-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adm-fee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adm-fee-card.featured {
    transform: none;
  }
}

@media (max-width: 992px) {
  .adm-highlights-bar {
    margin-top: -30px;
  }

  .adm-highlights-grid {
    padding: 24px 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .adm-main-section {
    padding: 60px 0;
  }

  .adm-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .adm-form-col {
    position: static;
  }

  .adm-fee-section {
    padding: 70px 0;
  }

  .adm-fee-notes {
    grid-template-columns: 1fr;
  }

  .adm-why-section {
    padding: 70px 0;
  }

  .adm-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adm-testi-section {
    padding: 70px 0;
  }

  .adm-testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .adm-highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .adm-hl-item {
    padding: 12px;
  }

  .adm-main-section {
    padding: 50px 0;
  }

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

  .adm-form-row {
    grid-template-columns: 1fr;
  }

  .adm-form-card {
    padding: 28px 22px;
  }

  .adm-fee-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .adm-fee-card.featured {
    transform: none;
  }

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

  .adm-fee-section {
    padding: 50px 0;
  }

  .adm-why-section {
    padding: 50px 0;
  }

  .adm-testi-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .adm-highlights-bar {
    padding: 0 1rem;
    margin-top: -20px;
  }

  .adm-highlights-grid {
    border-radius: var(--radius-lg);
    padding: 16px;
    gap: 10px;
  }

  .adm-hl-icon {
    width: 42px;
    height: 42px;
  }

  .adm-hl-icon i {
    font-size: 16px;
  }

  .adm-hl-text h4 {
    font-size: 13px;
  }

  .adm-hl-text p {
    font-size: 11px;
  }

  .adm-info-title {
    font-size: 1.4rem;
  }

  .adm-steps-box {
    padding: 20px;
  }

  .adm-step {
    flex-direction: row;
  }

  .adm-docs-box {
    padding: 20px;
  }

  .adm-form-card {
    padding: 22px 16px;
  }

  .adm-form-icon {
    width: 60px;
    height: 60px;
  }

  .adm-form-icon i {
    font-size: 22px;
  }

  .adm-form-header h3 {
    font-size: 17px;
  }

  .adm-fee-card {
    padding: 24px 18px;
  }

  .adm-fee-note {
    padding: 16px;
  }

  .adm-why-card {
    padding: 28px 20px;
  }

  .adm-testi-card {
    padding: 24px 20px;
  }
}

/* =====================================================
   FACILITIES PAGE STYLES
   ===================================================== */

/* Stats Bar */
.fac-stats-bar {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding: 0 var(--container-padding);
}

.fac-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  gap: 20px;
}

.fac-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.fac-stat-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fac-stat-icon i {
  font-size: 20px;
  color: var(--primary-blue);
}

.fac-stat-content {
  display: flex;
  flex-direction: column;
}

.fac-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.fac-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 3px;
}

.fac-stat-divider {
  width: 1px;
  height: 45px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Intro Section */
.fac-intro-section {
  background: var(--white);
  padding: 80px 0 40px;
}

/* Main Facilities Grid */
.fac-main-section {
  background: var(--gray-50);
  padding: 60px 0 100px;
}

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

.fac-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.fac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fac-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fac-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.fac-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(31, 95, 155, 0.8));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.fac-card:hover .fac-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.fac-card-body {
  padding: 24px 22px;
}

.fac-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fac-card-icon i {
  font-size: 20px;
}

.fac-card-body h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.fac-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.fac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fac-tags span {
  padding: 4px 10px;
  background: var(--light-blue-pale);
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Amenities Section */
.fac-amenities-section {
  background: linear-gradient(135deg, #163f6b 0%, #1f5f9b 50%, #2a7ab5 100%);
  padding: 100px 0;
}

.fac-amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fac-amenity-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}

.fac-amenity-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.fac-amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.fac-amenity-item:hover .fac-amenity-icon {
  background: var(--yellow);
}

.fac-amenity-icon i {
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}

.fac-amenity-item:hover .fac-amenity-icon i {
  color: var(--gray-800);
}

.fac-amenity-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.fac-amenity-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* Safety Section */
.fac-safety-section {
  background: var(--white);
  padding: 100px 0;
}

.fac-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fac-safety-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.fac-safety-main-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.fac-safety-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fac-safety-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 18px;
}

.fac-safety-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-800);
}

.fac-safety-badge span {
  font-size: 12px;
  color: var(--gray-500);
}

.fac-safety-sub-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.fac-safety-sub-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.fac-safety-sub-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fac-safety-sub-img:hover img {
  transform: scale(1.08);
}

.fac-safety-sub-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 20px 10px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fac-safety-sub-label i {
  color: var(--yellow);
  font-size: 11px;
}

/* Safety Features List */
.fac-safety-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fac-sf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.fac-sf-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.fac-sf-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.fac-sf-item:hover .fac-sf-icon {
  transform: scale(1.1) rotate(-5deg);
}

.fac-sf-body h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 5px;
}

.fac-sf-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================================================
   FACILITIES PAGE RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .fac-amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .fac-stats-bar {
    margin-top: -30px;
  }

  .fac-stats-inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 20px;
  }

  .fac-stat-box {
    flex: 0 0 calc(50% - 16px);
  }

  .fac-stat-divider {
    display: none;
  }

  .fac-intro-section {
    padding: 60px 0 30px;
  }

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

  .fac-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fac-safety-section {
    padding: 70px 0;
  }

  .fac-safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fac-safety-img-col {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .fac-stats-inner {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 14px;
  }

  .fac-stat-box {
    flex: unset;
    width: 100%;
  }

  .fac-intro-section {
    padding: 50px 0 24px;
  }

  .fac-main-section {
    padding: 40px 0 70px;
  }

  .fac-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fac-card-img {
    height: 200px;
  }

  .fac-amenities-section {
    padding: 70px 0;
  }

  .fac-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fac-safety-section {
    padding: 50px 0;
  }

  .fac-safety-main-img img {
    height: 280px;
  }

  .fac-safety-sub-img img {
    height: 130px;
  }
}

@media (max-width: 576px) {
  .fac-stats-bar {
    padding: 0 1rem;
    margin-top: -20px;
  }

  .fac-stats-inner {
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    gap: 12px;
  }

  .fac-stat-icon {
    width: 42px;
    height: 42px;
  }

  .fac-stat-num {
    font-size: 20px;
  }

  .fac-stat-label {
    font-size: 11px;
  }

  .fac-card-img {
    height: 180px;
  }

  .fac-card-body {
    padding: 18px 16px;
  }

  .fac-card-body h3 {
    font-size: 16px;
  }

  .fac-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .fac-amenity-item {
    padding: 20px 12px;
  }

  .fac-amenity-icon {
    width: 46px;
    height: 46px;
  }

  .fac-amenity-icon i {
    font-size: 16px;
  }

  .fac-amenity-item h4 {
    font-size: 12px;
  }

  .fac-amenity-item p {
    font-size: 11px;
  }

  .fac-safety-main-img img {
    height: 220px;
  }

  .fac-safety-sub-imgs {
    grid-template-columns: 1fr;
  }

  .fac-safety-sub-img img {
    height: 160px;
  }

  .fac-sf-item {
    padding: 16px;
  }

  .fac-sf-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .fac-amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fac-tags span {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* =====================================================
   FACILITIES PAGE STYLES
   ===================================================== */

/* Stats Bar */
.fac-stats-bar {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding: 0 var(--container-padding);
}

.fac-stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 40px;
  gap: 20px;
}

.fac-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.fac-stat-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.1);
}

.fac-stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fac-stat-icon i {
  font-size: 20px;
  color: var(--white);
}

.fac-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  line-height: 1;
}

.fac-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

/* Facilities Intro */
.fac-intro-section {
  background: var(--white);
  padding: 80px 0 40px;
}

/* Facilities Grid */
.fac-main-section {
  background: var(--gray-50);
  padding: 60px 0 100px;
}

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

.fac-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.fac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fac-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fac-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.fac-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(31, 95, 155, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.fac-card:hover .fac-card-overlay {
  opacity: 1;
}

.fac-card-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.fac-card-body {
  padding: 24px;
}

.fac-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fac-icon i {
  font-size: 22px;
}

.fac-card-body h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.fac-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.fac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fac-tags span {
  padding: 4px 10px;
  background: var(--light-blue-pale);
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* Amenities Section */
.fac-amenities-section {
  background: linear-gradient(135deg, #163f6b 0%, #1f5f9b 50%, #2a7ab5 100%);
  padding: 100px 0;
}

.fac-amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fac-amenity-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}

.fac-amenity-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.fac-amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.fac-amenity-item:hover .fac-amenity-icon {
  background: var(--yellow);
}

.fac-amenity-icon i {
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}

.fac-amenity-item:hover .fac-amenity-icon i {
  color: var(--gray-800);
}

.fac-amenity-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.fac-amenity-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* Safety Section */
.fac-safety-section {
  background: var(--white);
  padding: 100px 0;
}

.fac-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fac-safety-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 4s ease-in-out infinite;
}

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

.fac-safety-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #16a34a;
}

.fac-safety-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-800);
}

.fac-safety-badge span {
  font-size: 12px;
  color: var(--gray-500);
}

.fac-safety-imgs {
  position: relative;
}

.fac-safety-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.fac-safety-main-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.fac-safety-img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fac-safety-img-label i {
  color: var(--green);
}

.fac-safety-main-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(30, 78, 107, 0.5)
  );
  pointer-events: none;
}

.fac-safety-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.fac-safety-sm-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.fac-safety-sm-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fac-safety-sm-img:hover img {
  transform: scale(1.08);
}

.fac-safety-sm-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 20px 10px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fac-safety-sm-label i {
  color: var(--yellow);
  font-size: 11px;
}

.fac-safety-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fac-safety-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.fac-safety-feat:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateX(6px);
}

.fac-safety-feat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.fac-safety-feat:hover .fac-safety-feat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.fac-safety-feat-body h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.fac-safety-feat-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */

/* Gallery Intro */
.gal-intro-section {
  background: #dde8f2;
  padding: 90px 0;
}

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

.gal-intro-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.25;
}

.gal-intro-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}

.gal-tag:hover {
  background: var(--light-blue-pale);
  color: var(--primary-blue);
  border-color: var(--light-blue);
}

.gal-tag i {
  font-size: 12px;
  color: var(--primary-blue);
}

/* Stats Grid */
.gal-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gal-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.gal-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gal-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.gal-stat-card:hover .gal-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.gal-stat-icon i {
  font-size: 24px;
  color: var(--white);
}

.gal-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  display: inline-block;
  line-height: 1;
}

.gal-stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
}

.gal-stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery Filter */
.gal-main-section {
  background: #d5e0e8;
  padding: 80px 0;
}

.gal-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gal-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.gal-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.gal-filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.gal-filter-btn i {
  font-size: 13px;
}

/* Gallery Grid */
/* Gallery Grid - UNIFORM LAYOUT */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gal-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Force tall/wide to be uniform like other items */
.gal-item.tall,
.gal-item.wide {
  grid-row: span 1;
  grid-column: span 1;
  aspect-ratio: 4 / 3;
}

.gal-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 1100px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* Fix AOS hiding filtered gallery items */
.gal-grid .gal-item[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.3s ease !important;
}

.gal-grid .gal-item[data-aos]:hover {
  transform: translateY(-6px) !important;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(31, 95, 155, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gal-item:hover .gal-item-overlay {
  opacity: 1;
}

.gal-item-overlay i {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: var(--transition);
}

.gal-item:hover .gal-item-overlay i {
  transform: translateY(0);
}

.gal-item-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.gal-item:hover .gal-item-overlay span {
  transform: translateY(0);
}

.gal-load-more {
  text-align: center;
  margin-top: 40px;
}

/* Video Section */
.gal-video-section {
  background: #163f6b;
  padding: 100px 0;
}

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

.gal-video-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.gal-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(244, 231, 11, 0.3);
}

.gal-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.gal-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

.gal-video-card:hover .gal-video-thumb img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.gal-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.gal-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-blue);
  z-index: 2;
  transition: var(--transition);
}

.gal-play-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: gal-play-ring 2s ease-in-out infinite;
}

@keyframes gal-play-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.gal-video-card:hover .gal-play-btn {
  background: var(--yellow);
  color: var(--gray-800);
  transform: translate(-50%, -50%) scale(1.1);
}

.gal-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  z-index: 2;
}

.gal-video-info {
  padding: 20px;
}

.gal-video-info h4 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  transition: var(--transition);
}

.gal-video-card:hover .gal-video-info h4 {
  color: var(--yellow);
}

.gal-video-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gal-video-meta {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gal-video-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.gal-video-meta span i {
  color: var(--yellow);
  font-size: 11px;
}

/* Lightbox */
.gal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.gal-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gal-lb-close,
.gal-lb-prev,
.gal-lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.gal-lb-close {
  top: 20px;
  right: 20px;
}
.gal-lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gal-lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gal-lb-close:hover,
.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.gal-lb-content {
  text-align: center;
  max-width: 90%;
  max-height: 90vh;
}

.gal-lb-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

#galLbCaption {
  color: var(--white);
  font-size: 15px;
  margin-top: 12px;
  font-weight: 600;
}

.gal-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* =====================================================
   FACILITIES & GALLERY RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .fac-amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  /* Facilities */
  .fac-stats-bar {
    margin-top: -30px;
  }
  .fac-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }
  .fac-intro-section {
    padding: 60px 0 30px;
  }
  .fac-main-section {
    padding: 40px 0 70px;
  }
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fac-amenities-section {
    padding: 70px 0;
  }
  .fac-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fac-safety-section {
    padding: 70px 0;
  }
  .fac-safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fac-safety-badge {
    right: 0;
    top: -14px;
  }

  /* Gallery */
  .gal-intro-section {
    padding: 70px 0;
  }
  .gal-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gal-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .gal-video-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
  }
  .gal-video-section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  /* Facilities */
  .fac-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .fac-grid {
    grid-template-columns: 1fr;
  }
  .fac-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fac-safety-img-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery */
  .gal-filters {
    gap: 8px;
  }
  .gal-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  /* Facilities */
  .fac-stats-bar {
    padding: 0 1rem;
    margin-top: -20px;
  }
  .fac-stats-grid {
    border-radius: var(--radius-lg);
  }
  .fac-card-img {
    height: 180px;
  }
  .fac-amenities-section {
    padding: 50px 0;
  }
  .fac-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .fac-amenity-item {
    padding: 20px 12px;
  }
  .fac-safety-section {
    padding: 50px 0;
  }
  .fac-safety-main-img img {
    height: 250px;
  }
  .fac-safety-sm-img img {
    height: 120px;
  }

  /* Gallery */
  .gal-intro-section {
    padding: 50px 0;
  }
  .gal-tags {
    gap: 6px;
  }
  .gal-tag {
    padding: 5px 10px;
    font-size: 12px;
  }
  .gal-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gal-stat-card {
    padding: 20px 14px;
  }
  .gal-stat-num {
    font-size: 26px;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 8px;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .gal-filters {
    gap: 6px;
  }
  .gal-filter-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .gal-filter-btn i {
    display: none;
  }
  .gal-video-section {
    padding: 50px 0;
  }
  .gal-video-info {
    padding: 16px;
  }
  .gal-video-info h4 {
    font-size: 15px;
  }
  .gal-lb-prev {
    left: 10px;
  }
  .gal-lb-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .gal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-auto-rows: auto;
  }
  .gal-item.wide {
    grid-column: span 1;
  }
  .gal-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 8px;
  }
  .gal-filter-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 11px;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .fac-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Quick Contact Bar */
.ct-quick-bar {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding: 0 var(--container-padding);
}

.ct-quick-grid {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 36px;
  gap: 16px;
}

.ct-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.ct-quick-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.1);
}

.ct-quick-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-quick-icon i {
  font-size: 18px;
  color: var(--white);
}

.ct-quick-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.ct-quick-text a,
.ct-quick-text span {
  font-size: 13px;
  color: var(--gray-500);
  display: block;
}

.ct-quick-text a:hover {
  color: var(--primary-blue);
}

/* Contact Main */
.ct-main-section {
  background: var(--white);
  padding: 80px 0;
}

.ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ct-info-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ct-info-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Contact Cards */
.ct-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.ct-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.ct-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.ct-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-card-icon i {
  font-size: 20px;
}

.ct-card-body h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.ct-card-body p,
.ct-card-body a {
  font-size: 14px;
  color: var(--gray-600);
  display: block;
  line-height: 1.6;
  margin-bottom: 0;
}

.ct-card-body a:hover {
  color: var(--primary-blue);
}

/* Social Links */
.ct-social {
  margin-top: 8px;
}

.ct-social h4 {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.ct-social-links {
  display: flex;
  gap: 10px;
}

.ct-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.ct-social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.ct-form-col {
  position: sticky;
  top: 100px;
}

.ct-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
}

.ct-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.ct-form-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 25px rgba(31, 95, 155, 0.25);
}

.ct-form-icon i {
  font-size: 26px;
  color: var(--white);
}

.ct-form-header h3 {
  font-size: 20px;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 0;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-form-group {
  margin-bottom: 18px;
}

.ct-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.ct-input-wrap {
  position: relative;
}

.ct-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
  pointer-events: none;
}

.ct-input-wrap input,
.ct-input-wrap select {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.ct-input-wrap input:focus,
.ct-input-wrap select:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 95, 155, 0.1);
}

.ct-form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--gray-700);
  background: var(--gray-50);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: var(--transition);
}

.ct-form-group textarea:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 95, 155, 0.1);
}

.ct-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}

.ct-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  margin-bottom: 0;
}

.ct-form-note i {
  margin-right: 4px;
}

/* Branches Section */
.ct-branches-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.ct-tab-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ct-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ct-tab-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ct-tab-btn.active {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.ct-tab-pane {
  display: none;
}

.ct-tab-pane.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.ct-branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ct-branch-info {
  color: var(--white);
}

.ct-branch-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ct-branch-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-branch-icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.ct-branch-header h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.ct-branch-type {
  font-size: 13px;
  color: var(--yellow);
  font-weight: 600;
}

.ct-branch-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ct-branch-detail {
  display: flex;
  gap: 14px;
}

.ct-branch-detail > i {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 14px;
  flex-shrink: 0;
}

.ct-branch-detail strong {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.ct-branch-detail p,
.ct-branch-detail a {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0;
}

.ct-branch-detail a:hover {
  color: var(--yellow);
}

.ct-branch-btns {
  display: flex;
  gap: 12px;
}

.ct-branch-btns .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 13px;
}

.ct-branch-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.ct-branch-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* =====================================================
   CONTACT PAGE RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .ct-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .ct-quick-bar {
    margin-top: -30px;
  }

  .ct-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }

  .ct-main-section {
    padding: 60px 0;
  }

  .ct-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ct-form-col {
    position: static;
  }

  .ct-branches-section {
    padding: 70px 0;
  }

  .ct-branch-card {
    grid-template-columns: 1fr;
  }

  .ct-branch-map {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .ct-quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-form-card {
    padding: 28px 22px;
  }

  .ct-tab-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-tab-btn {
    justify-content: center;
  }

  .ct-branch-card {
    padding: 24px;
  }

  .ct-branch-btns {
    flex-direction: column;
  }

  .ct-branch-btns .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .ct-quick-bar {
    padding: 0 1rem;
    margin-top: -20px;
  }

  .ct-quick-grid {
    border-radius: var(--radius-lg);
    padding: 16px;
  }

  .ct-quick-icon {
    width: 42px;
    height: 42px;
  }

  .ct-quick-icon i {
    font-size: 16px;
  }

  .ct-info-title {
    font-size: 1.4rem;
  }

  .ct-form-icon {
    width: 56px;
    height: 56px;
  }

  .ct-form-icon i {
    font-size: 22px;
  }

  .ct-form-header h3 {
    font-size: 17px;
  }

  .ct-branch-card {
    padding: 20px;
  }

  .ct-branch-header h3 {
    font-size: 17px;
  }

  .ct-branch-icon {
    width: 48px;
    height: 48px;
  }

  .ct-social-links a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .ct-branches-section {
    padding: 50px 0;
  }
}

/* ===========================
   VIDEOS SECTION
=========================== */
.videos-section {
  background: #e8edf2;
  padding: 80px 0;
  position: relative;
}

/* ---------- Featured Video ---------- */
.featured-video-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.featured-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ---------- Video Player (thumbnail + play) ---------- */
.video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.video-player .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.video-player:hover .video-poster {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: var(--primary, #f97316);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.12);
  background: #ea6a0a;
  box-shadow: 0 0 0 18px rgba(249, 115, 22, 0.2);
}

.play-btn-sm {
  width: 50px;
  height: 50px;
  font-size: 16px;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.25);
}

/* ---------- Featured Info ---------- */
.featured-video-info {
  padding: 36px 36px 36px 32px;
}

.video-tag {
  display: inline-block;
  background: var(--primary, #f97316);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

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

.featured-video-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.video-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.video-meta span {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-meta span i {
  color: var(--primary, #f97316);
}

/* ---------- Video Grid ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.video-thumb {
  position: relative;
  width: 100%;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 3;
  pointer-events: none;
}

.video-card-info {
  padding: 20px;
}

.video-category {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary, #f97316);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.video-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-card-info p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ---------- CTA ---------- */
.videos-cta {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 50px 30px;
}

.videos-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #ff0000;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
  color: #fff;
}

.btn-youtube i {
  font-size: 20px;
}

/* ---------- Video Modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--primary, #f97316);
}

.modal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

@media (max-width: 768px) {
  .featured-video-wrap {
    grid-template-columns: 1fr;
  }

  .featured-video-info {
    padding: 24px;
  }

  .featured-video-info h3 {
    font-size: 18px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .videos-cta {
    padding: 36px 20px;
  }

  .videos-cta p {
    font-size: 15px;
  }

  .play-btn {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
}
/* Simple Videos Section */
.simple-videos-section {
  padding: 80px 0;
  background: #dce3ed;
}

.simple-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.simple-video-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.simple-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.simple-video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.simple-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.simple-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-video-overlay i {
  width: 58px;
  height: 58px;
  background: #f97316;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.22);
}

.simple-video-card h4 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}

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

@media (max-width: 576px) {
  .simple-videos-grid {
    grid-template-columns: 1fr;
  }

  .simple-video-card h4 {
    font-size: 16px;
  }
}
/* Highlight / Flyover text inside hero slides */
.hero-flyover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 720px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  animation: flyoverFadeUp 1s ease;
}

.hero-flyover i {
  color: #ffd54f;
  font-size: 15px;
  flex-shrink: 0;
}

.hero-flyover-alt i {
  color: #ff9fb2;
}

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

/* optional stronger highlight */
.hero-flyover span {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-flyover {
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 18px;
    margin: 14px 0 12px;
    max-width: 100%;
  }
}

/* =========================================
   HOME PAGE HERO MOBILE FIX
========================================= */

@media (max-width: 768px) {
  /* HERO SECTION */

  .hero {
    margin-top: 0 !important;
  }

  .hero-slider {
    height: auto !important;
    min-height: auto !important;
  }

  .hero-swiper,
  .hero-slide {
    height: 500px !important;
  }

  .hero-slide {
    position: relative;
    overflow: hidden;
  }

  .hero-slide-bg img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    object-position: center;
  }

  /* OVERLAY */

  .hero-slide-overlay {
    background: rgba(0, 0, 0, 0.35);
  }

  /* CONTENT */

  .hero-slide-content {
    height: 100%;
    padding: 30px 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-text-content {
    max-width: 100%;
  }

  /* TAG */

  .hero-tag {
    font-size: 12px;
    padding: 10px 18px;
    margin-bottom: 18px;
    border-radius: 40px;
  }

  /* TITLE */

  .hero-title {
    font-size: 2.3rem !important;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
  }

  .hero-highlight {
    color: #ffe600;
  }

  /* DESCRIPTION */

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.92);
  }

  /* BUTTONS */

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* PREV NEXT BUTTONS */

  .hero-prev,
  .hero-next {
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;

    width: 52px;
    height: 52px;

    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .hero-prev {
    left: calc(50% - 70px) !important;
  }

  .hero-next {
    right: calc(50% - 70px) !important;
  }

  .hero-prev i,
  .hero-next i {
    font-size: 18px;
    color: #1f5f9b;
  }

  /* PAGINATION */

  .hero-slider-controls {
    bottom: 85px;
  }

  /* STATS BAR */

  .hero-stats-bar {
    margin-top: -35px !important;
    position: relative;
    z-index: 20;
  }

  .stats-bar-inner {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .stat-box {
    flex: 0 0 calc(50% - 10px);
    gap: 12px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-text {
    font-size: 12px;
  }
}

/* =====================================================
   PLAYFUL PRESCHOOL BACKGROUNDS & ELEMENTS
   ===================================================== */

/* SECTION ALTERNATE COLORS */

/* =====================================================
   UPDATED SECTION COLORS - LITTLE DARKER
   ===================================================== */

.about-section {
  background: #d2e0ea;
}

.programs-section {
  background: #edd0c5;
}

.why-section {
  background: #d6e6f2;
}

.admission-banner-section {
  background: #ecd5b8;
}

.testimonials-section {
  background: #ded5ed;
}

.gallery-section {
  background: #d5edd9;
}

.cta-new-section {
  background: #cce3f0;
}

/* =========================================
   CLOUD DIVIDER
========================================= */

.cloud-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  overflow: hidden;
}

.clouds {
  width: 100%;
  height: 130px;

  background:
    radial-gradient(circle at 5% 100%, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 15% 100%, #ffffff 95px, transparent 96px),
    radial-gradient(circle at 30% 100%, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 48% 100%, #ffffff 110px, transparent 111px),
    radial-gradient(circle at 66% 100%, #ffffff 85px, transparent 86px),
    radial-gradient(circle at 82% 100%, #ffffff 100px, transparent 101px),
    radial-gradient(circle at 98% 100%, #ffffff 90px, transparent 91px);

  background-repeat: no-repeat;
}

/* MOBILE */

@media (max-width: 768px) {
  .programs-section {
    padding: 110px 0 70px;
  }

  .clouds {
    height: 90px;

    background:
      radial-gradient(circle at 10% 100%, #ffffff 40px, transparent 41px),
      radial-gradient(circle at 30% 100%, #ffffff 55px, transparent 56px),
      radial-gradient(circle at 50% 100%, #ffffff 48px, transparent 49px),
      radial-gradient(circle at 70% 100%, #ffffff 60px, transparent 61px),
      radial-gradient(circle at 90% 100%, #ffffff 50px, transparent 51px);
  }
}
/* =====================================================
   CLOUD TOP SHAPE
   ===================================================== */

/* .programs-section::before,
.testimonials-section::before,
.gallery-section::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 0;

  width: 100%;
  height: 120px;

  background:
    radial-gradient(circle at 50px 120px, #ffffff 60px, transparent 61px),
    radial-gradient(circle at 180px 120px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 340px 120px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 520px 120px, #ffffff 90px, transparent 91px),
    radial-gradient(circle at 760px 120px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 980px 120px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 1180px 120px, #ffffff 90px, transparent 91px);

  background-repeat: repeat-x;

  z-index: 2; */
/* } */

/* =====================================================
   WAVE BOTTOM
   ===================================================== */
/* 
.about-section::after,
.why-section::after,
.gallery-section::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 100%;
  height: 90px;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L60,80C120,96,240,128,360,122.7C480,117,600,75,720,58.7C840,43,960,53,1080,69.3C1200,85,1320,107,1380,117.3L1440,128L1440,160L1380,160C1320,160,1200,160,1080,160C960,160,840,160,720,160C600,160,480,160,360,160C240,160,120,160,60,160L0,160Z'%3E%3C/path%3E%3C/svg%3E");

  background-size: cover;
  background-repeat: no-repeat;

  z-index: 3;
} */

/* =====================================================
   FUN STICKERS
   ===================================================== */

.about-section::before {
  content: "🌈";

  position: absolute;

  top: 120px;
  right: 60px;

  font-size: 55px;

  opacity: 0.18;

  transform: rotate(-10deg);

  z-index: 1;
}

.programs-section::after {
  content: "⭐";

  position: absolute;

  top: 180px;
  left: 70px;

  font-size: 50px;

  opacity: 0.18;

  transform: rotate(-15deg);

  z-index: 1;
}

.why-section::before {
  content: "🧸";

  position: absolute;

  bottom: 120px;
  left: 50px;

  font-size: 65px;

  opacity: 0.12;

  z-index: 1;
}

.testimonials-section::after {
  content: "☁️";

  position: absolute;

  top: 120px;
  right: 80px;

  font-size: 70px;

  opacity: 0.15;

  z-index: 1;
}

.gallery-section::before {
  content: "🎈";

  position: absolute;

  top: 140px;
  left: 60px;

  font-size: 55px;

  opacity: 0.15;

  z-index: 1;
}

.cta-new-section::before {
  content: "✨";

  position: absolute;

  top: 100px;
  right: 100px;

  font-size: 50px;

  opacity: 0.15;

  z-index: 1;
}

/* =====================================================
   FLOATING CIRCLES
   ===================================================== */

.about-section .container::before,
.programs-section .container::before,
.gallery-section .container::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(255, 204, 0, 0.08);

  top: 40px;
  right: -60px;

  z-index: 0;
}

.about-section .container,
.programs-section .container,
.gallery-section .container,
.why-section .container,
.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* =====================================================
   SECTION DIVIDER DOTS
   ===================================================== */

.section-head::after {
  content: "";

  display: block;

  width: 120px;
  height: 12px;

  margin: 20px auto 0;

  background-image: radial-gradient(circle, #ff6b3d 4px, transparent 5px);

  background-size: 30px 12px;

  background-repeat: repeat-x;
}

/* =====================================================
   SOFT SECTION SHADOWS
   ===================================================== */

/* =====================================================
   MOBILE
   ===================================================== */

/* @media (max-width: 768px) {
  .programs-section::before,
  .testimonials-section::before,
  .gallery-section::before {
    height: 70px;
  }

  .about-section::before,
  .programs-section::after,
  .why-section::before,
  .gallery-section::before,
  .cta-new-section::before {
    font-size: 35px;
  }
} */

/* =====================================================
   CLOUD SECTION DIVIDER
   ===================================================== */

.section-cloud {
  position: relative;
  overflow: hidden;
}

.section-cloud::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 260px;
  background: #eef0f8;
  z-index: 1;

  border-radius:
    0 0 120px 120px,
    0 0 180px 180px;

  clip-path: polygon(
    0% 70%,
    4% 60%,
    8% 62%,
    12% 50%,
    18% 55%,
    24% 45%,
    30% 58%,
    36% 42%,
    42% 55%,
    48% 40%,
    54% 52%,
    60% 38%,
    66% 55%,
    72% 44%,
    78% 58%,
    84% 46%,
    90% 60%,
    96% 48%,
    100% 58%,
    100% 100%,
    0% 100%
  );
}

/* =====================================================
   PRESCHOOL DECORATION ELEMENTS
   ===================================================== */

.section-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Paper Plane */
.deco-plane {
  top: 80px;
  right: 80px;
  font-size: 70px;
  color: #b86cc7;
  transform: rotate(12deg);
}

/* Star */
.deco-star {
  bottom: 120px;
  left: 80px;
  font-size: 45px;
  color: #f29a00;
}

/* Rainbow Lines */
.deco-lines {
  bottom: 200px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 5px solid #d7de1d;
  border-radius: 100px;
  transform: rotate(35deg);
}

.deco-lines::before,
.deco-lines::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-top: 5px solid #d7de1d;
  border-radius: 100px;
  left: 12px;
  top: 14px;
}

/* Dot Circle */
.deco-dots {
  top: 180px;
  left: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: radial-gradient(#ff6f7d 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.5;
}

/* Cute Kid Icon */
.deco-kid {
  bottom: 100px;
  right: 100px;
  font-size: 70px;
  color: #ef69b4;
}

/* ABC Block */
.deco-block {
  top: 100px;
  left: 100px;
  width: 70px;
  height: 70px;
  background: #ffcf40;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Book */
.deco-book {
  bottom: 120px;
  left: 120px;
  font-size: 60px;
  color: #34b6ff;
}

/* Pencil */
.deco-pencil {
  top: 260px;
  right: 140px;
  font-size: 55px;
  color: #ff8c42;
  transform: rotate(-25deg);
}

/* Responsive */
@media (max-width: 768px) {
  .section-deco {
    opacity: 0.25;
    transform: scale(0.7);
  }
}

.about-section,
.programs-section,
.why-section,
.gallery-section {
  position: relative;
  overflow: hidden;
}

.page-hero,
.about-intro-section,
.mv-section,
.philosophy-section,
.cta-new-section {
  position: relative;
  overflow: hidden;
}

/* CLOUD */
.deco-cloud {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 120px;
  background: #f4f6fb;
  border-radius: 100px 100px 0 0;
  opacity: 0.9;
  z-index: 0;
}

.bottom-cloud {
  top: -40px;
  bottom: auto;
}

/* COMMON */
.section-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* PAPER PLANE */
.deco-plane {
  top: 80px;
  right: 8%;
  font-size: 60px;
  color: rgba(176, 91, 184, 0.35);
  transform: rotate(-15deg);
}

/* STAR */
.deco-star {
  left: 5%;
  bottom: 100px;
  font-size: 42px;
  color: rgba(255, 149, 0, 0.4);
}

.second-star {
  top: 120px;
  right: 7%;
  left: auto;
}

/* DOTS */
.deco-dots,
.second-dots {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-image: radial-gradient(
    rgba(255, 105, 135, 0.5) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
}

.deco-dots {
  top: 120px;
  left: -40px;
}

.second-dots {
  bottom: 80px;
  right: -30px;
}

/* PENCIL */
.deco-pencil {
  top: 150px;
  right: 4%;
  font-size: 58px;
  color: rgba(255, 193, 7, 0.35);
  transform: rotate(25deg);
}

/* CHILD */
.deco-kid {
  bottom: 100px;
  left: 4%;
  font-size: 55px;
  color: rgba(255, 105, 180, 0.35);
}

/* BOOK */
.deco-book {
  top: 120px;
  left: 4%;
  font-size: 60px;
  color: rgba(32, 178, 170, 0.35);
}

/* LINES */
.deco-lines {
  position: absolute;
  right: 0;
  bottom: 120px;
  width: 120px;
  height: 120px;
}

.deco-lines::before,
.deco-lines::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: rgba(255, 215, 0, 0.45);
  border-radius: 50px;
}

.deco-lines::before {
  top: 20px;
  transform: rotate(30deg);
}

.deco-lines::after {
  top: 45px;
  transform: rotate(30deg);
}

/* ABC BLOCK */
.deco-block {
  bottom: 120px;
  left: 5%;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(255, 111, 97, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255, 111, 97, 0.7);
}

/* CONTENT ABOVE */
.container,
.page-hero-content {
  position: relative;
  z-index: 2;
}
/* =====================================================
   ABOUT PAGE SECTION COLORS
   ===================================================== */

.about-intro-section {
  background: #ede3d2;
  position: relative;
}

.mv-section {
  background: #e5dae2;
  position: relative;
}

.philosophy-section {
  background: #dde8f2;
  position: relative;
}

.cta-new-section {
  background: #f2e8d5;
  position: relative;
}

/* =====================================================
   CLOUD SEPARATORS
   ===================================================== */

/* .about-intro-section::before,
.mv-section::before,
.philosophy-section::before,
.cta-new-section::before {
  content: "";
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 130px;
  background:
    radial-gradient(circle at 50px 70px, #ffffff 60px, transparent 61px),
    radial-gradient(circle at 170px 70px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 330px 70px, #ffffff 65px, transparent 66px),
    radial-gradient(circle at 520px 70px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 760px 70px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 980px 70px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 1200px 70px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 1400px 70px, #ffffff 80px, transparent 81px);

  background-repeat: repeat-x;
  z-index: 1;
} */

/* =====================================================
   SECTION DECORATIVE COLORS
   ===================================================== */

.section-deco {
  opacity: 1;
}

.deco-plane {
  color: rgba(170, 80, 180, 0.45);
}

.deco-star {
  color: rgba(255, 166, 0, 0.45);
}

.deco-pencil {
  color: rgba(255, 193, 7, 0.4);
}

.deco-book {
  color: rgba(0, 180, 160, 0.4);
}

.deco-kid {
  color: rgba(255, 105, 180, 0.4);
}

.deco-block {
  background: rgba(255, 111, 97, 0.2);
  color: rgba(255, 111, 97, 0.8);
}

/* =====================================================
   FLOATING DOT ELEMENTS
   ===================================================== */

.deco-dots,
.second-dots {
  opacity: 0.6;
}

/* =====================================================
   CONTENT ABOVE CLOUDS
   ===================================================== */

.about-intro-section .container,
.mv-section .container,
.philosophy-section .container,
.cta-new-section .container {
  position: relative;
  z-index: 5;
}

/* =====================================================
   ADMISSIONS PAGE FUN BACKGROUNDS
   ===================================================== */

/* Main Section */
.adm-main-section {
  background: #e5dbcc;
  position: relative;
  overflow: hidden;
}

/* Why Choose Section */
.adm-why-section {
  background: #d5e5f0;
  position: relative;
  overflow: hidden;
}

/* Testimonials */
.adm-testi-section {
  background: #e5dae5;
  position: relative;
  overflow: hidden;
}

/* CTA */
.cta-new-section {
  background: #d5f0e5;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   CLOUD TOP SHAPES
   ===================================================== */
/* 
.adm-why-section::before,
.adm-testi-section::before,
.cta-new-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 130px;
  background:
    radial-gradient(circle at 50px 70px, #ffffff 60px, transparent 61px),
    radial-gradient(circle at 180px 70px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 360px 70px, #ffffff 65px, transparent 66px),
    radial-gradient(circle at 580px 70px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 850px 70px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 1100px 70px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 1400px 70px, #ffffff 80px, transparent 81px);
  background-repeat: repeat-x;
  z-index: 1;
} */

/* =====================================================
   SECTION CONTENT ABOVE CLOUDS
   ===================================================== */

.adm-main-section .container,
.adm-why-section .container,
.adm-testi-section .container,
.cta-new-section .container {
  position: relative;
  z-index: 5;
}

/* =====================================================
   DECORATIVE ELEMENTS
   ===================================================== */

.adm-main-section::after {
  content: "✈";
  position: absolute;
  top: 100px;
  right: 80px;
  font-size: 70px;
  color: rgba(171, 71, 188, 0.18);
  transform: rotate(-15deg);
}

.adm-why-section::after {
  content: "★";
  position: absolute;
  bottom: 120px;
  left: 80px;
  font-size: 65px;
  color: rgba(255, 152, 0, 0.2);
}

.adm-testi-section::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 160px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(
    rgba(255, 105, 180, 0.35) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  border-radius: 50%;
}

/* =====================================================
   CURVE LINES
   ===================================================== */

.adm-main-section .section-head::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-top: 4px solid rgba(255, 193, 7, 0.45);
  border-radius: 50%;
  transform: rotate(25deg);
}

.adm-why-section .section-head::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  width: 100px;
  height: 100px;
  border-bottom: 4px dashed rgba(76, 175, 80, 0.45);
  border-radius: 50%;
}

/* =====================================================
   CARD IMPROVEMENTS
   ===================================================== */

.adm-why-card,
.adm-testi-card,
.adm-form-card,
.adm-steps-box,
.adm-docs-box {
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}

/* =====================================================
   PLAYFUL HOVER
   ===================================================== */

.adm-why-card:hover,
.adm-testi-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  transition: 0.4s ease;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .adm-main-section::after,
  .adm-why-section::after,
  .adm-testi-section::after {
    display: none;
  }

  .adm-main-section,
  .adm-why-section,
  .adm-testi-section,
  .cta-new-section {
    padding-top: 80px;
  }
}
/* =====================================================
   SCHOOL DECOR ELEMENTS
   ===================================================== */

.school-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-plane::before {
  content: "✈";
  font-size: 55px;
  color: rgba(156, 39, 176, 0.18);
  position: absolute;
  top: 50px;
  left: 50px;
}

.deco-star::before {
  content: "★";
  font-size: 50px;
  color: rgba(255, 152, 0, 0.18);
  position: absolute;
  bottom: 80px;
  right: 60px;
}

/* =====================================================
   CONTACT PAGE PREMIUM UI
   ===================================================== */

/* QUICK BAR */
.ct-quick-bar {
  background: #fff8ef;
  position: relative;
  overflow: hidden;
}

/* MAIN CONTACT */
.ct-main-section {
  background: #dde8f2;
  position: relative;
  overflow: hidden;
}

/* BRANCHES */
.ct-branches-section {
  background: #2f7bc0;
  position: relative;
  overflow: hidden;
}

/* CTA */
.cta-new-section {
  background: #ddf5e8;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   CLOUD WAVES
   ===================================================== */
/* 
.ct-main-section::before,
.ct-branches-section::before,
.cta-new-section::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 140px;

  background:
    radial-gradient(circle at 80px 80px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 250px 80px, #ffffff 85px, transparent 86px),
    radial-gradient(circle at 500px 80px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 760px 80px, #ffffff 90px, transparent 91px),
    radial-gradient(circle at 1050px 80px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 1350px 80px, #ffffff 90px, transparent 91px);

  background-repeat: repeat-x;
  z-index: 1;
} */

/* =====================================================
   CONTENT ABOVE CLOUDS
   ===================================================== */

.ct-main-section .container,
.ct-branches-section .container,
.cta-new-section .container {
  position: relative;
  z-index: 5;
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */

/* Airplane */
.ct-main-section::after {
  content: "✈";
  position: absolute;
  top: 120px;
  right: 8%;
  font-size: 70px;
  color: rgba(171, 71, 188, 0.18);
  transform: rotate(-15deg);
}

/* Star */
.ct-branches-section::after {
  content: "★";
  position: absolute;
  bottom: 120px;
  left: 6%;
  font-size: 70px;
  color: rgba(255, 193, 7, 0.22);
}

/* Dots */
.ct-quick-bar::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 20px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(
    rgba(255, 105, 180, 0.35) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  border-radius: 50%;
}

/* =====================================================
   CURVED SCHOOL LINES
   ===================================================== */

.ct-main-section .section-head::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  width: 120px;
  height: 120px;
  border-top: 4px dashed rgba(76, 175, 80, 0.4);
  border-radius: 50%;
  transform: rotate(25deg);
}

.ct-branches-section .section-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 10px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid rgba(255, 152, 0, 0.35);
  border-radius: 50%;
}

/* =====================================================
   CARDS PREMIUM
   ===================================================== */

.ct-card,
.ct-form-card,
.ct-branch-card,
.ct-quick-item {
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

/* =====================================================
   HOVER EFFECTS
   ===================================================== */

.ct-card:hover,
.ct-quick-item:hover,
.ct-branch-card:hover {
  transform: translateY(-8px);
  transition: 0.4s ease;
}

/* =====================================================
   PLAYFUL ICONS
   ===================================================== */

.ct-card-icon,
.ct-quick-icon,
.ct-branch-icon {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   MAP SECTION
   ===================================================== */

.ct-branch-map {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.ct-branch-map::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px dashed rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}

/* =====================================================
   CTA OVERLAY
   ===================================================== */

.cta-new-overlay {
  background: linear-gradient(
    135deg,
    rgba(31, 95, 155, 0.72) 0%,
    rgba(46, 111, 149, 0.6) 100%
  );
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .ct-main-section::after,
  .ct-branches-section::after {
    display: none;
  }

  .ct-main-section,
  .ct-branches-section,
  .cta-new-section {
    padding-top: 80px;
  }
}
/* =====================================================
   FACILITIES PAGE PREMIUM UI
   ===================================================== */

/* INTRO */
.fac-intro-section {
  background: #e5dbcc;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

/* MAIN FACILITIES */
.fac-main-section {
  background: #dde8f2;
  position: relative;
  overflow: hidden;
}

/* AMENITIES */
.fac-amenities-section {
  background: #1f5f9b;
  position: relative;
  overflow: hidden;
}

/* SAFETY */
.fac-safety-section {
  background: #e5dae5;
  position: relative;
  overflow: hidden;
}

/* CTA */
.cta-new-section {
  background: #d5f0e5;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   CLOUD SHAPES
   ===================================================== */

/* .fac-main-section::before,
.fac-amenities-section::before,
.fac-safety-section::before,
.cta-new-section::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 140px;

  background:
    radial-gradient(circle at 80px 80px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 250px 80px, #ffffff 85px, transparent 86px),
    radial-gradient(circle at 500px 80px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 760px 80px, #ffffff 90px, transparent 91px),
    radial-gradient(circle at 1050px 80px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 1350px 80px, #ffffff 90px, transparent 91px);

  background-repeat: repeat-x;
  z-index: 1;
} */

/* =====================================================
   CONTENT ABOVE CLOUDS
   ===================================================== */

.fac-intro-section .container,
.fac-main-section .container,
.fac-amenities-section .container,
.fac-safety-section .container,
.cta-new-section .container {
  position: relative;
  z-index: 5;
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */

/* Paper Plane */
.fac-main-section::after {
  content: "✈";
  position: absolute;
  top: 120px;
  right: 8%;
  font-size: 70px;
  color: rgba(156, 39, 176, 0.18);
  transform: rotate(-15deg);
}

/* Star */
.fac-safety-section::after {
  content: "★";
  position: absolute;
  bottom: 120px;
  left: 5%;
  font-size: 70px;
  color: rgba(255, 193, 7, 0.2);
}

/* Pencil */
.fac-intro-section::after {
  content: "✏";
  position: absolute;
  top: 90px;
  left: 6%;
  font-size: 65px;
  color: rgba(255, 152, 0, 0.18);
  transform: rotate(-20deg);
}

/* Dots */
.fac-amenities-section::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 60px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.22) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  border-radius: 50%;
}

/* =====================================================
   SCHOOL CURVE LINES
   ===================================================== */

.fac-main-section .section-head::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 10px;
  width: 120px;
  height: 120px;
  border-top: 4px dashed rgba(76, 175, 80, 0.4);
  border-radius: 50%;
  transform: rotate(25deg);
}

.fac-safety-section .section-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid rgba(255, 152, 0, 0.35);
  border-radius: 50%;
}

/* =====================================================
   CARDS PREMIUM
   ===================================================== */

.fac-card,
.fac-amenity-item,
.fac-sf-item {
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

/* =====================================================
   CARD HOVER
   ===================================================== */

.fac-card:hover,
.fac-amenity-item:hover,
.fac-sf-item:hover {
  transform: translateY(-8px);
  transition: 0.4s ease;
}

/* =====================================================
   IMAGES
   ===================================================== */

.fac-card-img,
.fac-safety-main-img,
.fac-safety-sub-img {
  overflow: hidden;
  border-radius: 24px;
}

.fac-card-img img,
.fac-safety-main-img img,
.fac-safety-sub-img img {
  transition: 0.5s ease;
}

.fac-card:hover img,
.fac-safety-main-img:hover img,
.fac-safety-sub-img:hover img {
  transform: scale(1.05);
}

/* =====================================================
   ICONS
   ===================================================== */

.fac-card-icon,
.fac-amenity-icon,
.fac-sf-icon {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   CTA OVERLAY
   ===================================================== */

.cta-new-overlay {
  background: linear-gradient(
    135deg,
    rgba(31, 95, 155, 0.72) 0%,
    rgba(46, 111, 149, 0.6) 100%
  );
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .fac-main-section::after,
  .fac-safety-section::after,
  .fac-intro-section::after {
    display: none;
  }

  .fac-intro-section,
  .fac-main-section,
  .fac-amenities-section,
  .fac-safety-section,
  .cta-new-section {
    padding-top: 80px;
  }
}

/* =====================================================
   PROGRAMS PAGE PREMIUM UI
   ===================================================== */

/* INTRO SECTION */
.prog-intro-section {
  background: #f2e8d5;
  position: relative;
  overflow: hidden;
}

/* PROGRAM DETAIL */
.prog-detail-section {
  background: #e0edf2;
  position: relative;
  overflow: hidden;
}

/* ALTERNATE */
.prog-detail-section.alt-bg {
  background: #f2e5ef;
}

/* CTA */
.cta-new-section {
  background: #d5f0e5;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   CLOUD SHAPES
   ===================================================== */
/* 
.prog-detail-section::before,
.cta-new-section::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 140px;

  background:
    radial-gradient(circle at 80px 80px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 250px 80px, #ffffff 85px, transparent 86px),
    radial-gradient(circle at 500px 80px, #ffffff 75px, transparent 76px),
    radial-gradient(circle at 760px 80px, #ffffff 90px, transparent 91px),
    radial-gradient(circle at 1050px 80px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 1350px 80px, #ffffff 90px, transparent 91px);

  background-repeat: repeat-x;
  z-index: 1;
} */

/* =====================================================
   CONTENT ABOVE CLOUDS
   ===================================================== */

.prog-intro-section .container,
.prog-detail-section .container,
.cta-new-section .container {
  position: relative;
  z-index: 5;
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */

/* Plane */
.prog-intro-section::after {
  content: "✈";
  position: absolute;
  top: 100px;
  right: 8%;
  font-size: 70px;
  color: rgba(156, 39, 176, 0.18);
  transform: rotate(-15deg);
}

/* Star */
.prog-detail-section.alt-bg::after {
  content: "★";
  position: absolute;
  bottom: 100px;
  left: 5%;
  font-size: 65px;
  color: rgba(255, 193, 7, 0.22);
}

/* Pencil */
.prog-detail-section::after {
  content: "✏";
  position: absolute;
  top: 90px;
  left: 4%;
  font-size: 60px;
  color: rgba(255, 152, 0, 0.18);
  transform: rotate(-20deg);
}

/* Dots */
.prog-nav-pills::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(
    rgba(255, 105, 180, 0.35) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  border-radius: 50%;
  z-index: -1;
}

/* =====================================================
   CARDS
   ===================================================== */

.prog-detail-img-wrap,
.prog-schedule-box,
.prog-feat-item,
.prog-pill {
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

/* =====================================================
   HOVER
   ===================================================== */

.prog-feat-item:hover,
.prog-pill:hover {
  transform: translateY(-5px);
  transition: 0.4s ease;
}

/* =====================================================
   IMAGES
   ===================================================== */

.prog-detail-img-wrap {
  overflow: hidden;
  border-radius: 28px;
}

.prog-detail-img-wrap img {
  transition: 0.5s ease;
}

.prog-detail-img-wrap:hover img {
  transform: scale(1.05);
}

/* =====================================================
   CTA OVERLAY
   ===================================================== */

.cta-new-overlay {
  background: linear-gradient(
    135deg,
    rgba(31, 95, 155, 0.72) 0%,
    rgba(46, 111, 149, 0.6) 100%
  );
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .prog-intro-section::after,
  .prog-detail-section::after,
  .prog-detail-section.alt-bg::after {
    display: none;
  }

  .prog-intro-section,
  .prog-detail-section,
  .cta-new-section {
    padding-top: 80px;
  }
}

/* =====================================================
   PROGRAM DECORATIONS
   ===================================================== */

.prog-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-plane::before {
  content: "✈";
  position: absolute;
  top: 120px;
  right: 60px;
  font-size: 60px;
  color: rgba(156, 39, 176, 0.18);
}

.deco-book::before {
  content: "📚";
  position: absolute;
  bottom: 100px;
  left: 60px;
  font-size: 55px;
  opacity: 0.18;
}

.deco-pencil::before {
  content: "✏";
  position: absolute;
  top: 120px;
  left: 60px;
  font-size: 60px;
  color: rgba(255, 152, 0, 0.18);
  transform: rotate(-15deg);
}

.deco-star::before {
  content: "★";
  position: absolute;
  bottom: 100px;
  right: 70px;
  font-size: 60px;
  color: rgba(255, 193, 7, 0.22);
}

/* =====================================================
   CONTACT LOCATION SECTION
   ===================================================== */

.location-section {
  background: linear-gradient(135deg, #1f5f9b 0%, #2f7bc0 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* CARD */

.location-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 35px;
  padding: 45px;
}

/* HEADING */

.location-section .section-label span {
  color: #ffffff;
}

.location-section .label-line {
  background: #f4e70b;
}

/* BRANCH TITLE */

.location-branch h3 {
  color: #ffffff;
}

.location-branch span {
  color: #f4e70b;
}

/* ICON BOX */

.location-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon i {
  color: #f4e70b;
}

/* LABELS */

.location-info h4 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 4px;
}

/* TEXT FIX */

.location-info p,
.location-info span,
.location-info a {
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

/* BUTTONS */

.location-actions .btn-primary {
  background: linear-gradient(90deg, #2b6cb0, #7cc6e6);
}

.location-actions .btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.location-actions .btn-outline-white:hover {
  background: #ffffff;
  color: #1f5f9b;
}

/* MAP */

.location-map iframe {
  border-radius: 28px;
  overflow: hidden;
}

/* STAR */

.location-section::after {
  content: "★";
  position: absolute;
  left: 80px;
  bottom: 100px;
  font-size: 70px;
  color: rgba(255, 214, 0, 0.18);
}

/* CLOUD TOP */

.location-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  background:
    radial-gradient(circle at 50px 80px, #ffffff 60px, transparent 61px),
    radial-gradient(circle at 180px 80px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 340px 80px, #ffffff 65px, transparent 66px),
    radial-gradient(circle at 520px 80px, #ffffff 80px, transparent 81px),
    radial-gradient(circle at 760px 80px, #ffffff 70px, transparent 71px),
    radial-gradient(circle at 980px 80px, #ffffff 85px, transparent 86px),
    radial-gradient(circle at 1200px 80px, #ffffff 75px, transparent 76px);
  background-repeat: repeat-x;
  opacity: 0.12;
}

/* =========================================
   CONTACT BRANCH FIX
========================================= */

.ct-branches-section {
  background: #2f7bc0;
  padding: 100px 0;
}

.ct-branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-branch-info {
  padding: 50px;
}

.ct-branch-header h3,
.ct-branch-header span,
.ct-branch-detail strong,
.ct-branch-detail p,
.ct-branch-detail a {
  color: #ffffff !important;
}

.ct-branch-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.ct-branch-detail i {
  color: #f4e70b;
  font-size: 20px;
  margin-top: 5px;
}

.ct-branch-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-branch-icon i {
  color: #f4e70b;
  font-size: 28px;
}

.ct-branch-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.ct-branch-map iframe {
  min-height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .ct-branch-card {
    grid-template-columns: 1fr;
  }

  .ct-branch-map {
    height: 400px;
  }
}

/* =========================================
   PROGRAMS CLOUD IMAGE
========================================= */

.programs-section {
  position: relative;
  overflow: hidden;
  background: #edd5cc;
  padding-top: 0px;
}

/* CLOUD IMAGE */

.programs-cloud-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.programs-cloud-top img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* CONTENT ABOVE */

.programs-section .container {
  position: relative;
  z-index: 5;
}

/* MOBILE */

@media (max-width: 768px) {
  .programs-section {
    padding-top: 120px;
  }

  .programs-cloud-top img {
    height: 90px;
    object-fit: cover;
  }
}

/* =========================================
   KID-FRIENDLY SVG DECORATIONS
   ========================================= */

.section-svg-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  width: 80px;
  height: 80px;
  overflow: visible;
}

.section-svg-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svg-tl {
  top: 20px;
  left: 20px;
}
.svg-tr {
  top: 20px;
  right: 20px;
}
.svg-bl {
  bottom: 20px;
  left: 20px;
}
.svg-br {
  bottom: 20px;
  right: 20px;
}
.svg-tc {
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.svg-bc {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.svg-ml {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.svg-mr {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.svg-sm {
  width: 50px;
  height: 50px;
}
.svg-md {
  width: 70px;
  height: 70px;
}
.svg-lg {
  width: 100px;
  height: 100px;
}
.svg-xl {
  width: 130px;
  height: 130px;
}

.svg-op-3 {
  opacity: 0.3;
}
.svg-op-4 {
  opacity: 0.4;
}
.svg-op-6 {
  opacity: 0.6;
}

.svg-rot-15 {
  transform: rotate(15deg);
}
.svg-rot-n15 {
  transform: rotate(-15deg);
}
.svg-rot-30 {
  transform: rotate(30deg);
}
.svg-rot-n30 {
  transform: rotate(-30deg);
}
.svg-rot-45 {
  transform: rotate(45deg);
}
.svg-rot-n45 {
  transform: rotate(-45deg);
}
.svg-rot-10 {
  transform: rotate(10deg);
}
.svg-rot-n10 {
  transform: rotate(-10deg);
}
.svg-flip-h {
  transform: scaleX(-1);
}
.svg-flip-v {
  transform: scaleY(-1);
}

.svg-color-primary {
  color: #1f5f9b;
}
.svg-color-secondary {
  color: #8cc63f;
}
.svg-color-accent {
  color: #f28c38;
}
.svg-color-pink {
  color: #ff6b6b;
}
.svg-color-star {
  color: #f4e70b;
}
.svg-color-purple {
  color: #b197fc;
}
.svg-color-teal {
  color: #4b9b8e;
}
.svg-color-sky {
  color: #5fb3d4;
}
.svg-color-warm {
  color: #f4e7e0;
}
.svg-color-coral {
  color: #ff8e71;
}

.section-svg-deco path,
.section-svg-deco polygon,
.section-svg-deco circle,
.section-svg-deco rect,
.section-svg-deco ellipse {
  fill: currentColor;
}

@media (max-width: 768px) {
  .section-svg-deco.svg-sm {
    width: 30px;
    height: 30px;
  }
  .section-svg-deco.svg-md {
    width: 40px;
    height: 40px;
  }
  .section-svg-deco.svg-lg {
    width: 55px;
    height: 55px;
  }
  .section-svg-deco.svg-xl {
    width: 70px;
    height: 70px;
  }
  .section-svg-deco {
    opacity: 0.3;
  }
}

/* =========================================
   FULL-WIDTH SECTION DIVIDERS
   ========================================= */

.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.section-divider svg {
  width: 100%;
  height: auto;
  display: block;
}
.divider-bottom {
  bottom: 0;
}
.divider-top {
  top: 0;
}

@media (max-width: 768px) {
  .section-divider svg {
    height: 40px;
  }
}

/* ============================================
   FOOTER WAVE DIVIDER WITH BLEND EFFECT
   ============================================ */
.footer {
  position: relative;
  height: 400px;
  background: transparent;
  color: #fff;
}

.footer-wave-divider {
  position: absolute;
  width: 100%;
  top: -20%;
  overflow: hidden;
  background: transparent;
}

.footer-wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Make sure the section before footer has white/transparent bg */
.cta-new-section {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wave-divider {
    top: -50px;
  }
  .footer-wave-divider svg {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .footer-wave-divider {
    top: -30px;
  }
  .footer-wave-divider svg {
    height: 50px;
  }
}
/* 50/50 Split Layout */
.prog-detail-grid {
  display: flex;
  align-items: center;
  gap: 30px; /* Reduced gap to save space */
  width: 100%;
}

/* Both columns take exactly 50% */
.prog-detail-img-col,
.prog-detail-content-col {
  flex: 1;
  width: 50%;
}

/* Ensure the image container doesn't get "too big" on large screens */
.prog-img-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 500px; /* This prevents images from becoming massive */
  margin: 0 auto; /* Centers the grid in its half of the screen */
  position: relative;
}

.prog-img-grid-item {
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.prog-img-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tags adjusted for smaller grid */
.prog-img-grid-2x2 .prog-detail-age-tag {
  top: -10px;
  left: -5px;
  padding: 5px 12px;
  font-size: 0.8rem;
}

.prog-img-grid-2x2 .prog-detail-time-tag {
  bottom: -10px;
  right: -5px;
  padding: 5px 12px;
  font-size: 0.8rem;
}

/* Tablet & Mobile: Stack them vertically */
@media (max-width: 991px) {
  .prog-detail-grid,
  .prog-detail-grid.reverse {
    flex-direction: column !important;
  }
  .prog-detail-img-col,
  .prog-detail-content-col {
    width: 100%;
  }
}

@media (max-width: 767px) {
  /* 1. Align the main text and grid items to the left */
  .footer-main {
    text-align: left !important;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important; /* Forces columns to the left */
    text-align: left !important;
  }

  .footer-col {
    width: 100%;
    align-items: flex-start !important;
    margin-bottom: 30px;
  }

  /* 2. Align the Logo to the left */
  .footer-about .logo {
    display: inline-block;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* 3. Align Social Icons to the left */
  .footer-social {
    justify-content: flex-start !important; /* Moves icons from center to left */
    display: flex;
    gap: 10px;
  }

  /* 4. Align Contact list items to the left */
  .footer-contact li {
    justify-content: flex-start !important;
    display: flex;
    text-align: left !important;
  }

  /* 5. Fix the footer bottom (Copyright & Developer credit) */
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start !important; /* Moves copyright to left */
    text-align: left !important;
  }

  .footer-bottom-content p {
    text-align: left !important;
    margin-bottom: 5px;
  }
}

/* =========================================
   REMOVE GAP BETWEEN HEADER & HERO
========================================= */

.hero,
.page-banner,
.inner-banner,
.breadcrumb-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* REMOVE WHITE SPACE */

main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* MOBILE FIX */

@media (max-width: 768px) {
  .hero-slide-bg img {
    margin-top: -2px;
  }
}
/* ── Testimonial Avatar Initials ── */
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d, #a78bfa);
}

.testi-avatar-initials {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Remove any img styling inside avatar since no images are used */
.testi-avatar img {
  display: none;
}

/* ============ VIDEO MODAL ============ */
.simple-video-card {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
  animation: zoomIn 0.4s ease;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.video-modal-close:hover {
  transform: rotate(90deg);
  background: #ff6b9d;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .video-modal-close {
    top: -45px;
    width: 35px;
    height: 35px;
  }
}