:root {
  --clr-primary: #3c7a89;
  --clr-pink: #e07a5f;
  --clr-yellow: #f4b942;
  --clr-lavender: #eef4f5;
  --clr-dark: #2d5f5d;
}

:root {
  --primary: #3c7a89;
  --secondary: #e07a5f;
  --accent: #f4b942;
  --green: #2d5f5d;
  --orange: #e07a5f;
  --light-bg: #fdfdf7;
  --text-dark: #2b2b2b;
  --text-muted: #5a6a6a;
  --white: #ffffff;
  --card-radius: 20px;
}
:root {
  --amber: #f4b942;
  --navy: #1a1a2e;
}

:root {
  --pink: #e07a5f;
  --purple: #3c7a89;
  --yellow: #f4b942;
  --lavender: #eef4f5;
  --dark-nav: #2d5f5d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: #fdfdf7;
  overflow-x: hidden;
  color: #2b2b2b;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ NAVBAR ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
}

.brand-trishna {
  color: #3c7a89;
}

.brand-montessori {
  color: #e07a5f;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2b2b2b !important;
  padding: 6px 14px !important;
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #e07a5f !important;
}

.navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #e07a5f;
  border-radius: 50%;
  margin: 3px auto 0;
}

.btn-contact {
  background: #f4b942;
  color: #2b2b2b !important;
  border-radius: 8px;
  padding: 8px 22px !important;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.25s;
}

.btn-contact:hover {
  background: #d9a030;
  color: #2b2b2b !important;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.hero {
  background: #eef4f5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* decorative cloud shapes */
.cloud-shape {
  position: absolute;
  opacity: 0.65;
  pointer-events: none;
}

.cloud-tl {
  width: 198px;
  top: -2px;
  left: -65px;
  animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
  0% {
    transform: translateY(0px) rotate(80deg);
  }
  50% {
    transform: translateY(-15px) rotate(85deg);
  }
  100% {
    transform: translateY(0px) rotate(80deg);
  }
}

.cloud-bl {
  width: 150px;
  bottom: 10px;
  left: 10px;
  animation: float 7s 1s ease-in-out infinite;
}

.cloud-br {
  width: 160px;
  bottom: -20px;
  right: -30px;
  animation: float 8s 0.5s ease-in-out infinite;
}

.cloud-tr {
  width: 110px;
  top: 20px;
  right: 8%;
  animation: float 5s 2s ease-in-out infinite;
}

.yellow-circle {
  position: absolute;
  width: 655px;
  height: 373px;
  right: 165px;
  bottom: -52px;
  z-index: 0;
  animation: scaleIn 0.9s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* doodle elements */
.doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.doodle-plane {
  top: 18%;
  left: 38%;
  font-size: 6rem;
  color: #3c7a89;
  animation: flyPlane 4s ease-in-out infinite;
}

.doodle-star1 {
  bottom: 18%;
  left: 34%;
  font-size: 5.8rem;
  color: #f4b942;
  animation: twinkle 2s 0.5s ease-in-out infinite;
}

.doodle-sun {
  top: 14%;
  right: 14%;
  font-size: 2.2rem;
  color: #f4b942;
  animation: spin 12s linear infinite;
}

.doodle-cloud1 {
  bottom: 30%;
  right: 22%;
  font-size: 1.6rem;
  color: #fff;
  animation: drift 5s ease-in-out infinite;
}

.doodle-cloud2 {
  bottom: 42%;
  right: 10%;
  font-size: 2rem;
  color: #fff;
  animation: drift 6s 1s ease-in-out infinite;
}

/* hero text */
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2d5f5d;
  line-height: 1.15;
  animation: fadeUp 0.8s 0.4s both;
}

.hero-text h1 span {
  color: #e07a5f;
  font-weight: 800;
  display: block;
}

.hero-text p {
  color: #2b2b2b;
  font-size: 0.97rem;
  margin-top: 12px;
  max-width: 340px;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-btns {
  animation: fadeUp 0.8s 0.8s both;
}

.btn-discover {
  background: #3c7a89;
  color: #fff;
  border-radius: 30px;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-discover:hover {
  background: #2d5f5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(60, 122, 137, 0.35);
  color: #fff;
}

.btn-discover i {
  transition: transform 0.3s;
}

.btn-discover:hover i {
  transform: translateX(4px);
}

.btn-video {
  background: #fff;
  color: #2b2b2b;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid #ddd;
  transition:
    border-color 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-video:hover {
  border-color: #e07a5f;
  color: #e07a5f;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.2);
}

.play-icon {
  width: 28px;
  height: 28px;
  background: #2b2b2b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  transition: background 0.25s;
}

.btn-video:hover .play-icon {
  background: #e07a5f;
}

/* kids image */
.kids-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s 0.35s both;
}

.kids-img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.18));
  transform: scale(1);
  transition: transform 0.4s;
}

.kids-img:hover {
  transform: scale(1.03);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ KEYFRAMES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes flyPlane {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-12px);
  }
}

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

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

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

a {
  text-decoration: auto;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RESPONSIVE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 40px 0 0;
  }
  .yellow-circle {
    width: 320px;
    height: 320px;
    right: -40px;
    bottom: -40px;
  }
  .kids-img {
    max-height: 280px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .doodle-sun,
  .doodle-cloud2 {
    display: none;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ TOPBAR ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.topbar {
  background: #3c7a89;
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
  letter-spacing: 0.01em;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  color: #f4b942;
}

.navbar-brand img {
  width: 300px;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .navbar-brand img {
    width: 200px;
  }
  .doodle-plane {
    display: none;
  }
  .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO SECTION (2nd section) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
:root {
  --pink: #e07a5f;
  --teal: #3c7a89;
  --orange: #f4b942;
  --light-bg: #fdfdf7;
}

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.blob-orange {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 130px;
  height: 160px;
  background: #f4b942;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  z-index: 0;
  animation: blobFloat 6s ease-in-out infinite;
}

.blob-pink-dot {
  position: absolute;
  bottom: 100px;
  left: 220px;
  width: 36px;
  height: 36px;
  background: #e07a5f;
  border-radius: 50%;
  z-index: 2;
  animation: blobFloat 4s ease-in-out infinite reverse;
}

.blob-teal-sm {
  position: absolute;
  top: 30px;
  right: 120px;
  width: 22px;
  height: 22px;
  background: #3c7a89;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.5;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.img-blob-wrap {
  position: relative;
  width: 370px;
  max-width: 100%;
  margin: 0 auto;
}

.img-blob-wrap .blob-frame {
  position: relative;
  width: 320px;
  height: 340px;
  margin: 0 auto;
  clip-path: polygon(
    50% 0%,
    93% 15%,
    100% 60%,
    80% 95%,
    20% 95%,
    0% 60%,
    7% 15%
  );
  overflow: hidden;
  z-index: 1;
}

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

.book-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.18;
  width: 70px;
}

.school-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e07a5f;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #2d5f5d;
  margin-bottom: 6px;
}

.hero-title .highlight {
  color: #3c7a89;
}

.hero-desc {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.btn-know {
  background: #f4b942;
  color: #2b2b2b;
  border: none;
  border-radius: 40px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.btn-know:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 185, 66, 0.4);
  color: #2b2b2b;
}

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

.right-img-wrap {
  position: relative;
}

.right-img-wrap img {
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
  animation: blobFloat 7s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0 60px;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 28px;
  }
  .btn-know {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .img-blob-wrap .blob-frame {
    width: 240px;
    height: 260px;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ LIFE SECTION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.life-section {
  background: transparent linear-gradient(358deg, #fef7ee 0%, #fdfdf7 100%) 0%
    0% no-repeat padding-box;
  padding: 50px 0 45px;
  position: relative;
  overflow: hidden;
}

.deco-planet {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 120px;
  animation: orbitSpin 14s linear infinite;
}

.deco-blocks {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 110px;
  animation: blockBounce 3s ease-in-out infinite;
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.04);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e07a5f;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #2d5f5d;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-title .w-pink {
  color: #e07a5f;
}

.section-title .w-teal {
  color: #3c7a89;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FEATURE CARDS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.feature-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card.visible {
  animation: cardReveal 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.05s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.18s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.31s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.44s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: #cde4e8;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ICON CIRCLES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.feature-card:hover .icon-circle {
  transform: rotate(8deg) scale(1.1);
}

.icon-circle img,
.icon-circle svg {
  width: 34px;
  height: 34px;
}

/* Life section icon colors ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â teal/coral palette */
.ic-pink {
  background: #e07a5f;
}
.ic-teal {
  background: #3c7a89;
}
.ic-green {
  background: #2d5f5d;
}
.ic-amber {
  background: #f4b942;
}

/* Program card icon colors */
.ic-blue {
  background: #3c7a89;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2d5f5d;
  margin-bottom: 13px;
}

.card-desc {
  font-size: 0.9rem;
  color: #2b2b2b;
  opacity: 0.75;
  line-height: 1.55;
  margin: 0;
}

.heading-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.heading-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .deco-planet {
    width: 70px;
    top: 20px;
    left: 10px;
  }
  .deco-blocks {
    width: 65px;
    top: 14px;
    right: 10px;
  }
  .life-section {
    padding: 60px 0 70px;
  }
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â PROGRAMS SECTION ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.programs-section {
  padding: 34px 0 29px;
  background: #fdfdf7;
  overflow: hidden;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #e07a5f;
  margin-bottom: 14px;
}

.section-eyebrow svg {
  flex-shrink: 0;
}

.section-title .highlight {
  color: #e07a5f;
}

.btn-view-all {
  background: #3c7a89;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(60, 122, 137, 0.35);
  color: #fff;
  background: #2d5f5d;
}

.btn-view-all .arrow-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â PROGRAM CARD ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.prog-card {
  border-radius: 24px;
  padding: 22px 20px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: none;
  opacity: 0;
  transform: translateY(50px);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.prog-card.visible {
  animation: cardUp 0.65s ease forwards;
}

.prog-card:nth-child(1) {
  animation-delay: 0.05s;
}
.prog-card:nth-child(2) {
  animation-delay: 0.18s;
}
.prog-card:nth-child(3) {
  animation-delay: 0.31s;
}
.prog-card:nth-child(4) {
  animation-delay: 0.44s;
}

@keyframes cardUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* colour themes ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â updated palette */
.theme-pink {
  background: #fdf0ec;
}
.theme-blue {
  background: #eef4f5;
}
.theme-amber {
  background: #fef8ec;
}
.theme-green {
  background: #edf3f3;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â CARD HEADER ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.prog-card:hover .icon-circle {
  transform: rotate(12deg) scale(1.12);
  animation: iconWiggle 0.5s ease;
}

@keyframes iconWiggle {
  0% {
    transform: rotate(0deg) scale(1);
  }
  30% {
    transform: rotate(-10deg) scale(1.1);
  }
  60% {
    transform: rotate(14deg) scale(1.15);
  }
  100% {
    transform: rotate(12deg) scale(1.12);
  }
}

.card-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 3px;
  line-height: 1.2;
}

.cn-pink {
  color: #e07a5f;
}
.cn-blue {
  color: #3c7a89;
}
.cn-amber {
  color: #d9940e;
}
.cn-green {
  color: #2d5f5d;
}

.card-age {
  font-size: 0.84rem;
  font-weight: 600;
  color: #6a7a7a;
  margin: 0;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â CARD IMAGE ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.card-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 185px;
  margin-bottom: 18px;
  position: relative;
}

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

.prog-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â CARD DESCRIPTION ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
#cardsRow .card-desc {
  font-size: 14px;
  color: #2b2b2b;
  opacity: 0.75;
  line-height: 1.65;
  text-align: center;
  padding: 0 4px;
  margin-bottom: 3px;
  margin-top: 0px;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â TIME BADGE ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.tb-pink {
  background: #fde0d6;
  color: #b04f38;
}
.tb-blue {
  background: #cde4e8;
  color: #2d5f5d;
}
.tb-amber {
  background: #fdefc7;
  color: #9a6a0a;
}
.tb-green {
  background: #d9eeee;
  color: #2d5f5d;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â HEADING ANIMATION ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.heading-wraps {
  opacity: 1;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.heading-wraps.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .btn-view-all {
    margin-top: 18px;
  }
}
:root {
  --bg: #fdfdf7;
  --teal: #3c7a89;
  --dteal: #2d5f5d;
  --marigold: #f4b942;
  --coral: #e07a5f;
  --charcoal: #2d5f5d;
  --white: #ffffff;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
       STATS BANNER
    ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.stats-banner {
  position: relative;
  background: var(--teal);
  padding: 60px 0 60px;
  margin-bottom: 0;
}

/* wave bottom */
.stats-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 52px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* wave top ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â white arch coming down from navbar */
.stats-banner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 44px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 0 10px;
  animation: fadeUp 0.7s ease both;
}
.stat-item:nth-child(1) {
  animation-delay: 0.05s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.15s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.25s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.35s;
}
.stat-item:nth-child(5) {
  animation-delay: 0.45s;
}

.stat-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.01em;
}

/* dividers between stats */
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  align-self: center;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
       CREATIVE SECTION
    ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.creative-section {
  padding: 60px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* decorative floating stars */
.star-deco {
  position: absolute;
  font-size: 1.4rem;
  color: var(--marigold);
  opacity: 0.45;
  pointer-events: none;
}
.star-deco.s1 {
  top: 18%;
  left: 52%;
  animation: twinkle 3s ease-in-out infinite;
}
.star-deco.s2 {
  top: 28%;
  left: 58%;
  font-size: 1rem;
  animation: twinkle 4s 1s ease-in-out infinite;
}
.star-deco.s3 {
  top: 23%;
  left: 63%;
  font-size: 0.85rem;
  animation: twinkle 3.5s 0.5s ease-in-out infinite;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.creative-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.creative-title .highlight {
  color: var(--teal);
}

.creative-desc {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.78;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.btn-find {
  border: 2px solid var(--coral);
  color: var(--coral);
  background: transparent;
  border-radius: 40px;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-find:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ IMAGE COLLAGE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.img-collage {
  position: relative;
  height: 420px;
}

.img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s;
}

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

.img-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 36%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s;
}

.img-side:hover {
  transform: scale(1.02);
}

/* pink circle overlay */
.circle-overlay {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--coral);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(224, 122, 95, 0.35);
  z-index: 5;
  transition: box-shadow 0.3s;
}

.circle-overlay:hover {
  box-shadow: 0 12px 36px rgba(224, 122, 95, 0.5);
}

.circle-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* floating badge */
.badge-float {
  position: absolute;
  bottom: 24px;
  left: 10px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  z-index: 6;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--marigold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.badge-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dteal);
  line-height: 1;
}

.badge-txt {
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.65;
  font-weight: 600;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ KEYFRAMES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

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

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RESPONSIVE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 991px) {
  .stat-divider {
    display: none;
  }
  .creative-section {
    padding: 40px 0 60px;
  }
  .img-collage {
    height: 320px;
  }
  .circle-overlay {
    width: 110px;
    height: 110px;
    left: 39%;
  }
}

@media (max-width: 767px) {
  .stats-banner {
    padding: 52px 0 62px;
  }
  .img-collage {
    height: 260px;
    margin-top: 30px;
  }
  .creative-desc {
    font-size: 0.95rem;
  }
  .badge-float {
    padding: 8px 14px;
  }
}
:root {
  --accent: #e91e63;
  --accent-light: #fce4ec;
  --text-dark: #2d5f5d;
  --text-muted: #6b6b8a;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Section Header ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.gallery-section {
  padding: 60px 0 80px;
}

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.gallery-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gallery-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Doodle decorations ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.deco-house {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
}

.deco-rocket {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
  opacity: 0.75;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Gallery Grid ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

/* Big left image spans 2 rows */
.gallery-item.big {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

/* Right large image spans 2 rows */
.gallery-item.right-big {
  grid-row: 1 / 3;
  grid-column: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Subtle overlay on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 22px;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.big {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    height: 260px;
  }
  .gallery-item.right-big {
    grid-row: auto;
    grid-column: auto;
    height: 230px;
  }
  .gallery-grid .gallery-item {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.big {
    grid-column: 1 / 2;
    height: 240px;
  }
  .gallery-grid .gallery-item {
    height: 190px;
  }
}
:root {
  /* --teal: #00bfa5; */
  --purple: #3c7a89;
  /* --purple2: #5e35b1; */
  --cream: #fff8f2;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
       NEWS & EVENTS
    ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.news-section {
  padding: 60px 0 50px;
  background: #fff;
}

.label-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}

/* News cards */
.news-card {
  border: none;
  border-radius: 0;
  background: transparent;
}

.news-card .img-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
}

.news-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .img-wrap img {
  transform: scale(1.07);
}

.news-card .card-body {
  padding: 14px;
}

.news-card .card-text {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

/* View more button */
.btn-view {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-view:hover {
  background: #c2185b;
  color: #fff;
  transform: translateY(-2px);
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
       NEWSLETTER SECTION
    ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.newsletter-section {
  background: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.news-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.nl-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
}

.nl-title .highlight {
  color: var(--teal);
}

.nl-desc {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 440px;
  margin: 10px auto 24px;
  line-height: 1.7;
}

/* Input + button pill */
.nl-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.nl-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-family: "Nunito", sans-serif;
  background: transparent;
  color: var(--text);
}

.nl-form input::placeholder {
  color: #aaa;
}

.nl-form button {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.nl-form button:hover {
  background: #c2185b;
}

/* Deco stars */
.star {
  position: absolute;
  color: var(--pink);
  font-size: 1.1rem;
  opacity: 0.35;
}
.star-1 {
  top: 24%;
  left: 5%;
}
.star-2 {
  top: 60%;
  left: 8%;
  font-size: 0.7rem;
}
.star-3 {
  top: 40%;
  left: 3%;
  font-size: 1.5rem;
}

/* Planet deco SVG */
.deco-planet {
  position: absolute;
  bottom: 10%;
  left: 7%;
  opacity: 0.85;
}

/* UFO deco */
.deco-ufo {
  position: absolute;
  bottom: 12%;
  right: 7%;
  opacity: 0.85;
}

/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
       FOOTER
    ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.site-footer {
  background: #3c7a89;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  border-bottom: 1px dashed #ffffff9c;
}
.site-footer h6 {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p {
  font-size: 15px;
  line-height: 1.75;
  color: rgb(255 255 255 / 84%);
  margin: 0;
}

.site-footer a {
  font-size: 15px;
  line-height: 1.85;
  color: rgb(255 255 255 / 84%);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}

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

/* Email input */
.footer-email {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 12px;
  max-width: 210px;
}
.footer-email input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-family: "Nunito", sans-serif;
}
.footer-email input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-email button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 1rem;
}

/* Logo card */
.footer-logo-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 300px;
}
.footer-logo-card .logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-logo-card .logo-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--purple);
}
.footer-logo-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Column divider */
.col-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ LEFT deco (girl doing cartwheel) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.deco-left {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 3;
  pointer-events: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RIGHT deco (kid with raised arms) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.deco-right {
  position: absolute;
  right: 10px;
  bottom: 30px;
  z-index: 3;
  pointer-events: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Small rocket bottom-right ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.deco-rocket-small {
  position: absolute;
  right: 18px;
  bottom: 8px;
  z-index: 3;
  pointer-events: none;
}

/* Copyright */
.copyright-bar {
  background: var(--purple2);
  color: rgb(255 255 255 / 92%);
  font-size: 14px;
  text-align: center;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .deco-left,
  .deco-right,
  .deco-rocket-small {
    display: none;
  }
  .col-divider {
    border-right: none;
  }
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ About Section ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about-section {
  position: relative;
  background-color: #f5f0e8;
  padding: 0px 60px 20px;
  overflow: hidden;
  min-height: 220px;
}

/* wavy bottom border */
.about-section::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 55' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C120,55 240,5 360,30 C480,55 600,5 720,30 C840,55 960,5 1080,30 C1200,55 1320,5 1440,30 L1440,55 L0,55 Z' fill='%23ffffff'/%3E%3C/svg%3E")
    no-repeat bottom center / cover;
}

/* decorative dots pattern */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d4c9b0 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Text ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f03e6e;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.about-desc {
  font-size: 1rem;
  color: #3a3a3a;
  /* max-width: 340px; */
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Illustration column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.illus-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* heart icon */
.heart-icon {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 1.5rem;
  color: #f5a623;
  z-index: 2;
}

/* stars */
.stars {
  position: absolute;
  top: 30%;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.star {
  width: 14px;
  height: 14px;
  background: #f5c842;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

/* SVG fox illustration */
.fox-svg {
  width: 379px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive tweaks ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 24px 80px;
    text-align: center;
  }

  .about-desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .illus-col {
    justify-content: center;
    margin-top: 24px;
  }

  .heart-icon {
    right: 10px;
  }
}
:root {
  --vision-bg: #fff8ee;
  --vision-border: #f5a623;
  --vision-icon-bg: #fff3d6;

  --mission-bg: #eef6ff;
  --mission-border: #5ab4f5;
  --mission-icon-bg: #daeeff;

  --values-bg: #fff0f3;
  --values-border: #f76d8e;
  --values-icon-bg: #ffe0e8;

  --text-dark: #2d2d2d;
  --text-body: #555;
  --radius: 20px;
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ wrapper ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-wrapper {
  width: 100%;
  max-width: 100%;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ card base ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-card {
  border-radius: var(--radius);
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;

  /* entrance animation */
  opacity: 0;
  transform: translateY(40px);
  animation: cardIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.vmv-card:nth-child(1) {
  animation-delay: 0.1s;
}
.vmv-card:nth-child(2) {
  animation-delay: 0.25s;
}
.vmv-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vmv-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* dashed border via outline trick */
.vmv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px dashed var(--card-dash-color);
  pointer-events: none;
  transition: border-color 0.3s;
}

/* shimmer sweep on hover */
.vmv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.vmv-card:hover::after {
  transform: translateX(100%);
}

/* per-card colours */
.vmv-vision {
  background: var(--vision-bg);
  --card-dash-color: var(--vision-border);
}
.vmv-mission {
  background: var(--mission-bg);
  --card-dash-color: var(--mission-border);
}
.vmv-values {
  background: var(--values-bg);
  --card-dash-color: var(--values-border);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ icon bubble ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 4px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vmv-vision .vmv-icon-wrap {
  background: var(--vision-icon-bg);
}
.vmv-mission .vmv-icon-wrap {
  background: var(--mission-icon-bg);
}
.vmv-values .vmv-icon-wrap {
  background: var(--values-icon-bg);
}

.vmv-card:hover .vmv-icon-wrap {
  transform: rotate(-12deg) scale(1.18);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ heading ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.3px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ divider ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-divider {
  height: 2px;
  border-radius: 4px;
  margin: 18px 0 16px;
  width: 40px;
  transition: width 0.4s ease;
}

.vmv-vision .vmv-divider {
  background: var(--vision-border);
}
.vmv-mission .vmv-divider {
  background: var(--mission-border);
}
.vmv-values .vmv-divider {
  background: var(--values-border);
}

.vmv-card:hover .vmv-divider {
  width: 80px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ body text ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-text {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ decorative circle ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vmv-blob {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  opacity: 0.12;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.vmv-card:hover .vmv-blob {
  transform: scale(1.3);
  opacity: 0.2;
}

.vmv-vision .vmv-blob {
  background: var(--vision-border);
}
.vmv-mission .vmv-blob {
  background: var(--mission-border);
}
.vmv-values .vmv-blob {
  background: var(--values-border);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 768px) {
  .vmv-card {
    padding: 28px 24px 32px;
  }
}
:root {
  --sky: #60c3f5;
  --dark: #1a1a2e;
  --body-color: #4a4a6a;
  --light: #f8f7ff;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ LAYOUT SYSTEM ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.page-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col-grid--5-7 {
  grid-template-columns: 5fr 7fr;
}

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

.emoji-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.emoji-cluster {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .two-col-grid,
  .two-col-grid--5-7 {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-col-first {
    order: -1;
  }
}
@media (max-width: 540px) {
  .hero-photo {
    height: 240px;
  }
  .safety-photo {
    height: 260px;
  }
  .floating-badge {
    display: none;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO SECTION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.intro-section {
  background: linear-gradient(135deg, #fffbf0 0%, #f0fff8 50%, #f8f0ff 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 201, 167, 0.12) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.intro-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 157, 0.1) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

/* image side */
.photo-frame {
  position: relative;
  opacity: 0;
  animation: popIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-photo {
  width: 100%;
  height: 380px;
  border-radius: 32px;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
}
.floating-badge--top {
  top: 20px;
  left: -18px;
  animation: floatBadge 3s ease-in-out infinite;
}
.floating-badge--bottom {
  bottom: 28px;
  right: -18px;
  animation: floatBadge 3.5s ease-in-out 0.6s infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* text side */
.intro-content {
  opacity: 0;
  animation: slideUp 0.7s ease 0.2s forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-eyebrow {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255, 107, 157, 0.1);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.section-eyebrow--teal {
  color: var(--teal);
  background: rgba(0, 201, 167, 0.1);
}

.intro-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.intro-heading .teal-accent {
  color: var(--teal);
}

.intro-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-color);
  font-weight: 500;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ WAVE DIVIDER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.wave-break {
  height: 60px;
  overflow: hidden;
  line-height: 0;
  background: #fff;
}
.wave-break svg {
  display: block;
  width: 100%;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ STATS BAR ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.metrics-bar {
  background: var(--dark);
  padding: 36px 0;
}
.metric-block {
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.metric-block:nth-child(1) {
  animation-delay: 0.1s;
}
.metric-block:nth-child(2) {
  animation-delay: 0.2s;
}
.metric-block:nth-child(3) {
  animation-delay: 0.3s;
}
.metric-block:nth-child(4) {
  animation-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-number {
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-caption {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SAFETY SECTION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.safety-section {
  padding: 90px 0 70px;
  background: #fff;
}

.safety-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.safety-paragraph {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--body-color);
  font-weight: 500;
  margin-bottom: 12px;
}

/* checklist */
.safety-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.safety-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--body-color);
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--light);
  border: 1.5px solid rgba(0, 201, 167, 0.15);
  opacity: 0;
  transform: translateX(-30px);
  animation: listSlide 0.5s ease forwards;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.safety-list__item:hover {
  background: rgba(0, 201, 167, 0.06);
  border-color: rgba(0, 201, 167, 0.3);
  transform: translateX(4px);
}
.safety-list__item:nth-child(1) {
  animation-delay: 0.5s;
}
.safety-list__item:nth-child(2) {
  animation-delay: 0.62s;
}
.safety-list__item:nth-child(3) {
  animation-delay: 0.74s;
}
.safety-list__item:nth-child(4) {
  animation-delay: 0.86s;
}
.safety-list__item:nth-child(5) {
  animation-delay: 0.98s;
}
@keyframes listSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-circle svg {
  width: 12px;
}

/* safety photo */
.safety-photo-frame {
  position: relative;
  opacity: 0;
  animation: popIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards;
}
.safety-photo {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}
.safety-photo-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 38px;
  border: 3px dashed rgba(0, 201, 167, 0.3);
  /* animation: spinRing 18s linear infinite; */
  pointer-events: none;
}
@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ DECORATIVE FOOTER ROW ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.fun-footer {
  background: linear-gradient(135deg, #fffbf0, #f0fff8, #f8f0ff);
  padding: 50px 0 40px;
  border-top: 2px dashed rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.floating-emoji {
  font-size: 3.2rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: floatEmoji var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  cursor: default;
  user-select: none;
  transition: transform 0.2s;
}
.floating-emoji:hover {
  transform: scale(1.3) rotate(10deg) !important;
}

@keyframes floatEmoji {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}

.svg-float {
  animation: floatEmoji 3.5s ease-in-out 0.2s infinite;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SCROLL REVEAL ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ tokens ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
:root {
  --pink-light: #ffd6e7;
  --star: #00c9a7;
  --deco-star: #e8b89a;
  --dark: #1a1a2e;
  --body-c: #555577;
  --card-r: 36px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION WRAPPER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-section {
  position: relative;
  padding: 70px 0 0;
  background: #fff;
  overflow: hidden;
}

/* pink gradient blob background */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 80%,
      rgba(255, 107, 157, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 20% 50%,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.testi-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HEADING ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-eyebrow {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeDown 0.6s ease 0.1s forwards;
}

.testi-heading {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeDown 0.6s ease 0.2s forwards;
}
.testi-heading .accent {
  color: var(--teal);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ DECO: rocket + stars ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-section .deco-rocket {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 160px;
  opacity: 0;
  animation:
    fadeIn 0.8s ease 0.4s forwards,
    rocketFloat 4s ease-in-out 1.2s infinite;
  pointer-events: none;
}
.testi-section .deco-stars-right {
  position: absolute;
  top: 18px;
  right: 40px;
  opacity: 0;
  animation:
    fadeIn 0.8s ease 0.5s forwards,
    starsPulse 3s ease-in-out 1.3s infinite;
  pointer-events: none;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
@keyframes starsPulse {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.1) rotate(6deg);
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ TV-SHAPED CAROUSEL CARD ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tv-stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

/* big pink rounded TV shape behind */
.tv-bg {
  position: absolute;
  inset: -30px -24px -60px -24px;
  background: rgba(255, 107, 157, 0.1);
  border-radius: 56px;
  pointer-events: none;
}

/* quote mark deco */
.tv-quote-mark {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 107, 157, 0.18);
  pointer-events: none;
  user-select: none;
}

/* the white card */
.testi-card {
  background: #fff;
  border-radius: var(--card-r);
  padding: 44px 48px 40px;
  box-shadow:
    0 16px 60px rgba(255, 107, 157, 0.14),
    0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

/* stars row */
.star-row {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.star-icon {
  font-size: 1.5rem;
  color: var(--star);
  animation: starPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.star-icon:nth-child(1) {
  animation-delay: 0.05s;
}
.star-icon:nth-child(2) {
  animation-delay: 0.1s;
}
.star-icon:nth-child(3) {
  animation-delay: 0.15s;
}
.star-icon:nth-child(4) {
  animation-delay: 0.2s;
}
.star-icon:nth-child(5) {
  animation-delay: 0.25s;
}
@keyframes starPop {
  from {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* quote text */
.testi-quote {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--body-c);
  margin-bottom: 28px;
}

/* divider */
.testi-divider {
  height: 1.5px;
  background: linear-gradient(
    90deg,
    #eee 0%,
    rgba(255, 107, 157, 0.3) 50%,
    #eee 100%
  );
  margin-bottom: 24px;
}

/* author row */
.author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink-light);
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.25);
  flex-shrink: 0;
}
.author-name {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.2;
}
.author-place {
  font-size: 0.82rem;
  font-weight: 600;
  color: #999;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SLIDE TRANSITION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-slide {
  display: none;
  animation: slideIn 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.testi-slide.active {
  display: block;
}
/* @keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(0px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.testi-slide.prev {
  display: block;
  animation: slideOut 0.4s ease both;
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-40px);
  }
} */

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ DOT NAVIGATION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.dot-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  padding-bottom: 20px;
}
.dot-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--pink);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}
.dot-btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s;
}
.dot-btn.active::after {
  background: var(--pink);
}
.dot-btn:hover {
  transform: scale(1.15);
}

/* prev / next arrows */
.nav-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 157, 0.4);
  background: #fff;
  color: var(--pink);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.12);
}
.arrow-btn:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  transform: scale(1.1);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ WAVE BOTTOM + KIDS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.kids-wave-wrap {
  position: relative;
  margin-top: 32px;
  height: 160px;
  overflow: hidden;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.kids-right {
  position: absolute;
  bottom: 0;
  right: 60px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.kids-emoji {
  font-size: 3.4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: kidsFloat var(--kd, 3s) ease-in-out var(--kl, 0s) infinite;
}
@keyframes kidsFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* responsive */
@media (max-width: 640px) {
  .testi-card {
    padding: 28px 24px;
  }
  .testi-section .deco-rocket {
    width: 90px;
    left: 8px;
    top: 10px;
  }
  .testi-section .deco-stars-right {
    right: 10px;
  }
  .testi-section .kids-right {
    right: 10px;
  }
  .kids-emoji {
    font-size: 2.4rem;
  }
}
:root {
  --sun: #ffd23f;
  --sky: #4fc3f7;
  --grass: #56c271;
  --coral: #ff6b6b;
  --lavender: #b39ddb;
  --orange: #ff9f43;
  --mint: #26c6a6;
  --pink: #f06292;
  --white: #ffffff;
  --cream: #fffdf5;
  --ink: #2c2c54;
  --soft: #f0f4ff;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ WAVY SVG DIVIDERS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  display: block;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--white);
  color: var(--sky);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .hero-section h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
} */

.btn-hero-secondary {
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 0.62rem 1.8rem;
  transition: all 0.15s;
}

.btn-hero-secondary:hover {
  background: var(--ink);
  color: #fff;
}

/* hero illustration */
.hero-illus {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.school-building {
  width: 340px;
  height: 300px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  position: relative;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.building-roof {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 70px solid var(--coral);
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.building-flag {
  width: 6px;
  height: 50px;
  background: var(--ink);
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.building-flag::after {
  content: "ÃƒÂ°Ã…Â¸Ã‚ÂÃ‚Â«";
  font-size: 1.5rem;
  position: absolute;
  top: -5px;
  left: 8px;
}

.window-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.win {
  width: 55px;
  height: 60px;
  background: var(--sky);
  border-radius: 8px;
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.win::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
}

.win::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--ink);
}

.door {
  width: 70px;
  height: 90px;
  background: var(--orange);
  border-radius: 10px 10px 0 0;
  border: 3px solid var(--ink);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.door-knob {
  width: 10px;
  height: 10px;
  background: var(--sun);
  border-radius: 50%;
  border: 2px solid var(--ink);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.kid-emoji {
  position: absolute;
  font-size: 2.5rem;
  bottom: 0;
  animation: bounce 1.5s ease-in-out infinite;
}

.kid1 {
  left: 30px;
  animation-delay: 0s;
}

.kid2 {
  right: 30px;
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hstat {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.hstat-num {
  font-size: 1.8rem;
  color: var(--coral);
  line-height: 1;
}

.hstat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FILTER BAR ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.filter-bar {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--soft);
}

.filter-pill {
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 0.4rem 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.filter-pill.active {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.search-box {
  background: var(--soft);
  border: 2px solid #e8eaf6;
  border-radius: 30px;
  padding: 0.4rem 1rem 0.4rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  width: 210px;
  font-family: "Nunito", sans-serif;
  transition: border 0.2s;
}

.search-box:focus {
  border-color: var(--sky);
}

.search-icon-wrap {
  position: relative;
}

.search-icon-wrap i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION HEADER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sec-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
}

.sec-title {
  font-size: 38px;
  color: #2d5f5d;
  font-weight: 700;
}
.sec-title-1 {
  font-size: 28px;
  color: #2d5f5d;
  font-weight: 700;
}
.wiggle-line {
  width: 60px;
  height: 6px;
  background: var(--sun);
  border-radius: 10px;
  margin: 0.5rem 0 0;
  position: relative;
}

.wiggle-line::after {
  content: "";
  position: absolute;
  left: 64px;
  top: 0;
  width: 20px;
  height: 6px;
  background: var(--coral);
  border-radius: 10px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FEATURED PROGRAM ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.featured-prog {
  background: linear-gradient(135deg, #2c2c54 0%, #3d3d8f 100%);
  border-radius: 28px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-prog::before {
  content: "ÃƒÂ¢Ã‚Â­Ã‚Â";
  font-size: 8rem;
  position: absolute;
  right: 2rem;
  top: -1rem;
  opacity: 0.07;
}

.featured-prog h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.featured-prog p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  margin: 0.25rem 0.1rem;
}

.feat-chip i {
  color: var(--sun);
}

.btn-feat {
  background: var(--sun);
  color: var(--ink);
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.8rem;
  box-shadow: 0 4px 0 #e0a800;
  transition: all 0.15s;
  margin-top: 1.2rem;
}

.btn-feat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #e0a800;
  color: var(--ink);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PROGRAM CARDS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.program .prog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid transparent;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  height: 100%;
  display: flex;
  opacity: 1;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  padding: 0px 0px 0px;
}

.program .prog-card:hover {
  transform: translateY(-2px) rotate(-0.5deg) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13) !important;
}

.card-top {
  padding: 12px;
  position: relative;
}

.prog-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.7rem;
  animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-3deg);
  }

  75% {
    transform: rotate(1deg);
  }
}

.program .prog-card:nth-child(2) .prog-emoji {
  animation-delay: 0.5s;
}

.program .prog-card:nth-child(3) .prog-emoji {
  animation-delay: 1s;
}

.program .prog-card:nth-child(4) .prog-emoji {
  animation-delay: 1.5s;
}

.program .prog-card:nth-child(5) .prog-emoji {
  animation-delay: 2s;
}

.program .prog-card:nth-child(6) .prog-emoji {
  animation-delay: 2.5s;
}

.prog-level {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.program .prog-card h5 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.program .prog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-meta {
  padding: 1rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.meta-item {
  font-size: 0.8rem;
  color: #777;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer-prog {
  padding: 1rem 1.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.age-pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-card {
  font-size: 0.9rem;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  transition: all 0.15s;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
}

/* card color themes */
.t-red .card-top {
  background: linear-gradient(135deg, #fff0f0, #ffe0e0);
}

.t-red .prog-card {
  border-color: #ffcdd2;
}

.t-red .prog-card:hover {
  border-color: var(--coral);
}

.t-red .prog-level {
  background: #ffcdd2;
  color: #c62828;
}

.t-red .meta-item i {
  color: var(--coral);
}

.t-red .age-pill {
  background: #ffcdd2;
  color: #c62828;
}

.t-red .btn-card {
  background: var(--coral);
  color: #fff;
}

.t-blue .card-top {
  background: linear-gradient(135deg, #e3f7ff, #c9efff);
}

.t-blue .prog-card {
  border-color: #b3e5fc;
}

.t-blue .prog-card:hover {
  border-color: var(--sky);
}

.t-blue .prog-level {
  background: #b3e5fc;
  color: #0277bd;
}

.t-blue .meta-item i {
  color: var(--sky);
}

.t-blue .age-pill {
  background: #b3e5fc;
  color: #0277bd;
}

.t-blue .btn-card {
  background: var(--sky);
  color: #fff;
}

.t-green .card-top {
  background: linear-gradient(135deg, #e8f8ee, #d0f0db);
}

.t-green .prog-card {
  border-color: #c8e6c9;
}

.t-green .prog-card:hover {
  border-color: var(--grass);
}

.t-green .prog-level {
  background: #c8e6c9;
  color: #2e7d32;
}

.t-green .meta-item i {
  color: var(--grass);
}

.t-green .age-pill {
  background: #c8e6c9;
  color: #2e7d32;
}

.t-green .btn-card {
  background: var(--grass);
  color: #fff;
}

.t-yellow .card-top {
  background: linear-gradient(135deg, #fffde7, #fff9c4);
}

.t-yellow .prog-card {
  border-color: #fff176;
}

.t-yellow .prog-card:hover {
  border-color: var(--sun);
}

.t-yellow .prog-level {
  background: #fff176;
  color: #f57f17;
}

.t-yellow .meta-item i {
  color: #f9a825;
}

.t-yellow .age-pill {
  background: #fff176;
  color: #f57f17;
}

.t-yellow .btn-card {
  background: var(--sun);
  color: var(--ink);
}

.t-purple .card-top {
  background: linear-gradient(135deg, #f3e5f5, #ede7f6);
}

.t-purple .prog-card {
  border-color: #ce93d8;
}

.t-purple .prog-card:hover {
  border-color: var(--lavender);
}

.t-purple .prog-level {
  background: #e1bee7;
  color: #6a1b9a;
}

.t-purple .meta-item i {
  color: var(--lavender);
}

.t-purple .age-pill {
  background: #e1bee7;
  color: #6a1b9a;
}

.t-purple .btn-card {
  background: var(--lavender);
  color: #fff;
}

.t-orange .card-top {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.t-orange .prog-card {
  border-color: #ffcc80;
}

.t-orange .prog-card:hover {
  border-color: var(--orange);
}

.t-orange .prog-level {
  background: #ffcc80;
  color: #e65100;
}

.t-orange .meta-item i {
  color: var(--orange);
}

.t-orange .age-pill {
  background: #ffcc80;
  color: #e65100;
}

.t-orange .btn-card {
  background: var(--orange);
  color: #fff;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ APPROACH ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.approach-sec {
  background: linear-gradient(180deg, #eaf9ff 0%, var(--cream) 100%);
}

.approach-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.approach-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky);
}

.approach-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.approach-card h6 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.approach-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ GALLERY STRIP ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.gallery-strip {
  background: var(--ink);
  padding: 3rem 0;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gal-item {
  flex: 0 0 auto;
  width: 160px;
  height: 140px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 3px solid rgba(255, 255, 255, 0.1);
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ TESTIMONIALS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-sec {
  background: var(--cream);
}

.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 3px solid #f0edff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.2s;
}

.testi-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testi-card blockquote {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1.2rem;
}

.testi-stars {
  font-size: 0.9rem;
  color: var(--sun);
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tav-name {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
}

.tav-role {
  font-size: 0.72rem;
  color: #aaa;
}
@media (max-width: 767px) {
  .contact-card,
  .info-card {
    margin-bottom: 30px;
  }
}
.admission-info-text h5 {
  color: #9b4dca;
  font-weight: 700;
  margin-bottom: 15px;
}

.admission-info-text h6 {
  margin-top: 25px;
  font-weight: 700;
  color: #333;
}

.admission-info-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.admission-points {
  padding-left: 18px;
  margin-top: 10px;
}

.admission-points li {
  margin-bottom: 8px;
  color: #555;
  position: relative;
}

/* Section */
.admission-wrap {
  padding: 20px 0;
}

/* LEFT CONTENT */
.admission-content h1 {
  font-weight: 700;
  color: #6a1bbd;
  animation: slideLeft 1s ease forwards;
}

.admission-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  animation: fadeUp 1.2s ease forwards;
}

.admission-content h5 {
  margin-top: 30px;
  font-weight: 700;
}

/* Activities */
.activity-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  animation: floatUp 4s infinite ease-in-out;
}
.activity-box:hover {
  transform: translateY(-10px) scale(1.03);
}
.activity-box i {
  font-size: 2.2rem;
  color: #9b4dca;
}

/* FORM */
.admission-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  animation: slideRight 1s ease forwards;
}
.admission-form h4 {
  font-weight: 700;
  color: #6a1bbd;
}
.form-control {
  border-radius: 14px;
  padding: 14px;
}
.btn-admission {
  background: #6a1bbd;
  color: #fff;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-admission:hover {
  background: #8a3fe0;
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.admission-form-modern {
  background: linear-gradient(135deg, #ffffff, #f7ebff);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(106, 27, 189, 0.25);
  animation: popUp 1s ease;
}
.form-header span {
  display: inline-block;
  background: #ff572226;
  color: #ff5722;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.form-header h4 {
  font-weight: 700;
  color: #0a0808;
}
.form-header h4 span {
  color: #e33d5c;
  background: transparent;
  font-size: 1.5rem;
  padding: 0;
}
.form-header p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
}

/* Floating Input */
.input-group-modern {
  position: relative;
  margin-bottom: 22px;
}

.input-group-modern i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #009688;
  font-size: 1.1rem;
}

.input-group-modern input,
.input-group-modern select {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 18px;
  border: 1px solid #eadcff;
  outline: none;
  background: #fff;
  font-size: 15px;
}

.input-group-modern label {
  position: absolute;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  color: #322f2fc2;
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 6px;
}
label {
  display: inline-block;
  font-size: 15px;
}

.input-group-modern input:focus,
.input-group-modern select:focus {
  border-color: #009688;
  box-shadow: none;
}

/* Button */
.btn-submit-modern {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #00beae, #b39ddb);
  box-shadow: 0 10px 40px rgba(110, 193, 228, 0.35);

  transition: 0.4s;
}

.btn-submit-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(106, 27, 189, 0.45);
}

/* Animation */
@keyframes popUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* LEFT CONTENT NEW */
.admission-content-new {
  animation: slideFadeLeft 1.2s ease forwards;
}

.tagline-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e0f7fa, #ede7f6);
  color: #6a1bbd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.admission-content-new h1 {
  font-weight: 800;
  color: #333;
  font-size: 34px;
}
.admission-content-new h1 span {
  color: #e33d5c;
}
.lead-text {
  font-size: 15px;
  color: #555;
  margin-top: 15px;
}

/* FEATURE STRIP */
.feature-strip {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  animation: floatSoft 4s infinite ease-in-out;
}
.feature-item i {
  color: #ff7eb3;
}

/* ACTIVITY CARDS */
.activity-card {
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  color: #333;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  animation: bounceSoft 5s infinite;
}
.activity-card i {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #009688;
}
.activity-card span {
  font-size: 0.8rem;
  color: #666;
}
.activity-card:hover {
  transform: translateY(-10px) rotate(-1deg);
}

/* COLORS */
.color-1 {
  background: linear-gradient(135deg, #e1f5fe, #fff);
}
.color-2 {
  background: linear-gradient(135deg, #fff3e0, #fff);
}
.color-3 {
  background: linear-gradient(135deg, #ede7f6, #fff);
}

/* ANIMATIONS */
@keyframes slideFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes bounceSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.faq-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9ff, #fff);
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e1f5fe, #ede7f6);
  color: #6a1bbd;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.faq-section h2 {
  font-weight: 800;
  color: #333;
}

.faq-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: fadeUpFaq 1s ease forwards;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 25px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #333;
}
.faq-question i {
  font-size: 1.4rem;
  color: #009688;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 25px;
}

.faq-answer p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ff5722;
}
.school-gallery-section {
  background: #f8fbff;
}

.gallery-heading .gallery-tag {
  display: inline-block;
  background: #eef4ff;
  color: #2563eb;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.gallery-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.gallery-heading p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

.gallery-filter button {
  border: none;
  background: #fff;
  padding: 12px 24px;
  margin: 5px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: #2563eb;
  color: #fff;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 320px;
  cursor: pointer;
}

.gallery-large {
  height: 420px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-overlay span {
  font-size: 14px;
}

@media (max-width: 768px) {
  .gallery-heading h2 {
    font-size: 34px;
  }

  .gallery-card,
  .gallery-large {
    height: 280px;
  }
}
:root {
  --sun-yellow: #ffd93d;
  --sky-blue: #4cc9f0;
  --grass-green: #06d6a0;
  --coral: #ff6b6b;
  --purple: #a78bfa;
  --orange: #ff9e00;
  --white: #ffffff;
  --dark: #1e1b4b;
  --card-radius: 24px;
}

/* floating emojis */
.float-emoji {
  position: absolute;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.fe1 {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}
.fe2 {
  top: 20%;
  right: 8%;
  animation-delay: 0.5s;
}
.fe3 {
  bottom: 18%;
  left: 12%;
  animation-delay: 1s;
}
.fe4 {
  bottom: 25%;
  right: 5%;
  animation-delay: 1.5s;
}
.fe5 {
  top: 55%;
  left: 3%;
  animation-delay: 0.8s;
}

/* wave divider */
.wave-divider svg {
  display: block;
  margin-top: -2px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TABS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.custom-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
  transform: translateY(-28px);
}

.tab-pill {
  padding: 10px 28px;
  border-radius: 50px;
  font-family: "Fredoka One", cursive;
  font-size: 1rem;
  cursor: pointer;
  border: 3px solid transparent;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.25s;
}
.tab-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.tab-pill.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--sun-yellow);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NEWS CARDS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.news-card {
  border: none;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: var(--white);
  animation: fadeUp 0.6s both;
}
.news-card:hover {
  transform: translateY(-8px) rotate(0.4deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.news-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.news-badge {
  font-family: "Fredoka One", cursive;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.news-card .card-title {
  font-size: 17px;
}

.news-card .card-text {
  font-size: 0.9rem;
  color: #555;
}

.btn-read {
  border-radius: 50px;
  font-family: "Fredoka One", cursive;
  font-size: 0.9rem;
  padding: 7px 22px;
  border: 2.5px solid currentColor;
  background: transparent;
  transition: all 0.2s;
}
.btn-read:hover {
  background: var(--dark);
  color: var(--white) !important;
  border-color: var(--dark);
}

/* card accent bar */
.accent-bar {
  height: 6px;
  border-radius: 3px 3px 0 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FEATURED NEWS (WIDE CARD) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.featured-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  background: linear-gradient(120deg, #1e1b4b 60%, #4338ca);
  color: var(--white);
  animation: fadeUp 0.6s both;
  transition: transform 0.3s;
}
.featured-card:hover {
  transform: translateY(-6px);
}
.featured-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.75;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ EVENTS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.event-card {
  border-radius: var(--card-radius);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: slideRight 0.5s both;
  border-left: 6px solid transparent;
}
.event-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.event-date-box {
  min-width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  flex-shrink: 0;
}
.event-date-box .day {
  font-size: 1.6rem;
  line-height: 1;
}
.event-date-box .mon {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-title {
  font-size: 16px;
  margin-bottom: 4px !important;
  font-weight: 700;
}
.event-meta {
  font-size: 0.82rem;
  color: #777;
}
.event-icon {
  font-size: 1.4rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COUNTDOWN Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.countdown-section {
  background: linear-gradient(135deg, #ff6b6b, #ff9e00);
  border-radius: 28px;
  padding: 40px 32px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
  animation: fadeUp 0.7s 0.2s both;
}
.countdown-section h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
}

.cd-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 80px;
  backdrop-filter: blur(6px);
}
.cd-num {
  font-family: "Fredoka One", cursive;
  font-size: 2.6rem;
  line-height: 1;
}
.cd-lbl {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NEWSLETTER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.newsletter-box {
  background: linear-gradient(120deg, #06d6a0, #4cc9f0);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  animation: fadeUp 0.6s 0.4s both;
}
.newsletter-box h3 {
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  color: var(--dark);
}
.newsletter-box input {
  border-radius: 50px;
  border: none;
  padding: 13px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}
.btn-subscribe {
  border-radius: 50px;
  background: var(--dark);
  color: var(--white);
  font-family: "Fredoka One", cursive;
  font-size: 1rem;
  border: none;
  padding: 13px 30px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn-subscribe:hover {
  transform: scale(1.05);
  background: #3730a3;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ KEYFRAMES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(40px);
  }
  70% {
    transform: scale(1.07) translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/* stagger cards */
.news-card:nth-child(1) {
  animation-delay: 0.1s;
}
.news-card:nth-child(2) {
  animation-delay: 0.25s;
}
.news-card:nth-child(3) {
  animation-delay: 0.4s;
}

.event-card:nth-child(1) {
  animation-delay: 0.05s;
}
.event-card:nth-child(2) {
  animation-delay: 0.15s;
}
.event-card:nth-child(3) {
  animation-delay: 0.25s;
}
.event-card:nth-child(4) {
  animation-delay: 0.35s;
}
.event-card:nth-child(5) {
  animation-delay: 0.45s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MISC Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
}
.live-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.4);
  animation: pulse-ring 1.5s infinite;
}

.star-spinner {
  display: inline-block;
  animation: spin 3s linear infinite;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .event-card {
    flex-wrap: wrap;
  }
  .newsletter-box {
    padding: 32px 20px;
  }
}
/* ===========================
   CONTACT SECTION
=========================== */

.kids-contact {
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  position: relative;
  overflow: hidden;
}

.kids-contact::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(86, 155, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.kids-contact::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 170, 0, 0.08);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

/* ===========================
   COMMON CARD
=========================== */

.playful-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid #edf2f7;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.playful-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #15213a;
  margin-bottom: 10px;
}

.subtitle {
  color: #6c757d;
  font-size: 15px;
}

/* ===========================
   CAMPUS CARDS
=========================== */

.campus-card-v2 {
  border-radius: 24px;
  padding: 30px 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.campus-card-v2:hover {
  transform: translateY(-8px);
}

.campus-card-v2::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: -90px;
  right: -90px;
  opacity: 0.2;
}

.campus-card-v2.pink {
  background: #fff3f6;
}

.campus-card-v2.pink::before {
  background: #ff6b9f;
}

.campus-card-v2.blue {
  background: #f0f7ff;
}

.campus-card-v2.blue::before {
  background: #3b82f6;
}

.campus-card-v2.yellow {
  background: #fff9eb;
}

.campus-card-v2.yellow::before {
  background: #fbbf24;
}

.campus-icon {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 15px;
}

.campus-name {
  font-size: 20px;
  font-weight: 700;
  color: #15213a;
  margin-bottom: 15px;
}

.campus-text {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.campus-call {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0d6efd;
}

.campus-call i {
  font-size: 16px;
}

/* ===========================
   SOCIAL MEDIA
=========================== */

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.social-btn:hover {
  transform: translateY(-5px);
}

.fb:hover {
  background: #1877f2;
  color: #fff;
}

.ig:hover {
  background: #e1306c;
  color: #fff;
}

.yt:hover {
  background: #ff0000;
  color: #fff;
}

.pt:hover {
  background: #e60023;
  color: #fff;
}

.tw:hover {
  background: #000;
  color: #fff;
}

/* ===========================
   FORM
=========================== */

.custom-input {
  border-radius: 14px;
  border: 2px solid #e9eef5;
  padding: 14px 18px;
  font-size: 15px;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.form-label {
  color: #15213a;
  margin-bottom: 8px;
}

/* ===========================
   BUTTON
=========================== */

.send-btn {
  background: linear-gradient(135deg, #0d6efd, #00c2ff);
  border: none;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.4s;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.25);
  color: #fff;
}

/* ===========================
   GOOGLE MAP
=========================== */

.contact-card iframe {
  /* min-height: 650px; */
  border-radius: 24px;
  overflow: hidden;
}

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

@media (max-width: 991px) {
  .playful-card {
    padding: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-card iframe {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .campus-card-v2 {
    padding: 25px 18px;
  }

  .campus-name {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
  }
}
/* â•â•â•â•â•â•â•â•â•â•â•â• SHARED REVEAL â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.up {
  transform: translateY(32px);
}

.reveal.left {
  transform: translateX(-32px);
}

.reveal.right {
  transform: translateX(32px);
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â• SECTION LABEL â•â•â•â•â•â•â•â•â•â•â•â• */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  background: rgba(232, 38, 94, 0.1);
  color: var(--pink);
  margin-bottom: 14px;
}

.eyebrow.teal {
  background: rgba(29, 184, 160, 0.12);
  color: var(--teal);
}

.eyebrow.amber {
  background: rgba(244, 185, 66, 0.15);
  color: #c8860a;
}

/* â•â•â•â•â•â•â•â•â•â•â•â• PHILOSOPHY SECTION â•â•â•â•â•â•â•â•â•â•â•â• */
.philosophy-section {
  padding: 90px 0 80px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(29, 184, 160, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(232, 38, 94, 0.07) 0%,
      transparent 55%
    );
  pointer-events: none;
}

.quote-giant {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--navy);
}

.quote-giant .accent-pink {
  color: var(--pink);
}

.quote-giant .accent-teal {
  color: var(--teal);
}

.quote-mark {
  font-size: 6rem;
  line-height: 9px;
  color: var(--pink);
  opacity: 0.18;
  font-family: Georgia, serif;
  user-select: none;
}

.philosophy-card {
  background: #fff;
  border-radius: var(--card-r);
  padding: 52px 32px 28px;
  box-shadow: 0 6px 32px rgba(26, 26, 46, 0.07);
  position: relative;
  overflow: hidden;
}

.philosophy-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  border-radius: 0 0 var(--card-r) var(--card-r);
}

/* pill tags */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid;
}

.tag-pink {
  color: var(--pink);
  border-color: rgba(232, 38, 94, 0.3);
  background: rgba(232, 38, 94, 0.06);
}

.tag-teal {
  color: var(--teal);
  border-color: rgba(29, 184, 160, 0.3);
  background: rgba(29, 184, 160, 0.06);
}

.tag-amber {
  color: #c8860a;
  border-color: rgba(244, 185, 66, 0.4);
  background: rgba(244, 185, 66, 0.08);
}

/* â•â•â•â•â•â•â•â•â•â•â•â• TEACHERS SECTION â•â•â•â•â•â•â•â•â•â•â•â• */
.teachers-section {
  padding: 90px 0 0px;
  background: #fff;
}

.teacher-card {
  border-radius: var(--card-r);
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(26, 26, 46, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  background: #fff;
}

.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26, 26, 46, 0.15);
}

.teacher-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.teacher-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.teacher-body {
  padding: 20px 22px 24px;
}

.teacher-body h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.teacher-body .role {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.teacher-body p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

/* quote banner */
.guide-quote {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2b5e 100%);
  border-radius: var(--card-r);
  padding: 40px 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.guide-quote::before {
  content: "â";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.guide-quote h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
}

.guide-quote h3 em {
  color: var(--amber);
  font-style: normal;
}

.guide-quote p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â• FACILITIES SECTION â•â•â•â•â•â•â•â•â•â•â•â• */
.facilities-section {
  padding: 90px 0 80px;
  background: var(--soft);
}

/* photo gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: var(--card-r);
  overflow: hidden;
}

.gallery-grid .g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.08);
}

/* overlay on hover */
.gallery-grid .g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.55) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-grid .g-item:hover::after {
  opacity: 1;
}

.g-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.g-item:hover .g-label {
  opacity: 1;
}

/* feature pills under gallery */
.env-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.env-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.env-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* section heading helpers */
.sec-heading {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.sec-heading .w-pink {
  color: var(--pink);
}

.sec-heading .w-teal {
  color: var(--teal);
}

/* stagger helpers */
.reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal:nth-child(3) {
  transition-delay: 0.22s;
}

.reveal:nth-child(4) {
  transition-delay: 0.32s;
}

/* responsive */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
}
.form-select {
  padding: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  border-radius: 13px;
}
.school-gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.float-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  background: #fff;
}

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

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

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

.float-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 25px;
  opacity: 0;
  transition: 0.4s ease;
}

.float-card:hover .float-overlay {
  opacity: 1;
}

.float-overlay h5 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.float-overlay i {
  color: #fff;
  font-size: 40px;
}

.offset-card {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .offset-card {
    margin-top: 0;
  }
}

/* GLightbox Custom */
.goverlay {
  background: rgba(0, 0, 0, 0.95) !important;
}

.gslide-image img {
  border-radius: 15px;
}

.gbtn {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
}

.gbtn:hover {
  background: #fff !important;
}

.gbtn:hover svg {
  fill: #000 !important;
}
.copyright-bar {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.copyright-bar a {
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .copyright-bar .col-md-6 {
    margin-bottom: 8px;
  }
}
