:root {
  --maroon: #a3332b;
  --navy: #231d44;
  --theme-primary: linear-gradient(135deg, #a3332b, #231d44);
}

body {
  font-family: "Segoe UI", sans-serif;
  /* background:
    radial-gradient(circle at top left, rgba(223, 177, 177, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(151, 168, 214, 0.2), transparent 70%); */
  margin: 0;
  padding: 0;
  cursor: default;
  /* background: url(../images/White-Bg.svg) center center / cover fixed; */
  /* background: linear-gradient(135deg, #fcfcfcf6 , #fcfcfcf6), url(../images/Banner.png) center center / cover fixed; */
}

p, li, a {
  font-family:'Rubik',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}


      /* NAVBAR  */

/* .nav-wrapper-modern {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  z-index: 2000;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(35, 29, 68, 0.96) 0%,
    rgba(82, 40, 56, 0.95) 50%,
    rgba(163, 51, 43, 0.94) 100%
  );
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.7),
    0 0 6px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
} */

.nav-wrapper-modern {
	position: fixed;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1300px;
	z-index: 2000;
	border-radius: 20px;
	background: linear-gradient( 135deg, rgba(35, 29, 68, 0.96) 0%, rgba(82, 40, 56, 0.95) 50%, rgba(163, 51, 43, 0.94) 100% );
	box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.7), 0 0 6px rgba(255, 255, 255, 0.3);
	border: 1px solid rgb(255, 255, 255);
	backdrop-filter: blur(18px);
	transition: all 0.35s ease;
}

/* INITIAL TRANSPARENT NAVBAR (Disabled on mobile) */
@media (min-width: 768px) {
  .nav-wrapper-modern.initial-nav {
    width: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 12px 0 !important;
  }

  .initial-nav .school-logo {
    width: 100% ;
    height: 65px !important;
  }

  .initial-nav .branding span,
  .initial-nav .branding small {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .initial-nav .nav-link {
    color: #ffffff !important;
    /* font-size: 15px !important; */
    font-weight: 500 !important;
  }

  .initial-nav .nav-link:hover {
    color: #f8c400 !important;
  }

  .initial-nav .nav-link::after {
    background: transparent !important;
  }
}

/* Always SCROLLED style on mobile */
@media (max-width: 767px) {
  .nav-wrapper-modern {
    width: 90% !important;
    top: 0 !important;
    border-radius: 30px !important;
  }
}

/* Branding */
.school-logo {
  width: 100%;
  height: 55px;
  object-fit: cover;
  margin-left: 10px;
  transition: 0.35s ease;
}

.branding small {
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.9;
}

.branding span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  display: block;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.25s;
  position: relative;
}

/* Underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #ffd35c;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 55%;
}

/* MOBILE NAV FIX */
@media (max-width: 767px) {
  .navbar-nav {
    padding-left: 10px !important;
    text-align: left !important;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 12px 6px !important;
    text-align: left !important;
  }
  .branding span {
    font-size: 10px;
  }
  .branding small {
    font-size: 8px;
  }
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  min-width: 230px;
  padding: 0.4rem 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* ======================================================
                CAROUSEL
====================================================== */
.carousel-item.slide-item {
  height: 100vh;
  min-height: 480px;
  position: relative;
}

.carousel-item.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item.slide-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-top: 10px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

/* NEWS SECTION */
.news-section {
  background: linear-gradient(135deg, #a3332b, #231d44);
  color: white;
  padding: 20px 0;
}

.news-line {
  height: 3px;
  width: 60px;
  background: #f8c400;
  margin: 10px 0 15px 0;
}

.news-card {
  padding: 15px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  transition: 0.3s ease;
  height: 100%;
  min-height: 90px;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.news-card h5 {
  margin: 0;
  font-weight: 600;
}


/* show grab cursor when hovering carousel */
#newsCarousel { cursor: grab; user-select: none; -webkit-user-select: none; }
#newsCarousel.dragging { cursor: grabbing; }

/* optional: make inner clickable links still visible */
#newsCarousel .carousel-item { touch-action: pan-y; } /* allow vertical page scroll */


/* ======================================== */

.btn-success {
	background: #f8c400 !important;
	border: none;
	color: var(--navy);
	font-weight: 600;
}

.btn-success:hover {
  background: #f8c400 !important;
  color: var(--navy);
}

.view-more-btn {
  background: #f8c400;
  color: #ffffff;
  font-weight: 600;
  padding: 4px 12px !important;
  font-size: 13px;
  border-radius: 6px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-top: 35px;
}



/* About Section */





.about-section {
    padding: 4rem 1rem;
    background: url(../images/White-Bg.svg) no-repeat center center / cover;
}
.about-section1 {
    background: url(../images/White-Bg.svg) no-repeat center center / cover;
}

/* Title */
.about-section .title h1 {
	text-align: center;
	font-family: "Segoe UI", sans-serif;
	letter-spacing: 0.95px;
	color: #a3332b;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 700;
}
/* .about-section .title h1 {
    text-align: center;
    font: 38px Marcellus, serif;
    letter-spacing: 0.95px;
    color: #a3332b;
    text-transform: uppercase;
    margin-bottom: 20px;
} */

.banner-line1 {
    height: 8px;
    width: 60px;
    background: #231d44;
    margin: 5px auto 15px;
    border-radius: 5px;
}

.about-section .title p {
	/* font-weight: 500; */
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.8px;
	color: #1A2D37;
	text-transform: uppercase;
}

/* Collage grid */
.collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.collage .big {
    grid-column: 1 / -1;
    height: 280px;
    object-fit: cover;
    border-radius: .75rem;
}

.collage img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: .6rem;
}

/* Text block */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h3 {
    color: var(--maroon);
    font-weight: 700;
}

.about-text p {
    color: #333;
    line-height: 1.6;
}


.continue-link {
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 8px 15px;
    border-radius: 10px;
    border-left: 2px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    background: linear-gradient(135deg, #a3332b, #231d44);   
    transition: 0.3s ease;
}

.continue-link:hover {
    background: #fff; 
    color: var(--maroon);  
}

.continue-link1 {
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 8px 15px;
    border-radius: 10px;
    border-left: 2px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    background: linear-gradient(135deg, #a3332b, #231d44);   
}

.continue-link1:hover {
    padding-left: 20px;
    opacity: 0.9;
}
.continue-link-news {
    background: var(--maroon);
    color: #fff;
  font-weight: 600;
  padding: 4px 12px !important;
  font-size: 13px;
  border-radius: 6px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-top: 35px;  
  text-decoration: none;
  transition: 0.4s ease;
  border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.continue-link-news:hover {
    background: #fff;
    color: var(--maroon);
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* Responsive */
@media (max-width: 767.98px) {
    .collage {
        grid-template-columns: 1fr;
    }
    .collage .big {
        height: 220px;
    }
    .collage img {
        height: 180px;
    }
}





       /* Message  */



.principal-desk-section {
    background: linear-gradient(135deg, #a3332b, #231d44);
    /* background: url(../images/bg-right.svg), linear-gradient(135deg, #a3332b, #231d44); */
    position: relative;
    overflow: hidden;
    background-position: right bottom;
  background-repeat: no-repeat;
}

.desk-content {
    position: relative;
    z-index: 2;
}

/* Tabs */
.custom-tabs .nav-link {
    color: #ffd9d6 !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border: none !important;
    background: transparent;
    padding: 6px 18px;
    border-radius: 6px;
}

.custom-tabs .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff !important;
}

/* Read More Button */
/* .continue-link {
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 8px 15px;
    border-radius: 10px;
    border-left: 2px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.continue-link:hover {
    background: #fff;
    color: #a3332b;
} */

/* Image */
.principal-photo {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
	display: block;
	margin: auto;
}

/* Mobile */
@media (max-width: 991px) {
    .principal-photo {
        width: 60%;
        height: auto;
        margin-top: 30px;
    }

    /* .continue-link {
        white-space: nowrap !important;
    } */
}



/* Toppers + Birthday  */




.decor-section {
  padding: 45px;
  /* margin-top: 50px; */
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f0f2f8);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.decor-section::before,
.decor-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(163,51,43,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
}

.decor-section::before { top: -60px; left: -80px; }
.decor-section::after { bottom: -70px; right: -80px; }

/* TITLES */
.section-title,
.birthday-heading {
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  letter-spacing: 0.95px;
  color: #a3332b;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.birthday-wishes {
  width: 100%;
  max-width: 200px;
}

/* TOPPER CARD */
.topper-card {
  background: white;
  padding: 25px;
  border-radius: 22px;
  border: 2px solid #ecdede;
  box-shadow: 0 12px 25px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
}

.topper-card::after {
  content: "🏆";
  position: absolute;
  font-size: 90px;
  opacity: 0.12;
  right: -5px;
  top: -10px;
  transform: rotate(15deg);
}

.topper-card h3 {
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.topper-item {
  text-align: center;
}

.topper-item img {
  width: 120px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  margin-bottom: 12px;
}

.topper-item h5 {
  /* font-weight: 800; */
  color: var(--navy);
}

.topper-item p {
  color: var(--maroon);
  font-weight: 700;
}

/* BIRTHDAY CARD */
.birthday-card {
  background: linear-gradient(135deg, #ffffff, #f6f4ff);
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 3px solid #e5d4d4;
  position: relative;
  overflow: hidden;
}

.birthday-card::after {
  content: "🎈";
  position: absolute;
  font-size: 100px;
  opacity: 0.15;
  bottom: -10px;
  right: 20px;
}

.birthday-slider-wrapper {
  height: 380px;
  overflow: hidden;
}

.birthday-slider {
  animation: scrollBirthdays 13s linear infinite;
}

@keyframes scrollBirthdays {
  0% { transform: translateY(0); }
  100% { transform: translateY(-900px); }
}

.birthday-slide {
  text-align: center;
  margin-bottom: 40px;
}

.birthday-frame {
  width: 170px;
  height: 210px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(145deg, var(--maroon), var(--navy));
  box-shadow: 
    0 8px 18px rgba(0,0,0,0.3),
    inset 0 0 15px rgba(255,255,255,0.2);
}

.birthday-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.date-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.student-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}

.student-class {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon);
}

/* BUTTON */
.view-btn {
  background: var(--maroon);
  color: white;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.view-btn:hover {
  background: var(--navy);
}

/* CAROUSEL ARROWS */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(35%) sepia(70%) saturate(800%) hue-rotate(330deg);
}

/* BALLOONS */
.balloon {
  position: absolute;
  width: 55px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.25;
  animation: balloonFloat 6s ease-in-out infinite;
}

.balloon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 45px;
  background: rgba(0,0,0,0.4);
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.balloon.b1 {
  background: radial-gradient(circle at 50% 40%, #ffb3c6, #ff4d6d);
  left: 20px;
  top: 60px;
}

.balloon.b2 {
  background: radial-gradient(circle at 50% 40%, #bde0fe, #4091ff);
  right: 25px;
  top: 110px;
  animation-delay: 1.2s;
}

.balloon.b3 {
  background: radial-gradient(circle at 50% 40%, #caffbf, #2ec4b6);
  left: 80px;
  bottom: 40px;
  animation-delay: 2s;
}

@keyframes balloonFloat {
  0% { transform: translateY(20px); }
  50% { transform: translateY(-35px); }
  100% { transform: translateY(20px); }
}



/* PHOTO GALLERY SECTION */



.photo-gallery-section {
  /* background: linear-gradient(135deg, #a3332b, #231d44); */

  background: linear-gradient(135deg, #a3332b, #231d44);
  /* background: url(../images/bg-right.svg), linear-gradient(135deg, #a3332b, #231d44); */
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background-position: right bottom;
  background-repeat: no-repeat;
}

/* WRAPPER */
.gallery-wrap {
  border-radius: 22px;
  overflow: hidden;
    box-shadow: 0 25px 85px rgba(221, 164, 164, 0.158);
}


/* MAIN IMAGE */
.gallery-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  transition: opacity .5s ease;
}

/* THUMBNAILS */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.thumb-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease;
}

.thumb-box:hover {
  transform: translateY(-5px);
}

.thumb-box img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.thumb-box span {
  display: block;
  padding: 8px;
  /* font-weight: 600; */
  color: #333;
}

/* RIGHT SECTION */
.gallery-text {
  padding: 40px 60px;
  background: transparent;
}

.right-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 10px;
}

.right-main-title {
  font-family: "Segoe UI", sans-serif;
  letter-spacing: 0.95px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
/* .right-main-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
} */

.right-subtitle {
  font-size: 1.05rem;
  color: white;
  margin-top: 8px;
  margin-bottom: 35px;
}

/* DETAILS PANEL */
.album-section {
  padding-left: 25px;
  border-left: 4px solid #ffffff; 

}

.album-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.album-date {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 12px;
}

.album-desc {
  font-size: 1.3rem;
  color: white;
  line-height: 1.5;
  margin-bottom: 18px;
}

.album-count {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* BUTTON */
.view-btn {
  background: linear-gradient(135deg, #a3332b, #231d44);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.view-btn:hover {
  background: linear-gradient(135deg, #a3332b, #231d44);
}





/* =================== Facilities ===================  */





.facilities-section .title h2 {
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  letter-spacing: 0.95px;
  color: #a3332b;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Mobile Title Fix */
@media (max-width: 576px) {
  .facility-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.facilities-section .title p {
  font-weight: 500;
  text-align: center;
  font: normal normal normal 16px/19px Rubik;
  letter-spacing: 0.8px;
  color: #1A2D37;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 24pt;
}

.facility-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
  font-size: 45px;
  color: #a3332b;
  margin-bottom: 15px;
}

/* Bottom Carousel Controls */
.carousel-controls-bottom {
  text-align: center;
  margin-top: 20px;
}

.carousel-controls-bottom button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a3332b, #231d44);
  border: none;
  margin-top: 100px;
  opacity: 1;
}

.carousel-controls-bottom .carousel-control-prev-icon,
.carousel-controls-bottom .carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-next, .carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: 0 0;
	border: 0;
	opacity: 1;
	transition: opacity .15s ease;
}

/* Mobile: Show Only One Card */
@media (max-width: 576px) {
  .carousel-item .row > div {
    display: none !important;
  }
  .carousel-item.active .row > div:first-child {
    display: block !important;
  }
}





/* Footer */



.logo-footer {
  width: 145px;
  z-index: 20;
  border-radius: 50%;
  padding: 6px;
  overflow: hidden;
  margin: 0 auto;
}

.logo-footer a {
  display: block;
  position: relative;
}

.logo-footer img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-footer a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(150%) rotate(25deg); }
}

/* Footer Background */
.site-footer {
  background: linear-gradient(180deg, #a3332bf5, #231d44), url('../images/School_Building.jpg') no-repeat center center / cover;
  padding: 2% 0% 10% 0%;
  position: relative;
  /* background: linear-gradient(135deg, #a3332b, #231d44); */
  /* background: url(../images/bg-right.svg), linear-gradient(135deg, #a3332b, #231d44); */
  overflow: hidden;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (max-width: 574px) {
  .site-footer {
    padding: 2% 0% 40% 0%;
  }
}

.footer-logo {
  width: 100%;
  max-width: 100px;
}

.site-footer h6 {
  color: var(--theme-secondary);
}

/* Social Icons */
.social-sec {
  position: absolute;
  bottom: 10%;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

@media (max-width: 574px) {
  .social-sec {
    bottom: 5%;
  }
}

.social-sec li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s ease;
  cursor: pointer;
}

.social-sec li a {
  color: white;
  font-size: 18px;
}

.social-sec li:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
}

/* Button Border Animation */
.btn-border-flow {
  display: inline-block;
  padding: 6px 18px;
  font-size: 18px;
  color: #fff;
  background: #2B2043;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);
}

.btn-border-flow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(270deg, var(--primary-light), var(--theme-primary), #1450e9, var(--primary-light));
  background-size: 400% 400%;
  animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--theme-secondary);
  color: var(--theme-index);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Patron Section */
.brigida-morello {
  width: 100%;
  max-width: 400px;
  padding: 6px;
  margin: 0 auto;
}

.brigida-morello img {
  width: 100%;
}

.patron-name {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: #D4AF37 !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 2px;
}

.patron-title {
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f2ecbd !important;
  text-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}



/* ===== FLOATING POD (REDUCED SIZE & RESPONSIVE) ===== */


#floating-pod {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-primary);
  padding: 10px 28px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 3000;
  color: #ffffff;
}

.pod-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.pod-item i {
  font-size: 1.5rem;
  color: var(--theme-secondary);
}

.top-line {
	font-weight: 600 !important;
  font-size: 14px !important;
	color: #f8c400;
}

.bottom-line {
  font-size: 0.72rem;
  color: var(--theme-secondary);
  color: #fff !important;
}

.pod-divider {
  height: 30px;
  border-right: 2px solid #f8c400;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  #floating-pod {
    display: none;
  }
}

.pod-div {
  display: flex;
  flex-flow: column;
}





/* Banner  */


 .school-banner {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .school-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Dark overlay */
  .school-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
  }

  /* Banner text */
  .banner-text {
    position: absolute;
    z-index: 10;
    text-align: center;
    color: #fff;
  }

  .banner-title {
   text-align: center;
   letter-spacing: 0.95px;
   text-transform: uppercase;
   margin-bottom: 20px;
   margin-top: 80px;
   font-family: "Cinzel", serif;
   font-size: 2.8rem;
   font-weight: 700;
   color: white;
  }

  /* Breadcrumb */
  .breadcrumb-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffffc5;
  }

  .breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .breadcrumb-text a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .school-banner {
      height: 260px;
    }

    .banner-title {
      font-size: 30px;
    }

    .breadcrumb-text {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .school-banner {
      height: 180px;
    }

    .banner-title {
      font-size: 22px;
    }
  }









  /* Patron Page  */


  .patron-layout-section {
  background: #fefefe;
}

.patron-heading {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #17224d;
  font-weight: 700;
}

.patron-sub-heading {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: #17224d;
  font-weight: 600;
}

.patron-text-block {
  color: #222;
  font-size: 1.06rem;
  line-height: 1.75rem;
}

.patron-text-block p {
  margin-bottom: 1.2rem;
}

/* IMAGE */
.patron-image-wrapper {
  text-align: center;
}

.patron-side-image {
  width: 100%;
  max-width: 330px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}


/* ================== VIDEO SECTION ================== */
.patron-video-section {
  background: #ffffff;
}

.youtube-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #17224d;
  font-weight: 700;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}



/* Curriculum */


.icon-list {
    list-style: none;
    padding-left: 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}





/* calender  */

  .calendar-pdf {
    width: 100%;
    height: 90vh;   /* Big height like your screenshot */
    border-radius: 10px;
  }

  .pdf-box {
    background: #fff;
    border-left: 4px solid #000; /* matches screenshot style */
  }






  /* Facilities page  */

   .facilities-page-line {
    width: 80px;
    height: 3px;
    background: #000;
    margin-bottom: 15px;
  }

  /* Accordion Button Style */
  .facilities-page-btn {
    background: linear-gradient(135deg, #a3332b, #231d44)!important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 15px;
    border-radius: 0 !important;
  }
  .facilities-page-btn:not(.collapsed) {
    background: linear-gradient(135deg, #a3332b, #231d44)!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;   /* INCREASED from 320px → 380px */
    height: 260px;      /* INCREASED height to match proportion */
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;

}
.Teaching-Staff-img {
    width: 100%;
  max-width: 400px;
  border-radius: 10px;
  transition: 0.3s ease;

}

/* Hover effect */
.facilities-page-img:hover {
    transform: scale(1.03);
}


/* ======================table================ */

thead th {
	background: var(--theme-primary);
	color: white !important;
}