﻿.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ================= 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: #0076bf !important;
  line-height: 1.2;
}

h1 {
  font-size: 48px !important;
}

h2 {
  font-size: 36px !important;
}

h3 {
  font-size: 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);
    /* Arrow pointing top-right relative to button? No, standard arrow is right. */
    /* Let's use specific arrow direction from image: */
    /* If prev button is left side, arrow usually points left. */
    /* But standard Prev icon is rotated. Let's just reset and rotate correctly. */
    transform: rotate(45deg);
    /* Northeast arrow? */
  }

  #facNext {
    background: #f6c445;
    border-radius: 100% 0 0 0;
    /* Bottom-right quarter circle shape relative to a square in bottom right? No. */
    /* Actually looking at image: */
    /* Left button (Blue) curves top-right. */
    /* Right button (Yellow) curves top-left. */
    /* They meet in the middle. */
    border-radius: 100% 0 0 0;
    /* Wait, border-radius: top-left top-right bottom-right bottom-left */
    /* Blue (Left): 0 100% 0 0 -> Top-Right curve. YES. */
    /* Yellow (Right): 100% 0 0 0 -> Top-Left curve. YES. */

    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;
  margin-right: 720px;
  margin-left: -61px;
}


.hero-content h1 {
  margin-bottom: 10px;
}

.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;
  }
}

/* ================= 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;
}

/* 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;
}

.explore-content p {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 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;
}

.info-card p {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* 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: #1aa6d9;
  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 */
}

/* 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;
}

/* 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;
}

/* LEFT CONTENT */
.facilities-text {
  max-width: 420px;
  position: relative;
  z-index: 10;
}


.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;
}

.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-radius: 150px 0 0 0;
  /* Matches .facilities-bg curve */
}

/* BLUE BACKGROUND SHAPE */
.facilities-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 35%;
  background-color: #5dcbf5;
  border-radius: 150px 0 0 0;
  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;
}


/* SLIDER TRACK */
.facilities-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  padding: 40px 27px;
  /* 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 */
  margin-left: 50px;


}

.facilities-cards::-webkit-scrollbar {
  display: none;
}

/* CARD */
.facility-card {
  flex: 0 0 calc((100% - 60px) / 3);
  /* Exactly 3 cards with 30px gaps */
  width: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  height: 330px;
  /* Balanced height */
  border-radius: 40px;
  /* More rounded as per model */
  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;
}

/* OVERLAY */
.f-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: #0b2b4c;
  /* Solid dark blue as per model */
  padding: 11px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Align content to top of overlay */
}

.f-overlay h3 {
  color: #f6c445 !important;
  /* Force yellow for Facilities card titles */
  margin-bottom: 8px;
}

.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: -165px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #00a9e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ================= ARROWS (PIVOTED STYLE) ================= */
.facilities-nav {
  position: absolute;
  bottom: 0px;
  left: 35%;
  /* Align with the start of the blue background curve */
  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 100px 0 0;
  bottom: 0;
  left: -70px;
  /* Shift to left side of corner */
  z-index: 1;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-top: 15px;
  transform: rotate(180deg);
}


#facPrev i {
  transform: rotate(135deg);
  /* Arrow-left (West) + 135deg = NE. Button rot 180 -> SW (Correct) */
}

#facNext {
  background: #f6c445;
  border-radius: 0 100px 0 0;
  bottom: 70px;
  /* Stack above corner */
  left: 0;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-top: 15px;
}

#facNext i {
  transform: rotate(-45deg);
  /* Arrow-right rotated -45deg = points Up-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;
  }

  .hero-section {
    min-height: 520px !important;
    padding: 60px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-position: center !important;
    background-size: cover !important;
    background-image:
      linear-gradient(to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%),
      url("../images/banner1.jpeg") !important;
  }

  .hero-content {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 500px !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .hero-content p {
    font-size: 16px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    max-width: 100% !important;
    font-family: quicksand;
    line-height: 1.5 !important;
  }

  .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 {
  height: 500px;
  background-image: url('../images/banner1.jpeg');
  background-size: cover;
  background-position: top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero h1.about-title {
  font-size: 48px !important;
  color: #0076bf !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: #0b2b4c !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: #75bce3;
  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: #f6c445;
}

.team-img-border.border-yellow::after {
  background: #f6c445;
}

.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: #f6c445;
}

.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 h1 {
    font-size: 36px !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 {
  height: 500px;
  background-image: url('../images/Explore.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-hero h1 {
  font-size: 60px;
  color: #00A9E0;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

.explore-section-title {
  font-size: 60px;
  color: #00A9E0;
  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: #0076bf;
  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 {
  height: 500px;
  background-image: url('../images/banner1.jpeg');
  background-size: cover;
  background-position: top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero h1.gallery-title {
  font-size: 60px !important;
  color: #0076bf !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;
  }

  .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/banner1.jpeg');
  background-size: cover;
  background-position: top;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-hero h1 {
  font-size: 48px;
  color: #00A9E0;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

.explore-section-title {
  font-size: 42px;
  color: #00A9E0;
  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: #0076bf;
  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;
  }
}