:root {
  --primary: #0b5ed7;
  --primary-dark: #084298;
  --primary-light: #eaf3ff;

  --secondary: #f7b32b;
  --secondary-dark: #d99608;

  --dark: #10233f;
  --dark-2: #172f50;

  --text: #64748b;
  --text-dark: #334155;
  --text-light: #94a3b8;

  --white: #ffffff;
  --black: #000000;

  --light: #f7faff;
  --light-blue: #eef5ff;

  --border: #e4ebf3;
  --border-dark: #d4deea;

  --success: #16a34a;
  --danger: #dc2626;

  /* -----------------------------------------------------
       FONTS
    ------------------------------------------------------ */
  --font-heading: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* -----------------------------------------------------
       FONT SIZES
    ------------------------------------------------------ */
  --fs-xs: 11px;
  --fs-sm: 14px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;

  --fs-h6: 18px;
  --fs-h5: 21px;
  --fs-h4: 25px;
  --fs-h3: 32px;
  --fs-h2: 46px;
  --fs-h1: 72px;

  /* -----------------------------------------------------
       SPACING
    ------------------------------------------------------ */
  --space-xs: 5px;
  --space-sm: 10px;
  --space-md: 15px;
  --space-lg: 25px;
  --space-xl: 40px;
  --space-2xl: 60px;
  --space-3xl: 90px;
  --space-section: 105px;

  /* -----------------------------------------------------
       RADIUS
    ------------------------------------------------------ */
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  /* -----------------------------------------------------
       SHADOWS
    ------------------------------------------------------ */
  --shadow-sm: 0 5px 20px rgba(16, 35, 63, 0.06);
  --shadow-md: 0 12px 35px rgba(16, 35, 63, 0.09);
  --shadow-lg: 0 20px 55px rgba(16, 35, 63, 0.13);
  --shadow-primary: 0 12px 30px rgba(11, 94, 215, 0.25);

  /* -----------------------------------------------------
       TRANSITION
    ------------------------------------------------------ */
  --transition-fast: all 0.2s ease;
  --transition: all 0.35s ease;
  --transition-slow: all 0.6s ease;

  /* -----------------------------------------------------
       CONTAINER
    ------------------------------------------------------ */
  --container-width: 1200px;

  /* -----------------------------------------------------
       Z-INDEX
    ------------------------------------------------------ */
  --z-navbar: 9999;
  --z-floating: 1000;
  --z-modal: 10000;
}

/* =========================================================
   RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin-bottom: 0;
}

/* =========================================================
   COMMON
========================================================= */
.section-padding {
  padding: 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--secondary);
}

.section-label.centered {
  justify-content: center;
}

.section-heading {
  max-width: 700px;
  font-size: clamp(32px, 4vw, var(--fs-h2));
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--primary);
}

.section-description {
  max-width: 650px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.85;
}

.section-header {
  max-width: 750px;
  margin: auto;
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-contact,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition-fast);
}

.topbar a:hover {
  color: var(--secondary);
}

.topbar i {
  color: var(--secondary);
  margin-right: 5px;
}

.topbar-right > span {
  color: rgba(255, 255, 255, 0.6);
}

.topbar-right a {
  font-weight: 700;
}

/* =========================================================
   NAVBAR
========================================================= */
.main-navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 35, 63, 0.06);
  box-shadow: 0 4px 20px rgba(16, 35, 63, 0.05);
  transition: var(--transition);
  z-index: var(--z-navbar);
}

.main-navbar.scrolled {
  box-shadow: 0 10px 35px rgba(16, 35, 63, 0.12);
}

.school-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #4c94ef);

  border-radius: var(--radius-md);
  font-size: 22px;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.brand-content {
  line-height: 1.1;
}

.brand-content strong {
  display: block;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
}

.brand-content small {
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* NAV LINKS */
.navbar-nav {
  gap: 4px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 28px 13px !important;
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 17px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* DROPDOWN */
.dropdown-menu {
  min-width: 235px;
  padding: 10px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.dropdown-item {
  padding: 11px 13px;
  border-radius: 7px;
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  color: var(--primary);
  background: var(--primary-light);
  transform: translateX(3px);
}

/* NAV CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: var(--transition);
}

.nav-cta:hover {
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.nav-cta i {
  transition: var(--transition);
}

.nav-cta:hover i {
  transform: translate(2px, -2px);
}

/* =========================================================
   HERO
========================================================= */
.hero-section {
  min-height: calc(100vh - 104px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=2200&q=90")
    center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 24, 48, 0.92) 0%,
    rgba(5, 24, 48, 0.76) 42%,
    rgba(5, 24, 48, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 100px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  margin-bottom: 23px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(247, 179, 43, 0.12);
}

.hero-content h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(45px, 6vw, var(--fs-h1));
  letter-spacing: -2.5px;
}

.hero-content h1 span {
  display: block;
  color: var(--secondary);
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: var(--transition);
}

.btn-main:hover {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-main i {
  transition: var(--transition);
}

.btn-main:hover i {
  transform: translateX(4px);
}

.btn-main-dark {
  margin-top: 10px;
}

.btn-light-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: var(--transition);
}

.btn-light-outline:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* HERO TRUST */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 23px;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
}

/* HERO SHAPES */
.hero-shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-shape-one {
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: -250px;
}

.hero-shape-two {
  width: 250px;
  height: 250px;
  right: 8%;
  top: 12%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

/* SCROLL */
.scroll-indicator {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.scroll-indicator i {
  color: var(--secondary);
  animation: scrollArrow 1.7s infinite;
}

@keyframes scrollArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* =========================================================
   FEATURES
========================================================= */
.features-section {
  position: relative;
  z-index: 5;
  margin-top: -55px;
}

.feature-card {
  height: 100%;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  color: var(--white);
  background: var(--primary);
  transform: rotate(-5deg);
}

.feature-card h4 {
  margin-bottom: 9px;
  font-size: var(--fs-lg);
}

.feature-card p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.feature-card > a,
.activity-content > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.feature-card > a i,
.activity-content > a i {
  transition: var(--transition);
}

.feature-card > a:hover i,
.activity-content > a:hover i {
  transform: translateX(5px);
}

/* ABOUT  */
.about-image-wrapper {
  position: relative;
  padding-right: 35px;
  padding-bottom: 30px;
}

/* TOP-LEFT DECORATIVE SHAPE */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;

  width: 125px;
  height: 125px;

  background: #e8f1ff;
  border-radius: 18px;

  z-index: 0;
}

/* MAIN IMAGE */
.about-image-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 35, 63, 0.12), transparent);
  pointer-events: none;
}

.about-image-main img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.04);
}

/* SINCE 2011 FLOATING CARD */
.about-floating-card {
  position: absolute;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  gap: 13px;

  min-width: 170px;
  padding: 18px 20px;

  background: var(--primary);
  border-radius: var(--radius-md);
  color: var(--white);

  box-shadow: var(--shadow-primary);
  z-index: 5;
}

.floating-icon {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;
  color: var(--primary);
  background: var(--white);
}

.about-floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
}

.about-floating-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  line-height: 1.2;
}

/* TABLET */
@media (max-width: 991px) {
  .about-image-wrapper {
    padding-right: 25px;
    padding-bottom: 25px;
  }

  .about-image-wrapper::before {
    width: 100px;
    height: 100px;
    top: -12px;
    left: -12px;
  }

  .about-image-main img {
    height: 450px;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .about-image-wrapper {
    padding-right: 15px;
    padding-bottom: 20px;
  }

  .about-image-wrapper::before {
    width: 75px;
    height: 75px;
    top: -10px;
    left: -10px;
    border-radius: 14px;
  }

  .about-image-main img {
    height: 350px;
  }

  .about-floating-card {
    right: 0;
    bottom: 0;
    min-width: 145px;
    padding: 13px 15px;
    gap: 9px;
  }

  .floating-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .about-floating-card strong {
    font-size: 14px;
  }

  .about-floating-card span {
    font-size: 10px;
  }
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 25px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.check-item i {
  color: var(--success);
  font-size: 17px;
}

/* =========================================================
   STATS
========================================================= */
.stats-section {
  padding: 65px 0;
  background: var(--dark);
}

.stat-box {
  text-align: center;
  padding: 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.col-lg-3:last-child .stat-box {
  border-right: 0;
}

.stat-box strong {
  display: block;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.2;
}

.stat-box span {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
}

/* =========================================================
   ACTIVITIES
========================================================= */
.activities-section {
  background: var(--light);
}

.activity-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);

  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.activity-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.08);
}

.activity-number {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(16, 35, 63, 0.75);
  border-radius: 6px;
  backdrop-filter: blur(5px);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
}

.activity-content {
  position: relative;
  padding: 28px 25px;
}

.activity-icon {
  position: absolute;
  top: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: 12px;
  font-size: 20px;
}

.activity-content h3 {
  margin-bottom: 10px;

  font-size: 21px;
}

.activity-content p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-section {
  background: var(--light);
}

.gallery-item {
  position: relative;
  display: block;
  height: 535px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-small {
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(to top, rgba(5, 24, 48, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: var(--fs-sm);
  font-weight: 800;
}

.gallery-overlay i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
}

/* OUTLINE BUTTON */

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--dark);
  border: 1px solid var(--border-dark);

  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
}

.cta-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -280px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.04);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.cta-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  background: var(--white);
  border-radius: 15px;
  font-size: 26px;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 15px;
}

.cta-content h2 span {
  color: var(--secondary);
}

.cta-content p {
  max-width: 650px;
  margin: 0 auto 27px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 23px;
  color: var(--dark);
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: var(--transition);
}

.btn-white:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  color: rgba(255, 255, 255, 0.65);
  background: #07172c;
}

.footer-main {
  padding: 75px 0 55px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .brand-content strong {
  color: var(--white);
}

.footer-description {
  max-width: 370px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.85;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-title {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  padding-left: 4px;
  color: var(--secondary);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  line-height: 1.65;
}

.footer-contact i {
  margin-top: 3px;
  color: var(--secondary);
  font-size: 16px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--secondary);
}

/* FOOTER BOTTOM */

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-floating);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  :root {
    --fs-h1: 65px;
    --fs-h2: 42px;
  }

  .navbar-nav .nav-link {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .navbar-nav .nav-link::after {
    left: 9px;
    right: 9px;
  }
}

@media (max-width: 991px) {
  :root {
    --space-section: 80px;
  }

  .topbar-right {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .main-navbar {
    padding: 8px 0;
  }

  .navbar-nav {
    padding: 15px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    margin: 8px 10px;
  }

  .dropdown-menu {
    border-radius: 9px;
    background: var(--light);
    box-shadow: none;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .about-content {
    margin-top: 25px;
  }

  .stat-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
  }

  .col-lg-3:last-child .stat-box {
    border-bottom: 0;
  }

  .leadership-image img {
    height: 500px;
  }
}

@media (max-width: 767px) {
  :root {
    --space-section: 70px;
    --fs-h2: 34px;
  }
  .topbar {
    padding: 8px 0;
  }
  .topbar-contact {
    gap: 12px;
  }
  .topbar-contact a {
    font-size: 11px;
  }
  .brand-icon {
    width: 43px;
    height: 43px;
    font-size: 19px;
  }
  .brand-content strong {
    font-size: 15px;
  }
  .brand-content small {
    font-size: 8px;
  }
  .hero-section {
    min-height: 680px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 24, 48, 0.94),
      rgba(5, 24, 48, 0.63)
    );
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 43px;
    letter-spacing: -1.5px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-trust {
    gap: 15px;
    margin-top: 35px;
  }

  .trust-item strong {
    font-size: 18px;
  }

  .trust-item span {
    font-size: 9px;
  }

  .features-section {
    margin-top: 30px;
  }

  .about-image-wrapper {
    padding-right: 15px;
  }

  .about-image-main img {
    height: 400px;
  }

  .about-floating-card {
    right: 0;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .stat-box strong {
    font-size: 32px;
  }

  .activity-image {
    height: 220px;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-small {
    height: 230px;
  }

  .leadership-image img {
    height: 420px;
  }

  .contact-card,
  .form-card {
    padding: 28px;
  }

  .contact-card h3 {
    font-size: 29px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 420px) {
  .topbar-contact {
    flex-direction: column;
    gap: 3px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-badge {
    font-size: 10px;
  }

  .hero-trust {
    gap: 10px;
  }

  .trust-divider {
    height: 30px;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .trust-item span {
    font-size: 8px;
  }

  .about-floating-card {
    padding: 13px;
  }

  .floating-icon {
    width: 37px;
    height: 37px;
  }

  .about-floating-card strong {
    font-size: 14px;
  }

  .about-floating-card span {
    font-size: 9px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
ABOUT PAGE ONLY
========================================================= */
.inner-page-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: url("../assets/images/about-hero.jpg") center center / cover
    no-repeat;
}

.inner-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 24, 48, 0.94) 0%,
    rgba(5, 24, 48, 0.78) 48%,
    rgba(5, 24, 48, 0.42) 100%
  );
}

.inner-page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 10px 0;
}

.inner-page-hero h1 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: clamp(44px, 6vw, 60px);
  letter-spacing: -2px;
}

.inner-page-hero .hero-content > p {
  max-width: 620px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
ABOUT INTRO
========================================================= */
.about-intro {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  padding: 0 35px 35px 0;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 130px;
  height: 130px;
  border-radius: 18px;
  background: var(--primary-light);
  z-index: 0;
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 20px solid rgba(247, 179, 43, 0.12);
  z-index: 0;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.7s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.025);
}

.experience-box {
  position: absolute;
  z-index: 3;
  right: 5px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 18px 21px;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
}

.experience-box strong {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
}

.experience-box span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.about-intro .section-heading {
  margin-bottom: 18px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--secondary);
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 46px);
}

.heading-line {
  width: 55px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--secondary);
}

.lead-text {
  margin-bottom: 17px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.about-intro .col-lg-6 > p:not(.lead-text) {
  margin-bottom: 14px;
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.85;
}

.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 20px;
  margin-top: 25px;
}

.about-check-list > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.about-check-list i {
  flex-shrink: 0;
  color: var(--success);
  font-size: 17px;
}

/* =========================================================
PURPOSE / VISION / MISSION / PROMISE
========================================================= */
.purpose-section {
  background: var(--light);
}

.purpose-section .section-heading p,
.why-school .section-heading p,
.leadership-preview .section-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.5;
}

.purpose-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 35px 30px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.purpose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.purpose-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}

.purpose-card:hover::before {
  transform: scaleX(1);
}

.mission-card::before {
  background: var(--secondary);
}

.promise-card::before {
  background: var(--success);
}

.purpose-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 25px;
  transition: var(--transition);
}

.purpose-card:hover .purpose-icon {
  color: var(--white);
  background: var(--primary);
  transform: rotate(-5deg);
}

.mission-card .purpose-icon {
  color: var(--secondary-dark);
  background: rgba(247, 179, 43, 0.13);
}

.mission-card:hover .purpose-icon {
  color: var(--white);
  background: var(--secondary);
}

.promise-card .purpose-icon {
  color: var(--success);
  background: rgba(22, 163, 74, 0.1);
}

.promise-card:hover .purpose-icon {
  color: var(--white);
  background: var(--success);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--border-dark);
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}

.purpose-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.purpose-card p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.card-link i {
  transition: var(--transition);
}

.card-link:hover {
  color: var(--primary-dark);
}

.card-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
VALUES
========================================================= */
.values-section {
  background: var(--white);
}

.values-section .section-heading {
  margin-bottom: 18px;
}

.values-section .col-lg-5 > p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.85;
}

.value-card {
  height: 100%;
  padding: 25px 23px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  border-color: rgba(11, 94, 215, 0.18);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card > i {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 10px;
  font-size: 21px;
  transition: var(--transition);
}

.value-card:hover > i {
  color: var(--white);
  background: var(--primary);
}

.value-card h4 {
  margin-bottom: 7px;
  font-size: 19px;
}

.value-card p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.75;
}

/* =========================================================
WHY CHOOSE OUR SCHOOL
========================================================= */
.why-school {
  background: var(--light);
}

.why-school .feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px 27px;
}

.why-school .feature-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0;
  transition: var(--transition);
}

.why-school .feature-card:hover::after {
  opacity: 1;
}

.why-school .feature-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.why-school .feature-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* =========================================================
ABOUT CTA
========================================================= */
.about-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -150px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.about-cta::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 85px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.about-cta .container {
  position: relative;
  z-index: 2;
}

.about-cta .cta-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about-cta .cta-content > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 1.6px;
}

.about-cta .cta-content > span::before,
.about-cta .cta-content > span::after {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--secondary);
}

.about-cta h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
}

.about-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary-custom,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: var(--transition);
}

.btn-primary-custom {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--white);
}

.btn-primary-custom:hover {
  color: var(--dark);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-custom:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* =========================================================
ABOUT PAGE RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .inner-page-hero {
    min-height: 390px;
  }

  .inner-page-hero .hero-content {
    padding: 75px 0;
  }

  .about-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-intro .col-lg-6:last-child {
    margin-top: 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 15px;
  }

  .leader-image {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .inner-page-hero {
    min-height: 350px;
    background-position: 60% center;
  }

  .inner-page-hero .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 24, 48, 0.95),
      rgba(5, 24, 48, 0.68)
    );
  }

  .inner-page-hero .hero-content {
    padding: 65px 0;
  }

  .inner-page-hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .inner-page-hero .hero-content > p {
    font-size: 15px;
  }

  .about-image-wrapper {
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .about-image-wrapper::before {
    width: 90px;
    height: 90px;
    top: -12px;
    left: -10px;
  }

  .about-image-wrapper::after {
    width: 100px;
    height: 100px;
    border-width: 14px;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .experience-box {
    right: 0;
    min-width: 190px;
    padding: 14px 16px;
  }

  .experience-box strong {
    font-size: 31px;
  }

  .experience-box span {
    font-size: 10px;
  }

  .about-check-list {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    padding: 30px 25px 27px;
  }

  .statistics-section {
    padding: 50px 0;
  }

  .stat-item h3 {
    font-size: 31px;
  }

  .stat-item > i {
    font-size: 19px;
  }

  .stat-item p {
    font-size: 11px;
  }

  .leader-image {
    height: 380px;
  }

  .leader-info {
    padding: 23px;
  }

  .about-cta {
    padding: 70px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .inner-page-hero {
    min-height: 330px;
  }

  .inner-page-hero h1 {
    font-size: 37px;
  }

  .breadcrumb-wrapper {
    font-size: 11px;
  }

  .about-image-wrapper img {
    height: 350px;
  }

  .experience-box {
    min-width: 175px;
    padding: 12px;
  }

  .experience-box strong {
    font-size: 27px;
  }

  .experience-box span {
    font-size: 9px;
  }

  .purpose-card {
    padding: 27px 21px;
  }

  .card-number {
    font-size: 29px;
  }

  .value-card {
    padding: 21px;
  }

  .leader-image {
    height: 330px;
  }

  .about-cta h2 {
    font-size: 31px;
  }
}

/* =========================================================
REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .about-image-wrapper img,
  .purpose-card,
  .purpose-icon,
  .value-card,
  .value-card > i,
  .leader-card,
  .leader-image img,
  .card-link i,
  .leader-link i,
  .btn-primary-custom,
  .btn-outline-custom {
    transition: none !important;
  }
}

/* =========================================================
   ACTIVITIES PAGE
========================================================= */
.student-development-section {
  background: var(--white);
}

.student-development-section .section-heading {
  margin-bottom: 20px;
}

.student-development-section > .container > .row > .col-lg-5 > p {
  max-width: 470px;
  color: var(--text);
  line-height: 1.85;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.development-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  padding: 24px 20px;

  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  transition: var(--transition);
}

.development-item:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.development-item > i {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--primary);
  background: var(--primary-light);
  border-radius: 10px;

  font-size: 19px;
  transition: var(--transition);
}

.development-item:hover > i {
  color: var(--white);
  background: var(--primary);
}

.development-item h4 {
  margin-bottom: 5px;
  font-size: 17px;
}

.development-item p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   ACTIVITIES CTA
========================================================= */

.activities-cta {
  background: var(--light);
}

.cta-box {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;

  padding: 48px 55px;

  color: var(--white);
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));

  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-primary);
}

.cta-box::before {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  right: -120px;
  top: -170px;

  border: 55px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-box::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  left: -90px;
  bottom: -110px;

  border: 35px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-box > div {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-box .section-tag {
  color: var(--secondary);
}

.cta-box h2 {
  margin: 9px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.cta-box p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.btn-light-custom {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  flex-shrink: 0;

  padding: 13px 22px;

  color: var(--dark);
  background: var(--white);

  border: 2px solid var(--white);
  border-radius: var(--radius-md);

  font-size: var(--fs-sm);
  font-weight: 800;

  transition: var(--transition);
}

.btn-light-custom:hover {
  color: var(--dark);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-light-custom i {
  transition: var(--transition);
}

.btn-light-custom:hover i {
  transform: translateX(4px);
}

/* =========================================================
   ACTIVITIES PAGE RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .activities-hero .hero-content {
    padding: 75px 0;
  }

  .activities-hero .hero-content h1 {
    font-size: 50px;
  }

  .activity-feature-image,
  .activity-feature-image img {
    min-height: 430px;
    height: 430px;
  }

  .cta-box {
    padding: 40px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .activities-hero .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 24, 48, 0.94),
      rgba(5, 24, 48, 0.68)
    );
  }

  .activities-hero .hero-content {
    padding: 65px 0;
  }

  .activities-hero .hero-content h1 {
    margin-bottom: 14px;
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .activities-hero .hero-content p {
    font-size: 15px;
  }

  .breadcrumb-wrapper {
    font-size: 12px;
  }

  .breadcrumb-wrapper a {
    color: #0d6efd !important;
  }

  .activity-feature-image,
  .activity-feature-image img {
    min-height: 350px;
    height: 350px;
  }

  .activity-image-badge {
    right: 15px;
    bottom: 15px;
    padding: 13px 15px;
  }

  .activity-image-badge strong {
    font-size: 25px;
  }

  .activity-image-badge span {
    font-size: 10px;
  }

  .activity-card {
    padding: 28px 24px;
  }

  .activity-card h3 {
    font-size: 20px;
  }

  .development-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 25px;
    gap: 25px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .btn-light-custom {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .activities-hero .hero-content h1 {
    font-size: 37px;
  }

  .activities-hero .hero-content p {
    font-size: 14px;
  }

  .activity-feature-image,
  .activity-feature-image img {
    min-height: 300px;
    height: 300px;
  }

  .activity-image-badge {
    gap: 9px;
    padding: 11px 13px;
  }

  .activity-image-badge strong {
    font-size: 22px;
  }

  .activity-card {
    padding: 25px 20px;
  }

  .activity-icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .development-item {
    padding: 20px 16px;
  }

  .cta-box {
    padding: 28px 20px;
  }

  .cta-box h2 {
    font-size: 27px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .activity-card,
  .activity-feature-image img,
  .activity-icon,
  .development-item,
  .development-item > i,
  .btn-light-custom {
    transition: none !important;
  }
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
/* ---------- COMMON SECTION ---------- */
.section-heading {
  max-width: 760px;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  color: #0d6efd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #102a43;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-heading p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  margin: 20px auto 0;
  max-width: 680px;
}

.heading-line {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #ffc107);
  border-radius: 20px;
}

.gallery-section {
  background: #f8fafc;
}

.gallery-section .section-heading {
  margin-bottom: 35px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.gallery-filter {
  border: 1px solid #dce3eb;
  background: #fff;
  color: #334e68;
  padding: 11px 23px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  color: #fff;
  background: #0d6efd;
  border-color: #0d6efd;
  transform: translateY(-2px);
}

.gallery-filter.active {
  color: #fff;
  background: #0d6efd;
  border-color: #0d6efd;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.gallery-grid {
  position: relative;
}

.gallery-item {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-card {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(16, 42, 67, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 70px 25px 25px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(5, 24, 45, 0.92),
    rgba(5, 24, 45, 0.55),
    transparent
  );
  transform: translateY(0);
  transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  padding-bottom: 30px;
}

.gallery-overlay span {
  display: inline-block;
  color: #ffc107;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  padding-right: 55px;
}

.gallery-overlay a {
  position: absolute;
  right: 22px;
  bottom: 22px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffc107;
  color: #102a43;

  text-decoration: none;
  font-size: 1.1rem;

  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s ease;
}

.gallery-card:hover .gallery-overlay a {
  opacity: 1;
  transform: scale(1);
}

.gallery-overlay a:hover {
  background: #fff;
  color: #0d6efd;
  transform: scale(1.08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 75px 0;
  }

  .gallery-card {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 65px 0;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .gallery-filters {
    gap: 8px;
    margin-bottom: 30px;
  }

  .gallery-filter {
    padding: 9px 17px;
    font-size: 0.82rem;
  }

  .gallery-card {
    height: 280px;
    border-radius: 14px;
  }

  .gallery-overlay {
    padding: 65px 20px 20px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay a {
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }

  .gallery-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .gallery-card {
    height: 260px;
  }

  .gallery-note {
    padding: 24px;
  }

  .gallery-note-icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    font-size: 1.4rem;
  }
}

/* =========================================
   FACULTY PAGE - BODY CSS
========================================= */
.section-heading {
  margin-bottom: 25px;
}

.section-heading h2 {
  margin: 0;
  color: #102a43;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.heading-line {
  width: 65px;
  height: 4px;
  margin-top: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0d6efd, #ffc107);
}

.faculty-intro p {
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.faculty-intro .lead {
  color: #243b53;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
}

/* ---------- FACULTY INTRO ---------- */

.faculty-intro {
  background: #fff;
}

.faculty-feature-card {
  position: relative;
  padding: 45px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #f3f8ff, #ffffff);
  border: 1px solid #e3edf8;
  box-shadow: 0 18px 50px rgba(20, 55, 90, 0.09);
}

.faculty-feature-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -70px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.08);
}

.faculty-feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #084298);
  font-size: 30px;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);
}

.faculty-feature-card h3 {
  margin-bottom: 15px;
  color: #102a43;
  font-size: 27px;
  font-weight: 750;
}

.faculty-feature-card > p {
  position: relative;
  margin-bottom: 30px;
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.faculty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid #dce7f2;
}

.faculty-stats div {
  text-align: center;
}

.faculty-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #0d6efd;
  font-size: 30px;
  font-weight: 800;
}

.faculty-stats span {
  display: block;
  color: #718096;
  font-size: 13px;
  font-weight: 600;
}

/* ---------- FACULTY SECTION ---------- */

.faculty-section {
  background: #f6f9fc;
}

.faculty-section .section-heading {
  max-width: 700px;
}

.faculty-section .section-heading p {
  margin-top: 18px;
  color: #68798a;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- FACULTY CARD ---------- */

.faculty-card {
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5edf5;
  box-shadow: 0 10px 30px rgba(20, 50, 80, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 50, 80, 0.14);
}

.faculty-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #eaf1f7;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
  transform: scale(1.06);
}

/* ---------- FACULTY SOCIAL ---------- */

.faculty-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(to top, rgba(8, 25, 55, 0.85), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.faculty-card:hover .faculty-social {
  opacity: 1;
  transform: translateY(0);
}

.faculty-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #102a43;
  background: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.faculty-social a:hover {
  color: #fff;
  background: #0d6efd;
  transform: translateY(-3px);
}

/* ---------- FACULTY CONTENT ---------- */

.faculty-content {
  padding: 25px 22px 28px;
  text-align: center;
}

.faculty-content > span {
  display: inline-block;
  margin-bottom: 7px;
  color: #0d6efd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faculty-content h3 {
  margin: 0 0 7px;
  color: #102a43;
  font-size: 21px;
  font-weight: 750;
}

.faculty-content p {
  margin: 0;
  color: #718096;
  font-size: 14px;
}

/* ---------- FACULTY CTA ---------- */

.faculty-cta {
  background: linear-gradient(
    135deg,
    rgba(7, 49, 104, 0.98),
    rgba(13, 110, 253, 0.92)
  );
}

.faculty-cta .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 60px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.faculty-cta .section-tag {
  color: #ffc107;
}

.faculty-cta h2 {
  max-width: 700px;
  margin: 8px 0 15px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.faculty-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.btn-light-custom {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 25px;
  border-radius: 8px;
  color: #102a43;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-light-custom:hover {
  color: #102a43;
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-light-custom i {
  transition: transform 0.3s ease;
}

.btn-light-custom:hover i {
  transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .faculty-hero {
    min-height: 410px;
  }

  .faculty-hero .hero-content {
    padding: 70px 0;
  }

  .faculty-feature-card {
    padding: 35px;
  }

  .faculty-image {
    height: 340px;
  }

  .faculty-cta .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .faculty-hero {
    min-height: 390px;
  }

  .faculty-hero .hero-content {
    padding: 60px 0;
  }

  .faculty-hero h1 {
    font-size: 42px;
  }

  .faculty-hero p {
    font-size: 16px;
  }

  .faculty-feature-card {
    padding: 28px;
    border-radius: 18px;
  }

  .faculty-feature-card h3 {
    font-size: 24px;
  }

  .faculty-stats strong {
    font-size: 25px;
  }

  .faculty-image {
    height: 360px;
  }

  .approach-item {
    gap: 15px;
    padding: 20px;
  }

  .approach-number {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .faculty-cta .cta-box {
    padding: 35px 25px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px) {
  .faculty-hero h1 {
    font-size: 36px;
  }

  .faculty-hero p {
    font-size: 15px;
  }

  .faculty-stats {
    gap: 8px;
  }

  .faculty-stats strong {
    font-size: 22px;
  }

  .faculty-stats span {
    font-size: 11px;
  }

  .faculty-image {
    height: 330px;
  }

  .faculty-content {
    padding: 22px 18px 25px;
  }

  .approach-item {
    align-items: center;
  }

  .approach-item h3 {
    font-size: 18px;
  }

  .approach-item p {
    font-size: 13px;
  }

  .faculty-cta h2 {
    font-size: 28px;
  }

  .btn-light-custom {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   CONTACT PAGE BODY CSS
========================================= */

/* ---------- COMMON SECTION ---------- */

.section-padding {
  padding: 90px 0 50px;
}

.section-heading {
  margin-bottom: 25px;
}

.section-heading h2 {
  margin: 0;
  color: #102a43;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.heading-line {
  width: 65px;
  height: 4px;
  margin-top: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0d6efd, #ffc107);
}

.section-heading > p {
  max-width: 680px;
  margin-top: 18px;
  margin-bottom: 0;
  color: #68798a;
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- CONTACT INFORMATION ---------- */

.contact-info-section {
  background: #fff;
}

.contact-info-card {
  position: relative;
  height: 100%;
  padding: 35px 30px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid #e4ecf4;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(25, 55, 85, 0.07);
  transition: 0.35s ease;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #ffc107);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 20px 45px rgba(25, 55, 85, 0.12);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 18px;
  color: #0d6efd;
  background: #eaf3ff;
  font-size: 28px;
  transition: 0.35s ease;
}

.contact-info-card:hover .contact-card-icon {
  color: #fff;
  background: #0d6efd;
  transform: translateY(-3px);
}

.contact-info-card h3 {
  margin: 0 0 14px;
  color: #102a43;
  font-size: 23px;
  font-weight: 750;
}

.contact-info-card p {
  min-height: 78px;
  margin: 0 0 20px;
  color: #718096;
  font-size: 15px;
  line-height: 1.5;
}

.contact-info-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d6efd;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-info-card > a i {
  transition: transform 0.3s ease;
}

.contact-info-card > a:hover {
  color: #084298;
}

.contact-info-card > a:hover i {
  transform: translateX(5px);
}

/* ---------- CONTACT FORM SECTION ---------- */

.contact-form-section {
  background: #f6f9fc;
}

.contact-form-section .section-heading {
  margin-bottom: 20px;
}

.contact-form-section > .container > .row > .col-lg-5 > p {
  margin-bottom: 30px;
  color: #68798a;
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- CONTACT NOTES ---------- */

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid #e2ebf4;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s ease;
}

.contact-note:hover {
  transform: translateX(5px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 10px 25px rgba(25, 55, 85, 0.07);
}

.contact-note > i {
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  color: #0d6efd;
  background: #eaf3ff;
  font-size: 19px;
}

.contact-note strong {
  display: block;
  margin-bottom: 5px;
  color: #102a43;
  font-size: 16px;
  font-weight: 750;
}

.contact-note p {
  margin: 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- CONTACT FORM CARD ---------- */

.contact-form-card {
  padding: 40px;
  border: 1px solid #e2eaf2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(20, 55, 90, 0.09);
}

.contact-form-card label {
  display: block;
  margin-bottom: 8px;
  color: #243b53;
  font-size: 14px;
  font-weight: 700;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  min-height: 52px;
  padding: 12px 15px;
  color: #243b53;
  background-color: #fff;
  border: 1px solid #d8e2ec;
  border-radius: 9px;
  font-size: 14px;
  box-shadow: none;
  transition: 0.3s ease;
}

.contact-form-card textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form-card .form-control::placeholder {
  color: #9aa9b8;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.09);
}

.contact-form-card .form-select {
  cursor: pointer;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 25px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #084298);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  color: #fff;
  background: linear-gradient(135deg, #084298, #0d6efd);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.3);
}

.btn-primary-custom i {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(4px);
}

/* ---------- SCHOOL MAP ---------- */

.school-map-section {
  background: #fff;
}
/* 
.map-placeholder {
  position: relative;
  min-height: 420px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(rgba(9, 53, 92, 0.35), rgba(9, 53, 92, 0.35)),
    url("../assets/images/school-map.jpg") center / cover no-repeat;
  box-shadow: 0 15px 45px rgba(20, 55, 90, 0.1);
} */

/* .map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.18),
    rgba(255, 193, 7, 0.08)
  );
} */

/* .map-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(90%, 500px);
  padding: 35px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
} */

.map-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: #0d6efd;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.map-overlay-content h3 {
  margin: 0 0 10px;
  color: #102a43;
  font-size: 24px;
  font-weight: 750;
}

.map-overlay-content p {
  margin: 0 0 22px;
  color: #718096;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .contact-hero {
    min-height: 410px;
  }

  .contact-hero .hero-content {
    padding: 70px 0;
  }

  .contact-form-card {
    padding: 32px;
  }

  .map-placeholder {
    min-height: 390px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .contact-hero {
    min-height: 390px;
  }

  .contact-hero .hero-content {
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-info-card {
    padding: 30px 25px;
  }

  .contact-form-card {
    padding: 25px;
    border-radius: 16px;
  }

  .map-placeholder {
    min-height: 420px;
  }

  .map-overlay-content {
    padding: 28px 22px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-info-card p {
    min-height: auto;
  }

  .contact-note {
    padding: 16px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-form-card .btn-primary-custom {
    width: 100%;
  }

  .map-placeholder {
    min-height: 390px;
    border-radius: 16px;
  }

  .map-overlay-content {
    width: 88%;
    padding: 24px 18px;
  }

  .map-overlay-content h3 {
    font-size: 20px;
  }

  .map-overlay-content p {
    font-size: 14px;
  }

  .map-overlay-content .btn-primary-custom {
    width: 100%;
  }
}

/* =========================================================
   SCHOOL LOGO
   ========================================================= */

.school-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.school-logo {
  width: 65px;
  height: 65px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  width: 75px;
  height: 75px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* =========================================================
   MOBILE LOGO
   ========================================================= */

@media (max-width: 991px) {
  .school-logo {
    width: 180px;
    max-height: 60px;
  }
}

@media (max-width: 575px) {
  .school-logo {
    width: 160px;
    max-height: 55px;
  }

  .footer-logo {
    width: 190px;
  }
}
