/* ------------------------------ Design tokens (SANTHOM colourway) ------------------------------ */
 :root{
     --container: 1170px;
     --navH-desktop: 74px;
     --navH-mobile: 58px;
     --radius-lg: 22px;
     --radius-md: 14px;
    /* Brand palette from the logo */
     --Secondar-color:#ca1e1c;
     --Primary-color:#052354;
     --brand-blush:#FFF3F9;
     --cream:#F3EBD4;
     --gold:#E0C066;
     --nav-blue:var(--Secondar-color);
     --deep-blue:var(--Secondar-color);
     --white:#fff;
     --page: #F9F7F5;
}
 html,body{
     height:100%;
     background: var(--page);
     font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
     scroll-behavior:smooth;
}

h1, h2, h3, h4, h5, h6 {
   font-family: Cinzel, serif;
   color: #fff;
}

 .text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
 }
 .text-shadow-md {
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
 }
/* focus */
 :focus-visible{
    outline:2px solid var(--Primary-color);
     outline-offset:2px
}


.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
/* ------------------------------ Header / Navbar ------------------------------ */
 .header-wrap{
    position:absolute;
     top:0;
     left:0;
     width:100%;
     z-index:99;
     transition:.35s
}
 .header-wrap.sticky{
    position:fixed;
     top:0;
     width:100%;
     animation:fadeInDown .45s ease-in-out 1
}
 @keyframes fadeInDown{
    from{
        opacity:0;
         transform:translateY(-10px)
    }
     to{
        opacity:1;
         transform:none
    }
}
/* top icon strip */
 .gold-line{
    width:98%;
     height:38px;
     position:relative;
     z-index:10000;
     margin:0 auto
}
 .gold-line .ul-right{
    float:right;
     margin:0;
     padding: 0px 20px;
     color: var(--gold);
}
 .gold-line .ul-left{
    float: left;
     margin:0;
     padding: 0px 20px;
     color: var(--gold);
}
 .gold-line li{
    display:inline-block;
     padding:8px 0 4px
}



 @media (max-width:1199px){
     .gold-line{
        display:none
    }
}
/* ribbon */
 .header-bottom{
     background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23);
     /* background:linear-gradient(90deg, var(--Primary-color) 0%, var(--Secondar-color) 55%, var(--Primary-color) 92%); */
     border-radius:10px;
     position:relative;
     height:var(--navH-desktop);
     border-top: 3px solid var(--gold);
     padding: 0px 10px;
}


/* gold cap image (keep existing asset if you don't have a pPrimary-color-tinted one) */
 .header-wrap.style1 .header-bottom::after{
     --navtop-top: clamp(-40px, -3.5vw, -20px);
     content:"";
     position:absolute;
     left:50%;
     transform:translateX(-50%);
     top:var(--navtop-top);
     width:min(var(--container),100%);
     aspect-ratio:1170/74;
     background:url('./navtop.png') center/100% 100% no-repeat;
     z-index:-1;
     pointer-events:none;
     border-radius:10px;
}
 @supports not (aspect-ratio:1/1){
     .header-wrap.style1 .header-bottom::after{
        height:clamp(40px,6.33vw,74px)
    }
}
 .main-nav{
    position:relative;
     display:flex;
     align-items:center;
     justify-content:space-between;
     height:var(--navH-desktop);
     padding:0 0px
     /* padding:0 6px */
}
 .main-nav .nav-lPrimary-color{
     color:#fff;
     text-transform:uppercase;
     /* font-weight:800; */
     letter-spacing:.25px;
     padding:.35rem 1.05rem;
     position:relative;
     font-size: 14px; 
}
 .main-nav .nav-lPrimary-color .chev{
    font-size:.85rem;
     opacity:.95;
     margin-left:.35rem
}

.main-nav .nav-link {
	color: #fff;
	text-transform: uppercase;
	/* font-weight: 800; */
	letter-spacing: .25px;
	padding: .35rem 1.05rem;
	position: relative;
	font-size: 14px;
}



/* Make dropdown open on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove gap so it sticks under the lPrimary-color */
}

/* Optional: smooth dropdown animation */
.nav-item.dropdown .dropdown-menu {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
    border-radius: 0px;
	border-left: 3px solid var(--gold);
	background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23);
    min-width: 230px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


.dropdown-item {
	display: block;
	width: 100%;
	padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
	clear: both;
	font-weight: 400;
	color: #fff;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-radius: var(--bs-dropdown-item-border-radius,0);
}

.dropdown-item:focus, .dropdown-item:hover {
	color: var(--bs-dropdown-lPrimary-color-hover-color);
	background-color: var(--cream);
}
.dropdown-item a:hover {
   color: #000;
}
/* ============================ */

.logo-center {
	position: absolute;
	margin: 0 auto;
	left: 50%;
	top: -78px;
	width: 150px;
	text-align: center;
	z-index: 10000;
	transform: translateX(-50%);
}

.logo-center .crest-box {
	display: flex;
	align-items: center;
	justify-content: center;
}
 .logo-center img{
    max-width:88%;
     max-height:88%;
     object-fit:contain
}


 .others-options .btn.style1 {
	color: #fff;
    display: flex;
	align-items: center;
	gap: .55rem;
}
 .others-options .btn.style1:hover {
	color: var(--cream);
    display: flex;
	align-items: center;
	gap: .55rem;
}


/* mobile */
 .nav-toggle{
    display:none
}
 .nav-toggle .btn{
    border:1px solid rgba(255,255,255,.35);
     color:#fff;
     border-radius:8px;
     padding:.4rem .6rem;
     background:rgba(0,0,0,.15)
}
 .offcanvas{
    background:linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23)
}
 .offcanvas-title{
    font-weight:800;
     letter-spacing:.2px
}
 .mobile-menu .nav-lPrimary-color{
    font-size:1rem;
     padding:.75rem 0;
     font-weight:700
}
 .mobile-login{
    margin-top:.75rem
}
 @media (max-width:991px){
     .header-bottom{
        height:var(--navH-mobile)
    }
     .main-nav{
        height:var(--navH-mobile);
         padding:0 10px
    }
     .others-options{
        display:none
    }
     .nav-toggle{
        display:block
    }
     .logo-center{
        top:-18px;
         width:96px
    }
     .logo-center .crest-box{
        width:96px;
         height:112px
    }
     .header-wrap.style1 .header-bottom::after{
         --navtop-top: clamp(-34px, -5.2vw, -16px);
    }
}
 @media (max-width:575px){
     .logo-center{
        left:0;
         right:auto;
         transform:none;
         margin-left:8px
    }
     .header-wrap.style1 .header-bottom::after{
         --navtop-top: clamp(-26px, -7vw, -14px) 
    }
     .main-nav{
        padding:0 8px
    }
}
/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  height: calc(100vh - 34px);
  min-height: 620px;
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}


/* Carousel indicators customization */
.carousel-indicators {
  bottom: 0px; /* adjust distance from bottom */
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%; /* make it round */
  background-color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2); /* enlarge active dot */
}


.hero .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.56);
  /* filter: brightness(.46); */
}
.hero .overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(80% 60% at 50% 42%, rgba(0,0,0,0), rgba(0,0,0,.52) 58%, rgba(0,0,0,.84)); */
}
.hero .center-copy {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  color: #fff;
}
 .pretitle{
     letter-spacing:.25rem;
     text-transform:uppercase;
     font-weight:800;
     color:#e8e8e8
}
 .brand-title{
    font-family:Cinzel, serif;
     font-size: 46px;
     color: var(--gold);
     line-height:1.1;
     text-shadow:0 10px 30px rgba(0,0,0,.65)
}
 .subline{
    font-size:clamp(1rem,1.2vw,1.25rem);
     color:#ececec;
     margin-top:.8rem;
     letter-spacing:.6px
}
 .fees-btn{
     position:absolute;
     left:50%;
     transform:translateX(-50%);
     bottom:28px;
     z-index:3;
     background:var(--Primary-color);
     border:none;
     border-radius:14px;
     padding:.85rem 1.15rem;
     font-weight:800;
     display:inline-flex;
     align-items:center;
     gap:.6rem;
     box-shadow:0 10px 24px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.15) 
}
 .fees-btn .badge-icon{
    background:var(--Primary-color);
     width:40px;
     height:40px;
     border-radius:10px;
     display:inline-flex;
     align-items:center;
     justify-content:center;
     font-size:1.15rem;
     box-shadow:inset 0 0 0 1px rgba(255,255,255,.18)
}
/* ------------------------------ Bulletin Board ------------------------------ */
 .underline-img {
   width: 30%;
 }
  @media (max-width:575px){
       .underline-img {
   width: 80%;
 }
  }


 .bulletin{
    position:relative;
     padding:120px 0 80px
}

 .board{
    background: var(--cream);
     border-radius: var(--radius-lg);
     border:1px solid var(--gold);
     box-shadow:0 16px 36px rgba(0,0,0,.08)
}

 .board-title{
    font-family:Cinzel, serif;
     letter-spacing:.12em;
     font-weight:700;
     font-size:clamp(1.6rem,2.6vw,2.55rem);
     color:#fff;
     margin:0
}
 .board-title1 {
    font-family:Cinzel, serif;
     letter-spacing:.12em;
     font-weight:700;
     font-size:clamp(1.6rem,2.6vw,2.55rem);
     color: var(--white);
     margin:0
}
 .board-title2 {
    font-family:Cinzel, serif;
     letter-spacing:.12em;
     font-weight:700;
     color: var(--white);
     margin:0
}

 .bulletin-item{
    position:relative;
     flex:0 0 calc(50% - 13px);
     background:#135513;
     color:#fff;
     border-radius:24px;
     min-height:100px;
     display:flex;
     align-items:center;
     padding:20px 22px 20px 138px;
     box-shadow: inset 0 0 0 1px rgba(255,255,255,.06)
}
 .date-wrap{
    position:absolute;
     left: -1px;
     top:50%;
     transform:translateY(-50%);
     background:#0e225e;
     border-radius:20px;
     /* padding:12px */
}
 .date-pill{
     background: var(--gold);
     /* background: linear-gradient(180deg, var(--Primary-color) 0%, var(--Primary-color) 100%); */
     border-radius:16px;
     color: var(--Primary-color);
     width:112px;
     height:100px;
     display:flex;
     flex-direction:column;
     align-items:center;
     justify-content:center;
     box-shadow:0 10px 16px rgba(0,0,0,.22) 
}
 .date-pill .day{
    font-weight:900;
     font-size:2rem;
     line-height:1
}
 .date-pill .month{
    margin-top:8px;
     font-weight:900;
     letter-spacing:.16em
}
 .new-tag{
    position:absolute;
     left:150px;
     top:-12px;
     background: var(--Secondar-color);
     color:#fff;
     font-weight:900;
     font-size:.72rem;
     padding:6px 10px 6px 12px;
     border-radius:8px
}
 .new-tag::after{
    content:"";
     position:absolute;
     left:8px;
     bottom:-8px;
     border-width:8px 6px 0 6px;
     border-style:solid;
     border-color:var(--Primary-color) transparent transparent transparent
}
 .content{
    padding-left:10px
}
 .item-title{
      color: #fff;
     margin:0 0 6px
}
 .meta{
    opacity:.88;
     font-size:.92rem;
     font-style:italic;
     margin:0
}
 .board-controls{
    display:flex;
     align-items:center;
     justify-content:center;
     gap:18px;
     margin-top:18px
}
 .ctrl.round{
    width:40px;
     height:40px;
     border-radius:50%;
     border:none;
     background:var(--Secondar-color);
     color:#fff;
     display:inline-flex;
     align-items:center;
     justify-content:center;
     box-shadow:0 8px 16px rgba(0,0,0,.18)
}
 .ctrl.round i{
    font-size:1.1rem
}
.viewall {
  background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23);
  color: #fff;
  border-radius: 14px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  background-size: 200% 100%;   /* make gradient 2x wider */
  background-position: left center; /* start position */
  transition: background-position 0.4s ease-in-out; /* animate position */
}

.viewall:hover {
  background-position: right center; /* shift to the right */
}


 .viewall1{
     color: var(--Secondar-color);
     border-radius:10px;
     border: 1px solid var(--Primary-color);
     padding:.5rem 1.25rem;
     display:inline-flex;
     align-items:center;
     gap:10px;
     font-weight:900;
     text-decoration:none;
     box-shadow:0 8px 16px rgba(0,0,0,.18) ;
     transition: 0.4s ease-in-out;
}
 .viewall1:hover{
     color: var(--white);
     background: var(--Primary-color);
     border: 1px solid var(--Primary-color);
}

 .viewall-gal{
     color: var(--white);
     border-radius:10px;
     border: 1px solid var(--white);
     padding:.4rem 1.25rem;
     display:inline-flex;
     align-items:center;
     gap:10px;
     font-weight:900;
     text-decoration:none;
     box-shadow:0 8px 16px rgba(0,0,0,.18) ;
     transition: 0.4s ease-in-out;
}
 .viewall-gal:hover{
     color: var(--Primary-color);
     background: var(--white);
     border: 1px solid var(--white);

}

 .viewall-gal1{
   color: #135513;
     background: var(--white);
     border: 1px solid var(--white);
     border-radius:10px;    
     padding:.4rem 1.25rem;
     display:inline-flex;
     align-items:center;
     gap:10px;
     font-weight:900;
     text-decoration:none;
     box-shadow:0 8px 16px rgba(0,0,0,.18) ;
     transition: 0.4s ease-in-out;
}
 .viewall-gal1:hover{
   color: var(--white);
   background: transparent;
   border: 1px solid var(--white);
}

 @media (max-width:991px){
     .bulletin{
        padding:100px 0 64px
    }

     .bulletin-item{
        flex:0 0 100%;
         padding:18px 18px 18px 124px
    }
     .date-wrap{
        left:18px
    }
     .new-tag{
        left:136px
    }
}
 @media (max-width:575px){
     .bulletin-item{
        padding-left:118px
    }
     .date-wrap{
        padding:10px
    }
     .date-pill{
        width: 80px;
         height:80px
    }
     .new-tag{
        left:128px
    }
}


.bulletin-swiper-section {
  padding: 100px 0px 0px 0px;
  position: relative;
}

.bulletin-swiper {
  padding: 20px 10px;
}

.bulletin-image {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

/* Adjust buttons */
.board-controls {
  margin-top: 20px;
}
.bulletin-prev,
.bulletin-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--Secondar-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
}
.bulletin-prev i,
.bulletin-next i {
  font-size: 1.2rem;
}

.news-student {
   position: absolute;
   bottom: 0;
   left: 0px;
   width: 100%;
}


/* ------------------------------ About (circular image version) ------------------------------ */
 .about-v2{
    padding:96px 0px 0px 0px;
     color:#111
}
.circle-media {
  width: clamp(340px, 48vw, 720px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 0 8px 30px rgba(0,0,0,.12); */
}

.circle-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


 .about-quote{
     color:#135513;
     line-height:1.35;
     margin:0 0 18px
}

 .about-quote1 {
     color: var(--Secondar-color);
     line-height:1.35;
     margin:0 0 18px
}

 .about-body{
    color:#24324c;
     font-size:1.05rem;
     line-height:1.7;
     margin:0 0 14px
}
 .tick-list{
    list-style:none;
     padding:0;
     margin:6px 0 18px;
     display:grid;
     gap:10px
}
 .tick-list li{
    font-weight:700;
     /* color:#233252; */
     color: var(--Secondar-color);
     display:flex;
     align-items:center;
     gap:10px
}
 .tick{
    display:inline-flex;
     width:25px;
     height:25px;
     border-radius:50%;
     align-items:center;
     justify-content:center;
     background:#135513;
     color:#fff;
     box-shadow:0 6px 12px rgba(0,0,0,.18)
}
 .about-ctas{
    display:flex;
     gap:12px;
     align-items:center
}

 @media (max-width:575px){
     .about-v2{
        padding:76px 0 64px
    }
}
/* ------------------------------ Principal Message ------------------------------ */
 .principal-msg{
     padding: 60px 0px;
     color:#111
}
 @media (max-width:575px){
 .principal-msg{
     padding: 10px 0px;
     
}
}

 .pm-title .sec-title{
    font-family:Cinzel, serif;
     letter-spacing:.1em;
     font-weight:700;
     color:var(--gold);
     font-size:clamp(1.5rem,2.4vw,2.3rem);
     margin:6px 0 0
}

 .role-tabs{
    margin-top:10px;
     font-weight:800;
     color:#1a2c4c
}
 .role-tabs .tab{
    background:transparent;
     border:0;
     padding:.2rem .6rem;
     color:#1a2c4c;
     letter-spacing:.12em
}
 .role-tabs .tab.active{
    color:var(--Secondar-color);
    text-decoration: none;
}
 .role-tabs .sep{
    opacity:.5;
     margin:0 .3rem
}

 .big-quote{
    font-weight:800;
     font-style:italic;
     color:#135513;
     font-size: 25px;
     line-height:1.25;
     margin:0 0 12px
}
 .quote-author{
    color:#233252;
     opacity:.8;
     margin-bottom:18px;
     font-weight:700
}
 .pm-body{
    color:#135513;
     font-size:1.08rem;
     line-height:1.9
}

 .pm-name{
     margin:8px 0 0;
     font-weight: 600;
     letter-spacing:.02em;
     color: #135513
}
 .pm-name span{
    margin:8px 0 0;
     font-weight:900;
     letter-spacing:.02em;
     color: var(--Secondar-color)
}
 .pm-name .title{
    color:var(--Primary-color)
}

 .principal-photo{
    position:absolute;
     right:0;
     bottom:-20px;
     width:min(520px,36vw);
     height:auto;
     object-fit:contain;
     filter:drop-shadow(0 12px 24px rgba(0,0,0,.15))
}
 @media (max-width:1199px){
     .principal-photo{
        width:min(480px,40vw)
    }
}
 @media (max-width:991px){

     .pm-right{
        order:1;
         min-height:280px
    }
     .pm-left{
        order:2
    }
     .principal-photo{
        position:relative;
         right:auto;
         bottom:0;
         margin:0 auto;
         display:block;
         width:min(460px,80vw)
    }
}
/* ------------------------------ Gallery Showcase ------------------------------ */

.carousel-control-next, .carousel-control-prev{
   opacity: 1;
}
 .gallery{
    padding:86px 0 70px;
     background:#fff;
     color:#111
}
 .gallery-wrap{
    display:grid;
     grid-template-columns: 1.15fr .85fr;
     gap:20px;
     align-items:stretch
}
.gallery-img {
   height: 550px;
}
 @media (max-width:575px){
   .gallery-img {
   height: 350px;
}
 }

 @media (max-width:991px){
     .gallery-wrap{
        grid-template-columns:1fr
    }
     .g-right{
        padding:28px 22px
    }

}

/* ------------------------------ Footer (SANTHOM accents) ------------------------------ */
 :root{
     --footer-bg:var(--deep-blue);
     --footer-head:var(--gold);
     --footer-accent:var(--Primary-color);
}
 .site-footer{
    /* background: var(--Primary-color); */
    background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23);
     color:#d9e3f5;
     padding:3px 0 26px;
     font-weight:600
}

 .contact-list{
    list-style:none;
     padding:0;
     margin:0
}
 .contact-list li{
    display:flex;
     gap:12px;
     align-items:flex-start;
     margin:14px 0;
     line-height:1.6
}
 .contact-list i{
    color: var(--gold);
     position:relative;
     top:3px
}
 .map-embed{
    width:100%;
     height:220px;
     border:0;
     border-radius:var(--radius-lg);
     box-shadow:0 10px 24px rgba(0,0,0,.25)
}

 .school-code{
    text-align:center;
     margin-top:16px
}
 .school-code .code{
    color:#fff;
     font-weight:900;
     font-size:1.4rem;
     letter-spacing:.06em
}
 .school-code .label{
    opacity:.85
}

/* Reduced motion support */
 @media (prefers-reduced-motion:reduce){
     *{
        scroll-behavior:auto !important;
         animation:none !important;
         transition:none !important
    }
}



.footer-round1 {
  background: rgba(255, 255, 255, 0.1); /* transparent glass effect */
  border-radius: 20px;
  display: flex;
  width: 100%;
  height: 250px;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* deeper shadow */
  backdrop-filter: blur(10px); /* glass blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* soft border */
}


.footer-round1 ul li a {
   text-decoration: none;
   color:  #fff;
   font-size: 14px;
}

.footer-round1 h4 {
   color: var(--gold);
}


.footer-down  {
   color: #fff;
   text-align: center;
   font-size: 13px;
   margin-top: 30px;
}

.footer-down a {
   color: #fff;
   text-decoration: none;
}
.footer-down a:hover {
   color: var(--gold);
   text-decoration: none;
}


.School-code {
   color: var(--gold);
}

/* ===================Facility Background=============== */

.facility-bg {

 background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23) center center / cover no-repeat;
    box-shadow: 0 8px 16px rgba(0,0,0,.18);
    padding: 60px;
}

@media (min-width: 577px) and (max-width: 992px) {
  .facility-bg {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .facility-bg {
    padding: 20px;
  }
}

/* Card styling */
.facility-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

/* Dark gradient overlay */
.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  border-radius: 20px;
}

.facility-card .card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.facility-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.facility-card p {
  font-size: 12px;
  margin: 0;
}

/* Navigation buttons */
.facility-nav {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.facility-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--Secondar-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  cursor: pointer;
}

.facility-icons {
   max-width: 60px;
   padding: 0px 0px 15px 0px;
}

/* ===================Toppers & Birthday======================== */


.custom-control-static {
  background-color: var(--Secondar-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-control-static i {
  color: #fff;
  font-size: 18px;
}


.birthday-gif {
width: 100%;
  position: absolute;
  left: 0;
}
.birthday-gif1 {
   width: 100%;
  position: absolute;
  right: 0;
}

.Birthday-name {
   position: absolute;
   z-index: 99;
   top: 35%;
   left: 50%;
   transform: translateX(-50%);
}

.toppers-name {
   background: var(--gold);
   border-radius: 10px;
   padding: 6px 0px;
}
.toppers-name h6 {
   color: var(--Primary-color);
}

 @media (max-width:575px){
   .toppers-name {
   margin: 0px 20px;
}
 }

/* =======================Enroll Now=========== */

.bg-gradient-secondary {
	background: linear-gradient(90deg,var(--Primary-color) 0%, var(--Secondar-color)100%);
}


.enroll-bg {
   padding: 60px 0px;
   background: #edebe9;
}


.enroll-button {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 576px) {
  .enroll-button {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
}



/* ====================Page===================== */

.hero-banner {
   height: 40vh;
min-height: 50px;
background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url('../images/Page-Bg1.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
/*margin-top: 90px;*/
padding-top: 180px;
padding-bottom: 118px;
   /*background: var(--page);
	height: 430px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;*/
}

@media (max-width: 576px) {
.hero-banner {
	height: 330px;
}
}

.hero-title {
	z-index: 3;
}
.hero-banner h1 {
	position: relative;
	color: #fff;
	font-size: 3rem;
	z-index: 1;
}


.about-content {
   color: #000000;
}

.style-list li {
	line-height: 25px;
	background: url(../images/icons/Arrow.png) no-repeat left 5px;
	padding: 0px 11px 10px 31px;
	list-style: none;
	margin: 0;
	vertical-align: middle;
	font-size: 15px;
}



/* ---------------------------Accordian--------------------------------------- */

 .accordion {
    border: none;
  }

  .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px 18px;
	font-size: 1rem;
	color: #000;
	text-align: left;
	background-color: var(--gold);
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	/* transition: var(--bs-accordion-transition); */
}

.accordion-body {
	/* padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); */
	background: var(--white);
	border-radius: 0px 0px 10px 10px;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.41);
}

.accordion-body img {
   border-radius: 10px;
   box-shadow:  1px 1px rgba(0, 0, 0, 0.41);
   margin-bottom: 10px;
}

  .accordion-item:first-of-type,
  .accordion-item:first-of-type .accordion-button {
    border-radius: 10px;
  }

  .accordion-button .hero-about {
display: flex;
align-items: center;
width: 100%;
font-size: 1rem;
font-weight: 600;
color: #000;
background-color: #967b7b;
border: none;
border-radius: 10px;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
}

.accordion-button span {
position: relative;
z-index: 1;
transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.accordion-button:hover span {
transform: translateX(5px);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


.accordion-button:not(.collapsed) {
background-color: var(--Primary-color);
color: #fff;
border-radius: 10px;
}


.accordion-header {
	margin-bottom: 5px;
}


.accordion-button:focus {
outline: none;
box-shadow: none;
}

  .accordion-item:last-of-type .accordion-button.collapsed {
border-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* =============Contact Us=============== */

thead th {
	background: linear-gradient(to right top, #135513, #3d7318, #68921b, #98b01e, #cdcd23);
	color: #fff !important;
}

table {
	position: relative;
	z-index: 9;
}

/*---------------------------------------*/
/*::::::::::::::::::MESSAGE::::::::::::::*/
/*---------------------------------------*/
/* .message {
  background-color: #0b60ab08;
} */
.msg-main-sec {
    display: flex;
    flex-flow: wrap;
    background: #0e62ac0a;
    border-radius: 5px;
    border: 1px solid #0b60ab17;
}
.msg-main-sec .msg-sec1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.msg-main-sec .msg-sec1 {
    width: 300px;
    padding: 10px;
}
.msg-main-sec .msg-sec2 {
    width: calc(100% - 300px);
    padding: 20px;
    display: flex;
    align-items: center;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.read {
    font-size: 0.8rem;
    color: #0b60ab;
    transition: 0.3s;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}
.read:hover {
    color: #f58634;
}
/* .msg-main-sec .msg-sec2 a:hover {
    color: #0a3879;
} */

.msg-main-sec .msg-sec2 img {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 50px;
}
.msg-img {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.msg-con h5 {
    color: #135513;
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 600;
}
.msg-con p {
    color: #9b9b9b;
    margin-bottom: 0;
    font-size: 0.9rem;
}
.msg-main-sec .msg-sec2 .para {
    /* font-style: italic; */
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 0.9rem;
    color: #333;
}
.perfo {
    position: relative;
    cursor: pointer;
}
.perfo i {
    position: absolute;
    bottom: 0;
    background: linear-gradient(90deg, #f58634, #ffcc2a);
    right: 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 13px 20px;
    border-radius: 1rem 0 0 0;
}

.perfo-sec {
    background-color: white;
    border: 1px solid #0000001c;
    border-radius: 5px;
    padding: 10px;
}
.perfo-sec .perswiper {
    border-radius: 3px;
}
.perfo-sec .perswiper img {
    border-radius: 3px;
}
.perfo-sec .perfo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.mytabnav {
    border: none;
    margin: 0 -5px;
    flex-flow: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 2px;
}

.mytabnav li.nav-item {
    padding-right: 5px;
    flex: none;
}

.mytabnav li.nav-item button {
    padding: 8px 20px;
    border-radius: 0.3rem;
    color: #f58634;
    border: none;
    font-size: 0.85rem;
    font-weight: 400;
    background-color: #f586341c;
}

.mytabnav li.nav-item button:hover {
    border: none;
    background-color: #f584344d;
    color: #f58634;
}

.mytabnav li.nav-item button:focus {
    box-shadow: none;
}

.mytabnav li.nav-item button.active {
    color: #fff;
    background-color: #f58634;
}

.mytabnav li.nav-item button i {
    margin-right: 8px;
    transition: none;
}

.mytabcontent .tab-pane {
    border-radius: 0.3rem;
    margin-top: 10px;
}

.message .mytabnav {
    position: absolute;
    right: 0;
    top: 0;
}
.message .mytabcontent .tab-pane {
    margin-top: 0;
}
   @media (max-width: 575px)
.msg-main-sec {
  display: block;
}
  @media (max-width: 575px)
.msg-main-sec .msg-sec1 {
  width: 100%;
}
  @media (max-width: 575px)
.msg-main-sec .msg-sec1 img {
  width: 200px;
  border-radius: 0.3rem;
}
  @media (max-width: 575px)
.msg-main-sec .msg-sec2 {
  width: 100%;
}
  @media (max-width: 575px)
.msg-main-sec .msg-sec2 img {
  width: 30px;
}
.activity {
    position: relative;
}
.activity .content-img {
    margin-left: 30px;
    position: relative;
    z-index: 1;
}
.activity .content-img::before {
    content: "";
    position: absolute;
    left: -30px;
    top: -30px;
    bottom: -30px;
    width: 80%;
    border: 7px solid var(--theme-color2);
    border-radius: 100px 100px 100px 0;
    z-index: -1;
}
.activity .content-img img {
    border-radius: 90px 90px 90px 0;
    width: 100%}
.activity .content-btn {
    margin-top: 40px;
}
.activity-details .details-wrapper {
    border-top: 1px solid var(--border-info-color);
    padding-top: 60px;
}
.activity-details .content-list li {
    margin-top: 8px;
}
.activity-details .content-list i {
    color: var(--theme-color);
    margin-right: 8px;
}
.activity-details .details-item {
    margin-bottom: 40px;
}
.activity-details .details-item img {
    border-radius: 20px;
}
@media all and (max-width:991px) {
    .activity .content-info {
    margin-bottom: 70px;
}

/*** gallery Start ***/
.album .album-item .album-img {
    position: relative;
    overflow: hidden;
}

.album .album-item .album-img .album-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.album .album-item .album-img:hover .album-info {
    background: rgba(0, 0, 0, .6);
}


.album .album-item .album-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.album .album-item .album-img img {
    transition: 0.5s;
}

.album .album-item .album-img:hover img {
    transform: scale(1.3);
}

.album .album-item .album-img:hover .search-icon {
    opacity: 1;
}
.accordionHeader_Y{color: #fff;background: #3a92ce url(../images/ajax-arrow1.png) 99% center no-repeat;padding: 10px;cursor: pointer;text-transform: uppercase;font-weight: 600;margin-top:10px;}
.accordionHeaderSelected{color: #ffffff;background: #36438c url(../images/ajax-arrow.png) 99% center no-repeat;padding: 10px;cursor: pointer;text-transform: uppercase;font-weight: 600;margin-top:10px;}      
.accordionContent_Y {background-color: #fff;padding: 25px;padding-top: 22px;border: 1px solid #36438c;}
/*** gallery End ***/


