.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  color: #1aace3 !important;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 48px) !important;
}

h2 {
  font-size: clamp(28px, 4vw, 36px) !important;
}

h3 {
  font-size: clamp(20px, 3vw, 24px) !important;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  position: relative;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #1aa6d9;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

/* LINKS */
.top-link {
  color: #fff;
  text-decoration: none;
}

.top-link:hover {
  text-decoration: underline;
}

/* SOCIAL ICONS */
.top-social {
  color: #fff;
  margin-left: 14px;
  text-decoration: none;
  font-size: 16px;
}

.top-social:hover {
  opacity: 0.8;
}

/* MOBILE FINE TUNE */
@media (max-width: 576px) {
  .top-bar {
    font-size: 13px;
  }

  .top-social {
    margin-left: 10px;
  }
}

/* HEADER */
.main-header {
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Desktop sticky header on scroll */
@media (max-width: 991px) {
  .facilities-nav button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

/* Mobile Scroller Style */
@media (max-width: 768px) {
  .facilities-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    /* Full width for separation */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    /* Push to edges */
    z-index: 20;
    /* Ensure on top */
  }

  .facilities-nav button {
    position: static;
    /* Reset absolute from desktop */
    width: 80px;
    height: 80px;
    padding: 0;
  }

  #facPrev {
    background: #00a9e0;
    border-radius: 0 100% 0 0;
    /* Bottom-left quarter circle */
    transform: none;
    /* Reset rotation */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 20px;
    padding-bottom: 20px;
    margin: 0;
  }

  #facPrev i {
    transform: rotate(-135deg);
    transform: rotate(45deg);
  }

  #facNext {
    background: #f6c445;
    border-radius: 100% 0 0 0;
    border-radius: 100% 0 0 0;
    bottom: 0;
    right: auto;
    transform: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 20px;
    padding-bottom: 20px;
    margin: 0;
  }

  #facNext i {
    transform: rotate(45deg);
    /* Arrow direction */
  }
}

@media (min-width: 992px) {
  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .main-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  /* Hide top bar when scrolled */
  .main-header.scrolled~.top-bar,
  body.header-scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

/* Hiding decorative elements in desktop header */
.menu-bubble,
.menu-icon {
  display: none !important;
}

/* FLEX LAYOUT */
.header-inner {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

/* LOGO */
.logo img {
  height: 95px;
  display: block;
  margin-left: 10px;
}

/* NAV RIGHT */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-right: 0;
}

/* MENU LINKS */
.main-nav a {
  margin-left: 48px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
  position: relative;
  transition: color 0.3s ease;
}

/* ACTIVE + HOVER */
.main-nav a.active,
.main-nav a:hover {
  color: #1aa6d9;
}

/* Scroll margin for sections to account for sticky header */
section {
  scroll-margin-top: 120px;
}

@media (max-width: 991px) {
  section {
    scroll-margin-top: 80px;
  }
}


/* ================= HERO SCROLLING BACKGROUND ================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 820px;

  /* 3 images in one long strip */

  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.9) 30%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 65%),
    url("../images/banner1.jpeg"),
    url("../images/banner1.jpeg"),
    url("../images/banner1.jpeg");

  background-repeat: no-repeat;
  background-size:
    auto,
    cover,
    cover,
    cover;

  background-position:
    left top,
    0% center,
    100% center,
    200% center;

  animation: heroScroll 30s linear infinite;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/* LEFT CONTENT */
.hero-content {
  position: relative;
  max-width: 650px;
  width: 100%;
  margin: 0;
  z-index: 10;
}


.hero-content h1 {
  margin-bottom: 10px;
  color: #1aace3 !important;
}

.hero-content p {
  font-family: 'Quicksand', sans-serif;
  margin: 22px 0;
  font-size: 15px;
  font-weight: 500;
  /* Medium */
  color: #555;
  line-height: 1.7;
  max-width: none;
  /* 🔥 REMOVE WIDTH LIMIT */
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1aa6d9;
  color: #fff;
  padding: 10px 26px 10px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #1aa6d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 0;
}

.btn-text {
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
}

.hero-btn:hover,
.hero-btn:active {
  background: #1695c2;
}

.hero-btn:hover .btn-icon,
.hero-btn:active .btn-icon {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* RIGHT IMAGE (FULL SIZE) */
.hero-icon {
  position: absolute;
  width: 70px;
  /* ðŸ”¥ bigger */
  opacity: 1;
  /* full visibility */
  z-index: 9999;
  /* always on top */
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
  pointer-events: none;
  /* icons won't block clicks */
}

.hero-image img {
  width: 100%;
  height: 100%;
  /* FULL HEIGHT */
  object-fit: cover;
  /* NO DISTORTION */
  border-radius: 0 0 0 0;
  /* keep clean edge */
  display: block;
}

/* SOFT LEFT FADE (OPTIONAL â€“ SAME MODEL) */
.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));
  pointer-events: none;
}


/* ================= DOODLE ICONS ================= */

.hero-icon {
  position: absolute;
  width: 55px;
  height: auto;
  z-index: 2;
}

/* ================= ICON ANIMATIONS ================= */

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(6deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes decorFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, 15px) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* MAGIC WAND (top-left) */
.icon-star {
  top: -55px;
  left: 0;
  width: 65px;
  animation: floatRotate 6s ease-in-out infinite;
}

/* RAINBOW (top-center above heading) */
.icon-rainbow {
  top: -70px;
  left: 220px;
  width: 70px;
  animation: floatSlow 7s ease-in-out infinite;
}

/* BUTTERFLY (below text, near button) */
.icon-butterfly {
  bottom: -49px;
  left: 62px;
  animation: floatRotate 8s ease-in-out infinite;
  width: 196px;
}

/* SWIRL (bottom-left area) */
.icon-swirl {
  bottom: -115px;
  left: 180px;
  animation: floatSlow 6.5s ease-in-out infinite;
  width: 131px;
}

/* Optional: make icons pop */
.hero-icon {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

@keyframes heroSlider {
  0% {
    background-image:
      linear-gradient(to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 65%),
      url("../images/banner1.jpeg");
  }


}

/* ================= SERVICES SECTION ================= */

.services-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

/* .services-grid replaced by Bootstrap .row */

/* CARD */
.service-card {
  position: relative;
  width: 280px;
  border-radius: 28px;
  /* overflow: hidden; Removed to allow label to move bottom outside image */
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 10px;
}

/* LABEL */
.service-label {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: #1aa6d9;
  /* Default background, no longer forced */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* COLORS */
.service-label.blue {
  background: #3bb7e8 !important;
}

.service-label.yellow {
  background: #f6c445 !important;
}

.service-label.navy {
  background: #2c4b6b !important;
}

/* ================= FLOATING ANIMATIONS ================= */

.floating {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* ðŸ‘§ JUMPING KIDS */
/* â¤ï¸ FLOATING HEARTS */
.float.heart {
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("../images/heart.png") no-repeat center;
  background-size: contain;
  opacity: 0.8;
  animation: floatY 6s ease-in-out infinite;
}

.float.heart.h1 {
  left: 12%;
  top: 20%;
}

.float.heart.h2 {
  right: 18%;
  top: 35%;
  animation-delay: 2s;
}

/* BOOK */
/* OPEN BOOK SVG STYLE */
.book-svg {
  position: absolute;
  top: 5%;
  left: 10%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}

/* SPINE */
.book-spine {
  width: 6px;
  height: 90px;
  background: #3bb7e8;
  border-radius: 3px;
}

/* BOOK HALVES */
.book-half {
  width: 70px;
  height: 90px;
  background: #ffffff;
  border: 2px solid #d9dee3;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  perspective: 600px;
}

.book-half.left {
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.book-half.right {
  border-left: none;
  border-radius: 0 6px 6px 0;
}

/* PAGES */
.book-half .page {
  position: absolute;
  inset: 0;
  background: #f8f9fa;
  border-left: 1px solid #e3e7eb;
  transform-origin: left;
  animation: pageFlip 5s ease-in-out infinite;
}

/* PAGE STACKING */
.book-half .page:nth-child(1) {
  animation-delay: 0s;
}

.book-half .page:nth-child(2) {
  animation-delay: 0.6s;
}

.book-half .page:nth-child(3) {
  animation-delay: 1.2s;
}


/* ðŸ”µ ROTATING DOTTED CIRCLE */
.float.dots {
  position: absolute;
  border-radius: 50%;
  border: 3px dotted;
  animation: rotate 14s linear infinite;
  opacity: 0.6;
}

.float.dots.big {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 12%;
  color: #06285882;
}

.float.dots.small {
  width: 90px;
  height: 90px;
  left: 6%;
  bottom: 25%;
  animation-duration: 10s;
  color: #FECA3B;
}

/* BUBBLES*/
.float.bubble {
  position: absolute;
  background: rgba(59, 183, 232, 0.35);
  border-radius: 50%;
  animation: bubbleUp 8s ease-in-out infinite;
}

.float.bubble.b1 {
  left: 30%;
  bottom: 10%;
  width: 30px;
  height: 30px;
  background: #02A5F0;
}

.float.bubble.b2 {
  right: 35%;
  bottom: 15%;
  animation-delay: 3s;
  width: 18px;
  height: 18px;
  background: #FECA3B;
}

/* ================= KEYFRAMES ================= */

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -14px);
  }
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-30px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .float.book {
    display: none;
  }

  .services-grid {
    flex-direction: column;
    gap: 50px;
  }
}

/* ================= CIRCLE PROFILES SECTION ================= */

.circle-profiles-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.profiles-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.profile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
  /* Added cursor pointer */
}

.profile-item:hover {
  transform: translateY(-8px);
}

/* Active State for Profile Item */
.profile-item.active .profile-circle {
  border-color: #f6c445;
  box-shadow: 0 12px 30px rgba(246, 196, 69, 0.4);
  transform: scale(1.05);
}

.profile-item.active .profile-label {
  color: #f6c445;
  /* Optional: highlight text too */
}

.profile-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #3bb7e8;
  box-shadow: 0 8px 20px rgba(59, 183, 232, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.profile-circle:hover {
  border-color: #f6c445;
  box-shadow: 0 12px 30px rgba(246, 196, 69, 0.4);
  transform: scale(1.05);
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2c4b6b;
  text-align: center;
  margin: 0;
  max-width: 140px;
  line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .circle-profiles-section {
    padding: 60px 0;
  }

  .profiles-wrapper {
    gap: 30px;
  }

  .profile-circle {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }

  .profile-label {
    font-size: 13px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .profiles-wrapper {
    gap: 25px;
  }

  .profile-circle {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .profile-label {
    font-size: 12px;
    max-width: 100px;
  }
}

/* ================= EXPLORE SECTION ================= */


.explore-section {
  padding: 0px 0;
  background: #fff;
}

.explore-box {
  /* display: flex; handled by row */
  border-radius: 28px;
  overflow: hidden;
}

/* LEFT IMAGE */
.explore-image {
  position: relative;
  width: 50%;
}

.explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO CONTROLS - RE-SIMPLIFIED (Mute Toggle Only) */
.video-controls {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-sound-btn {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.video-sound-btn:hover {
  color: #f6c445;
  transform: scale(1.1);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #f6c445;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* RIGHT CONTENT */
.explore-content {
  position: relative;
  width: 50%;
  padding: 50px;
  color: #fff;
  overflow: hidden;

  /* BLUE BACKGROUND IMAGE */
  background:
    linear-gradient(rgba(26, 166, 217, 0.95),
      rgba(26, 166, 217, 0.95)),
    url("../images/explore-bg.webp");

  background-repeat: repeat;
  background-size: 240px;
}

.explore-content h2 {
  margin-bottom: 18px;
  color: white !important;
}

.explore-content p {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: white !important;
}

/* BUTTON */
.explore-btn {
  display: inline-block;
  background: #f6c445;
  color: #222;
  padding: 12px 26px;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .explore-box {
    flex-direction: column;
  }

  .explore-image,
  .explore-content {
    width: 100%;
  }

  .explore-content {
    padding: 30px;
  }
}


/* ================= INFO BLOCKS SECTION ================= */

.info-section {
  padding: 70px 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LEFT & MIDDLE CARDS */
.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 12px;
  color: #1aace3 !important;
}

.info-card p {
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #6d6d6d !important;
}

/* WORKING HOURS CARD */
.info-hours {
  background: #dff3fb;
  padding: 32px;
  border-radius: 26px;
}

.info-hours ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.info-hours ul li {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* BUTTON */
.hours-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e5b7e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hours-btn span {
  font-size: 18px;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}


/* review start */

/* review end */

/* SECTION */
.gallery-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  /* Anchor for icons */
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  text-align: center;
  letter-spacing: 2px;
  /* padding-left: 515px; REMOVED HARDCODED PADDING */
  flex: 1;
  /* Center it properly */
  color: #1aace3 !important;
}

/* ARROWS */
.gallery-arrows {
  border: 2px dashed #f6c44500;
  border-radius: 30px;
  padding: 1px 16px;
}

.gallery-arrows button {
  background: none;
  border: none;
  font-size: 31px;
  cursor: pointer;
  color: #1aa6d9;
  margin: 0 19px;
  margin-bottom: 6px;
}

/* SLIDER */
.gallery-slider {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.gallery-slide {
  flex: 0 0 100%;
  display: flex;
}

/* IMAGE SHAPES */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  border-radius: 50px;
  overflow: hidden;
}

/* LEFT BIG */
.gallery-item.large {
  height: 320px;
}

/* CENTER STACK */
.gallery-middle {
  /* gap handled by Bootstrap g-4 */
  display: flex;
  flex-direction: column;
}

.gallery-item.small {
  height: 148px;
  /* Precise height for 2 stacked items with 24px (g-4) gap = 320px total */
}

/* RIGHT TALL */
.gallery-item.tall {
  height: 320px;
}

/* Mobile Gallery Adjustments */
@media (max-width: 991px) {

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.small {
    height: 200px;
  }

  .gallery-middle {
    margin: 0 !important;
    padding: 0 !important;
  }

  .gallery-middle .row {
    margin: 0 !important;
    width: 100% !important;
  }
}

/* VIEW MORE BUTTON */
.gallery-view-more {
  text-align: center;
  margin-top: 40px;
}

.view-more-btn {
  display: inline-block;
  padding: 14px 38px;
  background: #1aa6d9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.view-more-btn:hover {
  background: #1289b5;
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */

.site-footer {
  background: #062a57;
  color: #ffffff;
  padding-top: 70px;
}



/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

/* TEXT */
.site-footer p,
.site-footer li,
.site-footer a {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  color: #dbe7f5;
  line-height: 1.7;
}

/* HEADINGS */
.site-footer h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

/* LINKS */
.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  text-decoration: none;
  color: #dbe7f5;
  transition: 0.3s;
}

.site-footer ul li a:hover {
  color: #1aa6d9;
}

/* ICON TEXT */
.footer-contact i,
.footer-address i {
  margin-right: 10px;
  line-height: inherit;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-address .footer-social {
  justify-content: flex-end;
  font-family: 'Quicksand', sans-serif;
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  font-family: 'Quicksand', sans-serif;
}

.footer-address i {
  flex-shrink: 0;
  margin-top: 1px;
  /* Align with first line of text */
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a i {
  line-height: 1;
  margin-right: 0;
}

.footer-social a:hover {
  background: #f9c33b;
  /* yellow highlight */
  color: #0b2b4c;
  transform: translateY(-3px);
}


/* BOTTOM BAR */
.footer-bottom {
  background: #0aa3df;
  text-align: center;
  padding: 8px;
  margin-top: 60px;
  font-size: 14px;
  color: #fff;
}

.footer-bottom i {
  color: #ff4d4d;
  margin: 0 2px;
  font-size: 12px;
}

/* MOVING MEDIA QUERIES TO END */


/*review test*/




/* ================= FACILITIES SECTION ================= */
.facilities-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  /* Base for full-height bg */
}

.facilities-container {
  display: flex;
  gap: 40px;
  /* Reduced from 80px to allow more space for cards */
  align-items: center;
}

.facilities-text {
  max-width: 450px;
  position: relative;
  z-index: 10;
  padding-right: 20px;
}


.facilities-tag {
  color: #00a9e0;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  font-size: 25px;
  font-family: 'Quicksand', sans-serif;
}

.facilities-text h2 {
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: 'Quicksand', sans-serif;
  color: #1aace3 !important;
}

.facilities-text p {
  color: #777;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 380px;
  font-family: 'Quicksand', sans-serif;
}

.btn-yellow {
  background: #f6c445;
  padding: 12px 35px;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-blue {
  background: #00a9e0;
  padding: 12px 35px;
  color: #fff;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-yellow:hover,
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* DECORATIVE ARCS */
.decor-line {
  position: absolute;
  left: -100px;
  top: 20px;
  width: 250px;
  height: 250px;
  z-index: -1;
  pointer-events: none;
  animation: decorFloat 10s ease-in-out infinite;
}

.decor-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* RIGHT WRAPPER */
.facilities-wrapper {
  position: relative;
  flex: 1.6;
  overflow: hidden;
  /* Clips scrolling cards to boundaries */
  border-top-left-radius: 200px;
}

.facilities-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 489px;
  background-color: #5dcbf5;
  border-top-left-radius: 200px;
  z-index: 0;
}

.facilities-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/facilities-doodle.webp);
  background-size: 400px;
  opacity: 0.05;
  pointer-events: none;
}

.bg-arc {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 200px;
  z-index: 1;
  opacity: 0.8;
}


.facilities-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  padding: 40px 40px;
  /* Balanced side padding */
  overflow-x: auto;
  overflow-y: hidden;
  /* scroll-behavior: smooth; removed for custom JS easing */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* scroll-snap-type removed for custom JS easing */
}

.facilities-cards::-webkit-scrollbar {
  display: none;
}

/* CARD */
.facility-card {
  flex: 0 0 320px;
  width: 320px;
  max-width: 320px;
  height: 380px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: transform .4s ease;
  z-index: 2;
}

.facility-card:hover {
  transform: translateY(-10px);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b2b4c;
  padding: 25px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.f-overlay h3 {
  color: #f6c445 !important;
  /* Force yellow for Facilities card titles */
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.f-overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 1;
  font-family: 'Quicksand', sans-serif;
}

.card-arrow {
  position: absolute;
  top: -185px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: #fff;
  color: #00a9e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.facilities-nav {
  position: absolute;
  bottom: 0px;
  left: 420px;
  width: 0;
  height: 0;
  z-index: 10;
}

.facilities-nav button {
  position: absolute;
  width: 65px;
  height: 65px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  color: #fff;
  font-family: inherit;
}

#facPrev {
  background: #02A5F0;
  border-radius: 0 0 0 100px;
  bottom: -39px;
  left: -102px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-bottom: 20px;
}

#facNext {
  background: #f6c445;
  border-radius: 0 100px 0 0;
  bottom: 30px;
  left: -32px;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  padding-top: 20px;
}

#facPrev i {
  transform: rotate(45deg);
  /* Pointing bottom-left */
}

#facNext i {
  transform: rotate(45deg);
  /* Pointing top-right */
}

.facilities-nav button:hover {
  filter: brightness(1.1);
  /* No transform on hover as per model */
}


#facNext::after {
  content: "";
}

/* ================= RESPONSIVE SMARTPHONE / TABLET ================= */
@media (max-width: 991px) {

  /* --- 1. GLOBAL LAYOUT --- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
  }

  .site-container {
    margin-left: 0 !important;
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  section {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Standardized Mobile Headings */
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  /* --- 2. HEADER --- */
  .header-inner {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    position: relative !important;
    padding: 10px 20px !important;
    text-align: left !important;
  }

  .logo {
    display: block !important;
    margin: 0 !important;
    text-align: left !important;
    width: auto !important;
    z-index: 10001;
    /* Above menu */
  }

  .logo img {
    margin-left: 0 !important;
    height: 50px !important;
  }

  .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 28px;
    z-index: 10001;
    /* Above menu */
    padding: 0.25rem 0.5rem;
  }

  /* Remove focus outline and box-shadow */
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* Hamburger icon animation */
  /* Hamburger icon animation */
  .navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #1aa6d9;
    background-image: none !important;
    /* Remove Bootstrap default SVG */
    position: relative;
    transition: background-color 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #1aa6d9;
    position: absolute;
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  /* Transform to X when menu is open */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .navbar-collapse {
    position: fixed;
    top: 60px;
    /* Below the header / X button area */
    right: 0;
    left: 0;
    width: 90%;
    margin: 0 auto;
    max-width: 350px;
    height: auto;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 30px 20px;
    overflow: hidden;
    /* Contain floating icons */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    /* Side slide animation */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
  }

  .navbar-collapse.show {
    transform: translateX(0);
    display: flex !important;
  }

  /* BUBBLES inside menu */
  .menu-bubble {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: menuFloat 6s ease-in-out infinite alternate;
  }

  @keyframes menuFloat {
    0% {
      transform: translateY(0) translateX(0);
    }

    100% {
      transform: translateY(-15px) translateX(10px);
    }
  }

  .menu-bubble.b1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ffeeba 0%, #fff 70%);
    top: -40px;
    left: -40px;
  }

  .menu-bubble.b2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #bee5eb 0%, #fff 70%);
    top: 20%;
    right: -20px;
  }

  .menu-bubble.b3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f5c6cb 0%, #fff 70%);
    bottom: -50px;
    right: -50px;
  }

  .main-nav {
    flex-direction: column;
    align-items: center !important;
    gap: 8px;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    /* Push content up */
    padding-top: 15px;
    margin-left: -50px;
  }

  .main-nav a {
    font-size: 18px;
    font-weight: 700;
    color: #0b2b4c;
    text-decoration: none;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(26, 166, 217, 0.1);
    color: #1aa6d9;
  }

  /* MOBILE TOP BAR INFO */
  .mobile-top-bar {
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    width: 100%;
  }

  .mt-info p {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .mt-info a {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    color: #1aa6d9;
    text-decoration: none;
    margin-bottom: 2px;
    font-weight: 500;
  }

  .mt-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
  }

  .mt-social a {
    width: 45px;
    height: 45px;
    background: #f6c445;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 0;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(246, 196, 69, 0.3);
  }

  .mt-social a span,
  .mt-social a i {
    line-height: 1;
  }

  /* Conflicting styles removed to use consolidated mobile fixes at the end of file */

  .hero-icon {
    display: none !important;
  }

  /* --- 5. FACILITIES SECTION MOBILE --- */
  .facilities-section {
    padding: 30px 0 !important;
  }

  .facilities-container {
    flex-direction: column !important;
    gap: 80px !important;
    text-align: center !important;
  }

  .facilities-text {
    max-width: 100% !important;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .facilities-text p {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 110px;
  }

  .facilities-wrapper {
    width: 100% !important;
    flex: none !important;
    border-radius: 60px 0 0 0 !important;
  }

  .facilities-bg {
    left: 0 !important;
    top: 39% !important;
    /* Start background lower on mobile to give text more room */
    border-radius: 60px 0 0 0 !important;
  }

  .facilities-cards {
    padding: 30px 15px 10px !important;
    gap: 20px !important;
  }

  .facility-card {
    flex: 0 0 85% !important;
    /* Show 85% of one card, hint at next */
    width: 85% !important;
    max-width: 85% !important;
    height: 300px !important;
    border-radius: 30px !important;
  }

  .f-overlay {
    min-height: 100px !important;
    padding: 15px !important;
  }

  .f-overlay h3 {
    font-size: 18px !important;
  }

  .facilities-nav {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: 50% !important;
    /* Center vertically */
    transform: translateY(-50%);
    width: 100% !important;
    height: 0 !important;
    /* Wrapper doesn't block clicks */
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 10px !important;
    z-index: 20 !important;
    pointer-events: none;
    /* Let clicks pass through empty space */
  }

  /* Reset buttons */
  #facPrev,
  #facNext {
    position: static !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    /* Remove desktop rotation */
    padding: 0 !important;
    pointer-events: auto;
    /* Enable clicks on buttons */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Reset icons */
  #facPrev i,
  #facNext i {
    transform: none !important;
  }

  #facNext {
    background: #f6c445;
  }

  #facPrev {
    background: #00a9e0;
  }

  .bg-arc {
    width: 120px !important;
  }

  /* --- 6. FOOTER MOBILE --- */
  .site-footer {
    text-align: center !important;
    padding-top: 60px !important;
  }

  .footer-logo {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 30px !important;
  }

  .footer-social {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .footer-social i {
    margin-right: 0 !important;
  }

  .site-footer h4 {
    margin-top: 10px;
    margin-bottom: 25px !important;
  }

  .footer-contact p {
    font-size: 14px !important;
    display: flex;
    align-items: start;
    text-align: left !important;
  }

  .footer-contact i {
    flex-shrink: 0;
    margin-right: 8px !important;
  }

  .footer-address {
    margin-top: 30px !important;
  }

  .footer-social {
    justify-content: center !important;
  }

  /* Keep list centered but left-aligned internally for bullets */
  .footer-links ul {
    margin-bottom: 0;
    display: inline-block;
    text-align: left;
  }

  .footer-links ul {
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 40px !important;
    padding: 20px !important;
  }
}

/* --- 7. GALLERY MOBILE --- */
@media (max-width: 768px) {
  .gallery-item {
    height: 180px !important;
    min-height: 180px !important;
    border-radius: 25px !important;
  }

  .gallery-section {
    padding: 40px 0 !important;
  }
}

/* ================= GALLERY ICONS ================= */
.gallery-icon {
  display: none;
  /* Hidden by default (Desktop) */
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-icon {
    display: block;
  }

  /* 1. Star - Top Left */
  .gallery-icon.g-star {
    top: 5%;
    left: 5%;
    width: 40px;
    animation: rotate 10s linear infinite;
  }

  /* 2. Rainbow - Top Right */
  .gallery-icon.g-rainbow {
    top: 8%;
    right: -10px;
    width: 60px;
    animation: floatY 6s ease-in-out infinite;
  }

  /* 3. Butterfly - Middle/Bottom Right */
  .gallery-icon.g-butterfly {
    bottom: 30%;
    right: 5%;
    width: 50px;
    animation: floatY 5s ease-in-out infinite reverse;
  }

  /* 4. Swirl - Bottom Left */
  .gallery-icon.g-swirl {
    bottom: 5%;
    left: -20px;
    width: 70px;
    opacity: 0.6;
    animation: rotate 15s linear infinite;
  }
}

/* ================= ABOUT US PAGE REFINEMENTS ================= */
.about-hero,
.explore-hero,
.gallery-hero,
.contact-hero {
  height: 500px;
  background-size: cover;
  background-position: top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-hero {
  background-image: url('../images/banner2.jpeg');
}

.about-description,
.hero-description {
  font-size: 18px;
  color: #555;
  max-width: 550px;
  margin-top: 15px;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
}

.about-hero .about-description,
.gallery-hero .hero-description {
  margin-left: auto;
}

/* About Hero Decorations */
.icon-swirl-about {
  bottom: -80px;
  right: 100px;
  width: 100px;
  animation: floatSlow 8s ease-in-out infinite;
}

.about-hero .hero-icon,
.explore-hero .hero-icon,
.gallery-hero .hero-icon,
.contact-hero .hero-icon {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  z-index: 2;
}

.about-hero h1.about-title {
  font-size: 48px !important;
  color: #1aace3 !important;
  font-weight: 700 !important;
  margin: 0;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4);

}

.why-choose-section {
  padding: 80px 0;
  background: #fff;
}

.organic-img-wrapper {
  position: relative;
  padding: 20px;
}

.organic-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 464px;
  background: #02a5f0ad;
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 40%;
  z-index: 0;
  transform: rotate(-5deg);
}

.organic-img-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 450px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  animation: blobMorph 8s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  50% {
    border-radius: 60% 30% 50% 70% / 30% 60% 70% 40%;
  }

  75% {
    border-radius: 40% 60% 30% 60% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.section-badge {
  display: inline-block;
  color: #00A9E0 !important;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-lead-text {
  font-size: 22px !important;
  color: #1A1A1A !important;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
  width: 650px;
}

.about-lead-text1 {
  font-size: 22px !important;
  color: #1A1A1A !important;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.why-choose-content {
  max-width: 500px;
}

.values-grid-container {
  margin-top: 50px;
  border-top: 1px solid #0597D9;
  position: relative;
  background-color: #fff;
}

/* Watermark background */
.values-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

.value-item {
  padding: 35px 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.value-item p {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
}

.value-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.value-dot.blue {
  background: #1aa6d9;
}

.value-dot.yellow {
  background: #f6c445;
}

.values-row .border-end {
  border-right: 1px solid #0597D9 !important;
}

.values-row .border-bottom {
  border-bottom: 1px solid #0597D9 !important;
}

.info-detail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
}

.info-detail-card h3 {
  font-size: 28px !important;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #1aace3 !important;
  font-weight: 700;
}

.info-detail-card p {
  color: #888;
  font-size: 16px;
  line-height: 1.6;
}

.info-list {
  padding-left: 0;
}

.info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #888;
  align-items: flex-start;
}

.info-list li i {
  color: #60cff6;
  font-size: 14px;
  margin-top: 4px;
}

.working-hours-blue-card {
  background: #02a5f03b;
  border-radius: 30px;

}

.working-hours-blue-card h3 {
  font-size: 42px !important;
  color: #1aa6d9 !important;
  margin-bottom: 25px;
}

.working-hours-blue-card .text-yellow {
  color: #f6c445 !important;
}

.hours-subtext {
  color: #888;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.hours-list li {
  padding: 6px 0;
  border: none;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.hours-list li:last-child {
  border-bottom: none;
}

.btn-contact-blue {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #0e5b7e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.btn-contact-blue:hover {
  background: #60cff6;
  color: #fff;
}

.btn-contact-blue i {
  font-size: 12px;
}

/* Team Styles */
.team-img-border {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #ddd;
  animation: rotateBorder 20s linear infinite;
  z-index: 1;
}

/* Rotating Dot on Border */
.team-img-border::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 12px;
  right: 12px;
  z-index: 2;
  animation: rotateBorder 20s linear infinite;
  transform-origin: -73px 88px;
  /* Calculate origin to stay on border orbit */
}

/* Adjust origin for circle center */
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.team-img-border.border-blue::before {
  border-color: #60cff6;
}

.team-img-border.border-blue::after {
  background: #60cff6;
}

.team-img-border.border-yellow::before {
  border-color: #60cff6;
}

.team-img-border.border-yellow::after {
  background: #60cff6;
}

.team-img-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-tag {
  display: inline-block;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.team-tag.blue {
  background: #1aa6d9;
}

.team-tag.yellow {
  background: #1aa6d9;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: #e3f5ff;
  color: #1aa6d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #1aa6d9;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .about-hero {
    justify-content: center;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 36px !important;
  }

  .about-description,
  .hero-description {
    margin: 15px auto 0;
    font-size: 16px;
    text-align: center !important;
  }

  .section-badge {
    font-size: 24px;
  }

  .values-row .border-end {
    border-right: none !important;
  }

  .team-img-border {
    width: 140px;
    height: 140px;
  }
}

.float-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  animation: dotFloat 4s ease-in-out infinite alternate;
}

.float-dot.blue {
  background: #1aa6d9;
}

.float-dot.yellow {
  background: #f6c445;
}

/* --- Positional Dots --- */
.dot-pos-1 {
  top: 10%;
  left: 5%;
  width: 25px;
  height: 25px;
}

.dot-pos-2 {
  top: 5%;
  right: 15%;
  width: 20px;
  height: 20px;
}

.dot-pos-3 {
  top: 45%;
  left: 48%;
  width: 30px;
  height: 30px;
}

.dot-pos-4 {
  top: -20px;
  left: -10px;
  width: 25px;
  height: 25px;
}

.dot-pos-5 {
  top: 40%;
  left: -30px;
  width: 40px;
  height: 40px;
}

.dot-pos-6 {
  top: -60px;
  right: 0;
  width: 30px;
  height: 30px;
}

.dot-pos-7 {
  top: 50%;
  right: -3%;
  width: 18px;
  height: 18px;
}

.dot-pos-8 {
  top: 40%;
  left: -5%;
  width: 35px;
  height: 35px;
}

.dot-pos-9 {
  bottom: 10%;
  right: 50%;
  width: 15px;
  height: 15px;
}

.dot-pos-10 {
  top: 55%;
  left: 21%;
  width: 22px;
  height: 22px;
}

.dot-pos-11 {
  top: 75%;
  right: 30%;
  width: 18px;
  height: 18px;
}

/* Illustration Sizing */
.kids-doodle-about {
  width: 280px;
}

/* Utility for footer link */
.footer-credit-link {
  color: inherit;
  text-decoration: none;
}


@keyframes dotFloat {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(10px, -10px);
  }
}

/* ================= EXPLORE PAGE ================= */
.explore-hero {
  background-image: url('../images/banner3.jpeg');
  background-position: center;
}

.explore-hero h1 {
  font-size: 60px;
  color: #1aace3;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

.explore-section-title {
  font-size: 60px;
  color: #1aace3;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Overlapping Image Component */
.overlap-img-container {
  position: relative;
  padding: 40px 0;
}

.overlap-large {
  width: 90%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.overlap-small {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 2;
  border: 10px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.overlap-img-container.reverse .overlap-large {
  margin-left: auto;
}

.overlap-img-container.reverse .overlap-small {
  right: auto;
  left: -10px;
}

/* Video Section */
.video-card-explore {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

.video-card-explore img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #114C69;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.video-play-btn:hover {
  background: #00A9E0;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
  margin-left: 5px;
}

@media (max-width: 991px) {
  .explore-hero h1 {
    font-size: 48px;
  }

  .overlap-img-container {
    max-width: 400px;
    margin: 0 auto 50px;
  }

  .video-card-explore {
    height: 300px;
  }
}

/* ================= GALLERY PAGE ================= */
.gallery-hero {
  background-image: url('../images/banner4.jpg');
  background-position: top;
}

.gallery-hero h1.gallery-title {
  font-size: 48px !important;
  color: #1aace3 !important;
  font-weight: 700 !important;
  margin: 0;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4);
}

.gallery-profiles-section {
  background: #fff;
}

.container-gallery {
  max-width: 1100px;
}

.profile-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

@keyframes rotateProfile {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.profile-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  padding: 6px;
  /* Create the border thickness */
  background: linear-gradient(135deg, #02A5F0, #0282BD, #015F8A);
  animation: rotateProfile 8s linear infinite;
  z-index: 1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}

.profile-circle img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}

.profile-circle:hover {
  transform: scale(1.05);
}

.profile-circle:hover::before {
  animation-play-state: paused;
}

.gallery-dot-1 {
  top: -10px;
  left: -20px;
  width: 15px;
  height: 15px;
}

.gallery-dot-2 {
  bottom: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
}



/* ================= PINTEREST-STYLE MASONRY ================= */
.gallery-masonry-columns {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
}


.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 15px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ================= LIGHTBOX MODAL ================= */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 92%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-counter {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 24px;
  border-radius: 25px;
  backdrop-filter: blur(12px);
  letter-spacing: 0.5px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  font-size: 22px;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.12);
}

.lightbox-close {
  top: 35px;
  right: 35px;
}

.lightbox-prev {
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.12);
}

.lightbox-next {
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.12);
}

.footer-social-simple a {
  width: 32px;
  height: 32px;
  background: #1aa6d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 991px) {
  .gallery-hero h1.gallery-title {
    font-size: 40px !important;
    margin-right: 0 !important;
    text-align: center !important;
  }

  .gallery-hero {
    height: 400px;
  }

  .gallery-masonry-columns {
    column-count: 2;
    column-gap: 15px;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .profile-circle {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .gallery-masonry-columns {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 12px;
  }

  .lightbox-content {
    max-width: 96%;
  }

  .lightbox-counter {
    font-size: 13px;
    padding: 8px 18px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ================= EXPLORE PAGE ================= */
.explore-hero {
  height: 500px;
  background-image: url('../images/banner3.jpeg');
  background-size: cover;
  background-position: top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-hero h1 {
  font-size: 48px;
  color: #1aace3;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

.explore-section-title {
  font-size: 42px;
  color: #1aace3;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Overlapping Image Component */
.overlap-img-container {
  position: relative;
  padding: 40px 0;
}

.overlap-large {
  width: 90%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.overlap-small {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 2;
  border: 10px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.overlap-img-container.reverse .overlap-large {
  margin-left: auto;
}

.overlap-img-container.reverse .overlap-small {
  right: auto;
  left: -10px;
}

/* Video Section */
.video-card-explore {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

.video-card-explore img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #114C69;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.video-play-btn:hover {
  background: #00A9E0;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
  margin-left: 5px;
}

@media (max-width: 991px) {
  .explore-hero h1 {
    font-size: 48px;
  }

  .overlap-img-container {
    max-width: 400px;
    margin: 0 auto 50px;
  }

  .video-card-explore {
    height: 300px;
  }
}

/* ================= CONTACT PAGE STYLES ================= */

/* HERO SECTION */
/* HERO SECTION */
.contact-hero {
  background-image: url('../images/banner5.jpeg');
  background-position: top;
}

.contact-title {
  font-size: 48px !important;
  color: #1aace3 !important;
  font-weight: 700 !important;
  margin: 0;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4);
}

/* Removed: .contact-subtitle, .contact-hero .shape-1, .contact-hero .shape-2 */

/* CONTACT INFO CARDS */
.contact-info-wrapper {
  padding: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.icon-box.blue {
  background: #1aa6d9;
  box-shadow: 0 8px 20px rgba(26, 166, 217, 0.3);
}

.icon-box.yellow {
  background: #f6c445;
  box-shadow: 0 8px 20px rgba(246, 196, 69, 0.3);
}

.text-box h5 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #0b2b4c;
}

.text-box p {
  margin: 0;
  font-size: 15px;
  color: #0B6C99;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
}

/* SOCIAL BUTTONS */
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

.social-btn.facebook {
  background: #3b5998;
}

.social-btn.instagram {
  background: #E1306C;
}

.social-btn.linkedin {
  background: #0077b5;
}


/* CONTACT FORM */
.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-floating>.form-control {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.form-floating>.form-control:focus {
  box-shadow: none;
  border-color: #1aa6d9;
  background: #fff;
}

.form-floating>label {
  color: #888;
}

.btn-submit {
  background: #1aa6d9;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 20px rgba(26, 166, 217, 0.2);
}

.btn-submit:hover {
  background: #0b2b4c;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(11, 43, 76, 0.2);
  color: #fff;
}

/* DECORATION BEHIND FORM */
.form-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #f6c445 10%, transparent 10.5%);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* ANIMATIONS */
@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ANIMATIONS - SMOOTH & PREMIUM */
@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Utilities for Smooth Animations */
.animate-pop-in {
  animation: popIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-up {
  animation: slideUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-right {
  animation: slideRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-left {
  animation: slideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in {
  animation: popIn 1.2s ease-out forwards;
}

.float-animation {
  animation: floatAnim 6s ease-in-out infinite;
}

.float-animation-delayed {
  animation: floatAnim 7s ease-in-out infinite;
  animation-delay: 2s;
}

.opacity-0 {
  opacity: 0 !important;
}

/* Stagger Delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* MAP SECTION */
.map-section {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  line-height: 0;
}

/* CONTACT MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .contact-hero {
    height: 350px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-form-container {
    padding: 25px;
  }
}

/* ================= LIGHTBOX STYLES ================= */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10001;
  padding: 10px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #f6c445;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 35px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Lightbox Mobile Overrides */
@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    font-size: 24px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* ================= ADMISSION POP-UP (V5 SPLIT GLASS) ================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card-v5 {
  background: rgba(255, 255, 255, 0.9);
  width: 90%;
  max-width: 850px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.85);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .popup-card-v5 {
  transform: scale(1);
}

/* LEFT: IMAGE */
.popup-v5-image {
  width: 45%;
  position: relative;
  background: #eee;
}

.popup-v5-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT: CONTENT */
.popup-v5-content {
  width: 55%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.popup-v5-tag {
  display: inline-block;
  background: #e8f7fd;
  color: #1aace3;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}

.popup-v5-title {
  font-size: 32px;
  color: #114C69;
  margin-bottom: 15px;
  line-height: 1.2;
}

.popup-v5-title span {
  color: #1aace3;
}

.popup-v5-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.popup-v5-btn {
  background: #f6c445;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.popup-v5-btn:hover {
  background: #f4b825;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(246, 196, 69, 0.3);
  color: #fff;
}

/* CLOSE BUTTON */
.popup-v5-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-v5-close:hover {
  background: #f5f5f5;
  color: #000;
  transform: rotate(90deg);
}

/* DECOR ICONS */
.v5-decor {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.v5-star {
  top: -20px;
  left: 40%;
  width: 50px;
}

.v5-rainbow {
  bottom: -20px;
  right: 10%;
  width: 60px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .popup-card-v5 {
    flex-direction: column;
    max-width: 90%;
  }

  .popup-v5-image,
  .popup-v5-content {
    width: 100%;
  }

  .popup-v5-image {
    height: 200px;
  }

  .popup-v5-content {
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }

  .popup-v5-btn {
    align-self: center;
  }

  .popup-v5-tag {
    align-self: center;
  }
}

/* ================= GLOBAL MOBILE FIXES ================= */

@media (max-width: 991px) {

  /* 0. HEADER & LOGO */
  .logo img {
    height: 60px !important;
    margin-left: 0 !important;
  }

  .header-inner {
    padding: 10px 0 !important;
  }

  /* 1. TYPOGRAPHY SCALING */
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #0B6C99 !important;
  }

  /* 2. HERO ADJUSTMENTS */
  .hero-section {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    background: url("../images/mobilebanner.jpg") no-repeat center center !important;
    background-size: cover !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    animation: none !important;
    position: relative;
    padding-bottom: 60px !important;
    overflow: hidden;
  }

  /* Custom Navbar Toggler Color */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 169, 224, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85% !important;
    /* Taller fog area */
    background: linear-gradient(to top,
        rgba(202, 238, 255, 1) 0%,
        rgba(202, 238, 255, 0.98) 35%,
        rgba(202, 238, 255, 0.8) 55%,
        rgba(202, 238, 255, 0.5) 75%,
        transparent 100%) !important;
    z-index: 1;
    pointer-events: none;
  }

  .about-hero,
  .contact-hero,
  .explore-hero,
  .gallery-hero {
    height: 300px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .about-title,
  .contact-title,
  .explore-title,
  .gallery-title {
    font-size: 38px !important;
  }

  /* 3. HOME & LAYOUT FIXES */
  .hero-content {
    margin: 0 !important;
    padding: 0 20px 0 20px !important;
    text-align: center !important;
    align-items: center !important;
    z-index: 5;
    position: relative;
    width: 100%;
    max-width: 500px;
  }

  .hero-content h1 {
    color: #114C69 !important;
    font-size: 33px !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    letter-spacing: -1px;
  }

  .hero-content p {
    color: #114C69 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin-bottom: 30px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }

  .hero-btn {
    margin-top: 5px;
    background: #00a9e0 !important;
    padding: clamp(8px, 2.5vw, 10px) clamp(30px, 8vw, 40px) clamp(8px, 2.5vw, 10px) clamp(8px, 2.5vw, 10px) !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: clamp(10px, 3.5vw, 15px) !important;
    box-shadow: 0 12px 30px rgba(0, 169, 224, 0.4);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(clamp(0.9, 2.5vw, 1));
  }

  .hero-btn .btn-icon {
    background: #ffffff !important;
    color: #00a9e0 !important;
    width: clamp(40px, 12vw, 48px) !important;
    height: clamp(40px, 12vw, 48px) !important;
    font-size: clamp(16px, 5vw, 20px) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .hero-btn .btn-text {
    font-size: clamp(18px, 5.5vw, 22px) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: capitalize;
  }

  /* Hide floating icons on mobile for cleaner look as per design */
  .hero-section .hero-icon {
    display: none !important;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100% !important;
    max-width: 350px !important;
    margin-bottom: 20px;
  }

  /* 4. OVERLAP IMAGE SECTIONS (About/Explore) */
  .overlap-img-container,
  .organic-img-wrapper {
    height: auto !important;
    margin-bottom: 40px;
    text-align: center;
  }

  .overlap-large,
  .overlap-small,
  .organic-img-wrapper img {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
  }

  .organic-img-wrapper::before {
    display: none;
    /* Hide abstract shape on mobile for cleaner look */
  }

  .video-card-explore {
    width: 100% !important;
  }

  /* 5. GALLERY MASONRY -> LIST */
  .gallery-masonry-columns {
    column-count: 1 !important;
  }

  .gallery-item {
    margin-bottom: 20px !important;
  }

  /* EXPLORE VIDEO RADIUS MOBILE */
  .explore-image {
    border-radius: 28px 28px 0 0 !important;
    height: 500px !important;
  }

  .value-item {
    border: none !important;
    padding: 20px !important;
    text-align: center;
  }

  /* 6. INFO CARDS */
  .info-detail-card,
  .working-hours-blue-card {
    padding: 30px !important;
  }

  /* 8. FACILITIES SECTION */
  .facilities-container {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center;
  }

  .facilities-text {
    max-width: 100% !important;
    padding: 0 20px;
  }

  .facilities-text p {
    max-width: 100% !important;
    margin-bottom: 25px !important;
  }

  .facilities-wrapper {
    border-radius: 60px 0 0 0 !important;
    flex: none !important;
    width: 100%;
  }

  .facilities-bg {
    left: 0 !important;
    border-radius: 60px 0 0 0 !important;
  }

  .facilities-cards {
    margin-left: 0 !important;
    padding: 40px 15px !important;
    gap: 20px !important;
  }

  .facility-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    height: 350px !important;
  }

  .facilities-nav {
    left: 0 !important;
    position: relative !important;
    margin-top: 20px;
    justify-content: center !important;
  }

  /* 9. GALLERY SECTION (HOME) */
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.small {
    height: 250px !important;
  }

  /* 10. VIDEO CONTROLS MOBILE */
  .video-controls {
    bottom: 20px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}

@media (min-width: 576px) and (max-width: 991px) {

  /* TABLET TWEAKS */
  .gallery-masonry-columns {
    column-count: 2 !important;
  }
}