

body {
  font-family: "Rubik", sans-serif;
  background: #f3f6fa;
}
/* navbar */

:root {
  --blue: #0B3C8C;
  --red: #F7202B;
  --gold: #FFD700;
  --text: #333;
}

/* Wrapper */
.appbar-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 2rem));
  z-index: 1050;
}

/* Navbar */
.appbar {
	border-radius: 22px;
	border: 3px solid transparent;
	background: linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)) padding-box, linear-gradient(90deg, #0B3C8C, #1E5AA8, #F11F2C) border-box;
	backdrop-filter: blur(6px);
	box-shadow: 0 18px 45px rgba(0,0,0,0.18);
	position: relative;
	overflow: hidden;
	padding: 0.8rem 1rem;
	height: 75px;
}
/* Floating blobs animation */
.appbar::before, .appbar::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

.appbar::before {
  background: linear-gradient(135deg, var(--blue), var(--red));
  top: -50px;
  left: -100px;
}

.appbar::after {
  background: linear-gradient(225deg, var(--gold), var(--red));
  bottom: -50px;
  right: -100px;
  animation-delay: 6s;
}

@keyframes float {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(50px, -30px) rotate(45deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* Navbar content above blobs */
.navbar-nav .nav-link,
.navbar-brand,
.mpd-btn {
  position: relative;
  z-index: 1;
}

/* Logo */
.navbar-brand img {
  height: 60px;
  position: relative;
  z-index: 999; /* above blobs */
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 55px;
    position: relative;
    top: -13px;
  }
}

/* Nav links */
.navbar-nav .nav-link{
  font-weight:600;
  padding:1rem 1.1rem;
  color:var(--text);
  position:relative;
  transition:color .25s ease;
}

/* Hover indicator */
.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:8px;
  width:0;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
  border-radius:6px;
  transform:translateX(-50%);
  transition:width .3s ease;
}

.navbar-nav .nav-link:hover::after{
  width:65%;
}

.navbar-nav .nav-link:hover{
  color:var(--blue);
}

/* Dropdown */
.dropdown-menu {
  border-radius: 14px;
  border: none;
  padding: .6rem 0;
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
  background:linear-gradient(rgba(230, 209, 209, 0.92), rgba(255,255,255,.92)) padding-box, linear-gradient(90deg, #0B3C8C, #1E5AA8, #F11F2C) border-box;
  z-index: 1060;
}

.dropdown-item {
  font-weight: 500;
  padding: .65rem 1.4rem;
  transition: .2s ease;
  color: var(--text);
}

.dropdown-item:hover {
  background: linear-gradient(90deg,#edf2ff,#f9fbff);
  color: var(--blue);
}

/* Mandatory Public Disclosure Button */
.mpd-btn {
  background: linear-gradient(90deg,var(--blue),#F7202B);
  color: #fff;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(11,60,140,.35);
}

.mpd-btn i {
  font-size:.85rem;
}

.mpd-btn:hover {
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(11,60,140,.45);
}

@media(max-width:576px){
.appbar {
	overflow: visible !important; 
}

.appbar::before {
display: none;
}

.appbar::after {
display: none;
}


.navbar-nav{
  background:linear-gradient(rgba(230, 209, 209, 0.92), rgba(255,255,255,.92)) padding-box, linear-gradient(90deg, #0B3C8C, #1E5AA8, #F11F2C) border-box; ;
}
}

/* ===================== CAROUSEL ===================== */
.carousel-wrapper {
  text-align: center;
  padding: 5px 20px;
  position: relative;
}

.carousel-container {
  position: relative;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.carousel-stack-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.carousel-top {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
  width: 100rem;
  height: 50rem;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: inherit;
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
}

.btn-yellow {
  background-color: #ffd700;
  color: black;
  font-weight: bold;
  border: none;
}

.btn-yellow:hover {
  background-color: #e6c200;
}

/* Slide positions for stacked carousel */
.slide-1 {
  z-index: 1;
  transform: scale(0.8);
  opacity: 0.6;
}
.slide-2 {
  z-index: 2;
  transform: scale(0.9);
  opacity: 0.8;
}
.slide-3 {
  z-index: 5;
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.slide-4 {
  z-index: 2;
  transform: scale(0.9);
  opacity: 0.8;
}
.slide-5 {
  z-index: 1;
  transform: scale(0.8);
  opacity: 0.6;
}

/* Carousel indicators */
.carousel-indicators-custom {
  display: flex;
  justify-content: left;
  gap: 12px;
  margin-top: 30px;
  margin-left: 15rem;
}

.carousel-indicators-custom button {
  border: 2px solid rgba(255, 255, 255, 0.445);
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
  transition: background 0.3s, color 0.3s;
  margin-top: -210px;
  z-index: 10;
}

.carousel-indicators-custom button.active {
  border: 3px solid white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .carousel-top {
    transform: translateX(0) !important;
  }

  .carousel-slide {
    width: 90vw !important;
    height: 50vh !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 1 !important;
    margin: 0 auto;
    display: none;
  }

  .carousel-slide.active-slide {
    display: block;
  }

  .carousel-indicators-custom {
    justify-content: center !important;
    margin-left: 0 !important;
  }

  .carousel-indicators-custom button {
    margin-top: -150px;
    height: 30px;
    width: 30px;
    font-size: 13px;
  }
}

/* ===== Modern Cards under Hero ===== */

.work {
  margin-top: -170px;
  position: relative;
  z-index: 200;
}

.mwidth {
  max-width: 1100px;
}

.work .card-modern {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 30px 22px;
  min-height: 280px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

.work .card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b3c8c, #f11f2c);
}

.work .card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.work-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3c8c, #f11f2c);
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
}

.work-icon img {
  width: 55%;
  filter: brightness(0) invert(1);
}

.work h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b3c8c;
  margin: 12px 0;
}

.work p {
  font-size: 0.95rem;
  color: #374151;
}

.more {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #0b3c8c, #f11f2c);
}

.more:hover {
  opacity: 0.9;
}

/* ================= ABOUT US ================= */

.about-us-section {
  /* background: linear-gradient(180deg, #f6f9ff, #ffffff); */
  padding: 60px 0;
}

/* Title */

.section-title {
  font-weight: 650;
  font-size: 2.6rem;
  color: #0b3c8c;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 6px;
  background: linear-gradient(
    to right,
    transparent,
    #8a6a1e,
    #c9a23f,
    #8a6a1e,
    transparent
  );
}

.section-subtitle {
  color: #7a651d; /* slightly muted gold */
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Text Card */
.about-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 32px;
  border-left: 5px solid #0b3c8c;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-card-title {
  font-weight: 600;
  color: #0b3c8c;
  margin-bottom: 15px;
}

.about-card p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Collage */
.about-collage {
  position: relative;
  width: 100%;
  height: 380px;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: 0.4s ease;
}

/* Image Layout */
.img-a {
  top: 0;
  left: 0;
  width: 55%;
  height: 58%;
}

.img-b {
  top: 8%;
  right: 0;
  width: 40%;
  height: 48%;
}

.img-c {
  bottom: 0;
  left: 12%;
  width: 42%;
  height: 38%;
}

.img-d {
  bottom: 5%;
  right: 0;
  width: 36%;
  height: 36%;
}

/* Hover lift */
.about-img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Mobile */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-collage {
    height: 300px;
  }

  .about-card {
    padding: 24px;
  }
}
  


/* message  */


#messages-sec {
  background: linear-gradient(90deg, #0b3c8c, #f11f2c);
  padding: 60px 0;
  color: #fff;
}

/* Header */
.section-header1 {
  text-align: center;
  margin-bottom: 25px;
}
.section-header1 h2 {
  font-weight: 650;
  font-size: 2.6rem;
}
.section-header1 .underline {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 8px auto;
  border-radius: 2px;
}

/* ===== Tabs (No Card) ===== */
.message-selectors {
  display: flex;
  justify-content: center;
  gap: 35px;
  
}

.message-selector {
  text-align: center;
  cursor: pointer;
  position: relative;
}

.message-selector img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.message-selector p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.message-selector.active img {
  transform: scale(1.2);
}

/* underline indicator */
.message-selector.active::after {
  content: "";
  width: 22px;
  height: 3px;
  background: #ffe600;
  border-radius: 3px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== Image ===== */
.message-image img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border-left: 8px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Content ===== */
.message-item {
  display: none;
}
.message-item.active {
  display: block;
}

/* Read More */
.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ffe600;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.read-more:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .message-image {
    text-align: center;
    margin-bottom: 25px;
  }
  .message-selectors {
    gap: 25px;
  }
}

/* gallery  */

#modern-gallery {
  padding: 60px 0;
}

/* ===== GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 25px;
}

/* ===== TILE ===== */
.gallery-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

/* BIG TILE */
.gallery-tile.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== IMAGE ===== */
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CAROUSEL HEIGHT FIX ===== */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

/* ===== DARK BOTTOM OVERLAY (ALWAYS VISIBLE) ===== */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

/* ===== TEXT ===== */
.gallery-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.gallery-text h4 {
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-text span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== BUTTON ===== */
.gallery-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #ffd000;
  color: #000;
  text-decoration: none;
}
.gallery-btn:hover {
  background: #fff;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tile.big {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Birthday +toppers + Achievements  */

.modern-highlight {
  background: linear-gradient(90deg, #0b3c8c, #f11f2c);
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

/* ================= GLASS CARD ================= */
.glass-card {
  position: relative;
  padding: 30px 25px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  text-align: center;
  height: 100%;
}

/* ================= BALLOONS ================= */
.balloons-left img,
.balloons-right img {
  position: absolute;
  width: 120px;
  pointer-events: none;
}

.balloons-left img {
  left: -15px;
  top: 60%;
}

.balloons-right img {
  right: -15px;
  top: 20%;
}

/* ================= POPPER ================= */
.popper-gif {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  pointer-events: none;
  animation: popperMove 2s ease-in-out infinite;
}

/* ================= TEXT ================= */
.modern-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.subline {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* ================= PROFILE ================= */
.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin: 25px 0;
  transition: 0.4s;
}

.profile-img:hover {
  transform: scale(1.1);
}

.profile-name {
  font-weight: 600;
}

.profile-meta {
  font-size: 13px;
  opacity: 0.75;
  margin: 5px 0;
}

/* ================= NEWS ================= */
.news-wrapper {
  overflow: hidden;
  height: 220px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 14px;
}

.news-date {
  font-size: 12px;
  opacity: 0.7;
}

/* ================= ANIMATION ================= */
@keyframes popperMove {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-18px);
  }
}

/* Facilities   */

/* ===== FACILITIES SECTION ===== */
#facility-section {
  padding: 60px 0;
}

/* ===== STRIP ===== */
.facility-strip {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  padding-bottom: 25px;
  scroll-snap-type: x mandatory;
}
.facility-strip::-webkit-scrollbar {
  height: 6px;
}
.facility-strip::-webkit-scrollbar-thumb {
  background: #0b5ed7;
  border-radius: 20px;
}

/* ===== CARD ===== */
.facility-card {
  min-width: 340px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

/* Content */
.facility-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
}
.facility-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
}
.facility-content p {
  opacity: 0.9;
  margin-bottom: 10px;
}

/* LINK STYLE (as requested) */
.facility-content a {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 2px;
  transition: 0.3s;
}
.facility-content a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
  .facility-card {
    min-width: 270px;
    height: 400px;
  }
}

/* =========== Footer ================ */
.footer {
  background: linear-gradient(90deg, #0b3c8c, #f11f2c);
  color: #cfd6d9;
  padding: 55px 0 28px;
}

.footer a {
  color: #cfd6d9;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .brand img {
  height: 60px;
  margin-left: -15px;
}
.footer h6 {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.footer .social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  background: rgba(255, 255, 255, 0.15);
  margin-right: 8px;
  border: 1px solid #fff;
}

.footer .social a:hover {
  background: #fff;
  color: #0b3c8c;
}

.footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 0.95rem;
}

/* banner  */

.page-banner {
  position: relative;
  padding: 180px 0 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, #0b3c8c, #1e5aa8, #f11f2c),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 12px,
      transparent 12px,
      transparent 24px
    );
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-top-left {
  top: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
}

.circle-bottom-right {
  bottom: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
}

.page-banner h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 1;
}

.banner-underline {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 auto 18px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
}

.breadcrumb span {
  margin: 0 8px;
  color: #fff;
  opacity: 0.85;
}

.breadcrumb a:hover {
  text-decoration: underline;
}








  /* Facilities page  */

   .facilities-page-line {
    width: 80px;
    height: 3px;
    background: #000;
    margin-bottom: 15px;
  }

  /* Accordion Button Style */
  .facilities-page-btn {
    background: linear-gradient(90deg, #0b3c8c, #f11f2c)!important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 15px;
    border-radius: 0 !important;
  }
  .facilities-page-btn:not(.collapsed) {
    background: linear-gradient(90deg, #0b3c8c, #f11f2c)!important;
  }

  .facilities-page .accordion-button::after {
    filter: invert(1); /* Turns default dark arrow to white */
    opacity: 1;
}

.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: none;
}

  /* Accordion Body */
  .facilities-page-body {
    border: 1px solid #ccc;
    padding: 60px;
  }
/* Image wrapper: aligns all images left → right */
.facilities-img-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

/* Image design */
.facilities-page-img {
    width: 100%;
    /* max-width: 380px;   */
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
    padding-left: 10px;
  padding-bottom: 10px;
}

/* Hover effect */
.facilities-page-img:hover {
    transform: scale(1.03);
}
