:root {
  --theme-primary: #0B1E44;
  --theme-secondary: #eed15f;
  --extra-color: #cbc49d;
  --primary-light: #123FAF;
  --gradient-color: linear-gradient(to bottom right, #241624, #A83AA8);
 /* --gradient-color: linear-gradient(90deg, hsla(0, 0%, 5%, 1) 0%, hsla(126, 82%, 33%, 1) 100%);*/
  /*--gradient-color: -webkit-linear-gradient(90deg, hsla(52, 82%, 52%, 1) 0%, hsla(1, 92%, 47%, 1) 100%);*/
  --gradient-color1: linear-gradient(90deg, #0B1E44 0%, #1B3C8F 100%);
   --button-gradient: linear-gradient(90deg, #0B1D71 0%, #1855e4 100%);
}

body {
/*    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    overflow-x: hidden !important;
    width: 100% !important;
    transform: none !important;*/

background: #F6F6F1;
    /*background-image: url('../images/Untitled-design-2.png');*/
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
}
/* ---------------------- Buttons --------------------- */

.btn {
  background: var(--gradient-color);
/*div5  background: linear-gradient(135deg, #d28944, #a81f1d);*/
  color: #fff;
  border-radius: 2rem;
  font-weight: 400 !important;
}

.btn:hover {
  color: #2e2447;
  background: #eed15f;
  font-weight: 500 !important;
}

.text-stroke {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.under-line {
  height: 5px;
  background-color: #2e2447;
  border-radius: 20px;
}


.main-header {
  position: relative;
  display: block;
  width: 100%;
  z-index: 99;
  clear: both;
}

/* Navbar Wrapper */
.navbar-wrapper1 {
  background: var(--gradient-color);
  border-radius: 10px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 1300px;
  padding: 11px 0px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--theme-secondary);
}

@media (max-width:575px) {
  .navbar-wrapper1 {
    background: var(--gradient-color);
    border-radius: 10px;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1300px;
    padding: 11px 0px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--theme-secondary);
  }
}

.mt-3 {
  
  font-size: 1.05rem!important;
  
}

/* Navbar */
.navbar {
  padding: 0;
}

.navbar-wrapper1 .nav-link {
  color: #fff !important;
  padding: 10px 20px;
  transition: all 0.2s;
  text-transform: uppercase;
font-family: 'Rubik', sans-serif;
font-weight: 600;
font-size: 14px;
}

.nav-link:hover {
  background-color: rgba(255,255,255,0.1);
  border-radius: 50px;
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 15px !important;
  background-color: #2c4f88;
  border: none;
}

.dropdown-item {
  color: white !important;
  padding: 8px 20px;
  transition: all 0.3s;
  border-radius: 20px;
}

  .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1) !important;
  }

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: white;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 50%;
  margin: 0px;
}

#navbarNav {
  margin: 0px 15px;
}

.home-icon {
  font-size: 20px;
}

/*----------------- Logo ---------------------*/

.logo {
  position: fixed;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  width: 135px;
  z-index: 20;
  border-radius: 50%;
  padding: 6px;
  overflow: hidden; /* Important for shine */
}

  .logo a {
    display: block;
    position: relative;
  }

  .logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Shine Effect */
  .logo 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);
  }
}

/* =========================== BASE DROPDOWN STYLE =========================== */

.dropdown-menu {
  width: 270px !important;
  background: var(--gradient-color);;
  border: none;
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease-out;
}

/* Dropdown item */
.dropdown-item {
  color: #ffffff !important;
  padding: 8px 12px;
  transition: 0.3s;
  white-space: normal;
}

/* Dropdown item */
.offcanvas-body .dropdown-item {
  color: var(--theme-secondary) !important;
  padding: 10px 20px;
  transition: 0.3s;
  white-space: normal;
  /* background: var(--red-color); */
  border-bottom: 1px solid var(--theme-secondary);
}

.dropdown-item:hover {
  background-color: var(--theme-secondary) !important;
  border-radius: 8px;
  color: black !important;
}

/* =========================== HOVER TO OPEN DROPDOWN =========================== */
.nav-item.dropdown:hover>.dropdown-menu {
  display: block;
  /* show */
  opacity: 1;
  /* fade-in */
  visibility: visible;
  /* ensure clickable */
  transform: translateY(0);
  /* slide-down animation */

}

/* -------------------Dropdown----------------- */

/* Reset normal dropdown position */
.nav-item.dropdown {
  position: static; /* prevent li from being positioning context */
}


/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  display: none;
  background: linear-gradient(90deg, #0B1D71 20%, #1855e4 48%, #0B1D71 80%);
  /* border-radius: 15px; */
  padding: 0;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 5;
  /* overflow: hidden; */
}

  .mega-menu .dropdown-item {
    white-space: normal !important;
    word-wrap: break-word;
    word-break: break-word;
  }

  .mega-video {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 15px;
    max-height: 300px;
  }



/* Show on hover */
.nav-item.dropdown:hover .mega-menu {
  display: block;
}

/* Left navbar block dropdown (About â†’ Downloads) */
.navbar-nav.me-auto .mega-menu {
  left: 0; /* lock to UL left side */
  right: auto;
  min-width: 500px;
  max-width: 700px;
  /* max-width: calc(100% - 150px); */
}

/* Right navbar block dropdown (Awards â†’ Contact) */
.navbar-nav.ms-auto .mega-menu {
  right: 0; /* lock to UL right side */
  left: auto;
  min-width: 500px;
  max-width: 700px;
  /* max-width: calc(100% - 150px); */
}


#offcanvas-body .nav-link {
  color: #fbf01e !important;
  padding: 10px 20px;
  transition: all 0.2s;
}

#offcanvas-body .nav-item {
  border-bottom: 1px solid #cbc49b96;
}


/* -------------------Dropdown End----------------- */



/* Keep your gradient text */





.Play-Button {
  position: absolute;
  bottom: 20px;
  right: 40px;
  cursor: pointer;
  z-index: 100;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}


  .Play-Button img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    z-index: 9;
    transition: 0.3s all ease-in-out;
  }

  .Play-Button p {
    background: #fff;
    margin-left: -20px;
    padding: 3px 20px;
    border-radius: 0px 30px 30px 0px;
    font-size: 13px;
    transition: 0.3s all ease-in-out;
  }

  .Play-Button:hover img {
    width: 100%;
    max-width: 70px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    z-index: 9;
    transform: translateX(-12px);
  }

  .Play-Button:hover p {
    background: #fff;
    margin-left: -20px;
    padding: 3px 20px;
    border-radius: 30px;
    font-size: 14px;
    transform: translateX(12px);
  }



/* ======================== */

.Play-Button-about {
  position: absolute;
  top: 0px;
  right: 40px;
}

  .Play-Button-about img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
    z-index: 9;
    background: #fff;
    padding: 5px;
  }

  .Play-Button-about p {
    background: #fff;
    margin-left: -20px;
    padding: 3px 20px;
    border-radius: 0px 30px 30px 0px;
    font-size: 13px;
  }



.leaf {
  max-width: 150px;
  opacity: 1;
  position: absolute;
  left: -5px;
  top: 0;
  z-index: -1;
}

.btn-top-row {
  position: fixed;
  top: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 1280px; */
  max-width: 100%;
  margin-top: 18px;
  /* margin-top: 15px; */
}


.shine-text {
  /* margin: 2px 15px; */
  color: #000000;
  font-size: 15px;
  padding: 0px 80px 30px 25px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 30px 0px;
  /* text-shadow: 1px 1px 1px #000; */
  background: var(--theme-secondary);
  font-weight: 600;
}

  .shine-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    /* animation: shine 2s infinite; */
  }

.shine-text1 {
  /* margin: 2px 15px; */
  color: #000000;
  font-size: 15px;
  padding: 0px 25px 30px 80px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 0px 30px;
  /* text-shadow: 1px 1px 1px #000; */
  background: var(--theme-secondary);
   font-weight: 600;
}

  .shine-text1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    /* animation: shine 2s infinite; */
  }

/* ============================================== */


.Link-Button a {
  background: #ffffff;
  margin: 8px 8px 8px 0px;
  color: var(--theme-primary);
  border-radius: 30px;
  text-decoration: navajowhite;
  padding: 10px 15px;
  transition: 0.3s all;
}

  .Link-Button a:hover,
  .Link-Button a:focus {
    background: var(--primary-light);
    margin: 8px 8px 8px 0px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
  }

.btn-gif {
  background: #ffffffe9;
  /* background-image: url('./BG-BTN.gif'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}

  .btn-gif:hover {
    background: #ffffffe9;
    color: var(--primary-light);
    transform: translateY(-2px);
  }

.view-video-button {
  background: #f6f6ef;
  padding: 5px 15px;
  border-radius: 40px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.41);
  transition: 0.3s ease-in-out;
}

  .view-video-button:hover {
    background: var(--theme-secondary);
    padding: 5px 15px;
    border-radius: 40px;
    box-shadow: 0 2px 1px rgb(18, 62, 171);
  }







/*---------------------divi----------*/
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #126766;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Hero section */

.hero {
    /*height: 100vh;*/
    /* background: url('https://www.yayskool.com/images/school/sacred-heart-convent-senior-secondary-school-sri-ganganagar-50959796.jpg') center/cover no-repeat; */
    position: relative;
    color: #fff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #000; */
    background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 40%;
   /* left: 10%;*/
}


.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
        text-shadow: 3px 2px 1px #000;
}

.hero-content h5 {
    font-weight: 1000;
    color: #fff;
    -webkit-text-stroke: 1.5px rgb(0, 0, 0);
    text-shadow: 0 0 100px rgba(27, 1, 1, 0.6);
    font-size: 2.5rem !important;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.25));
}
@media (max-width: 575.98px) {
    .line1 {
        font-size: 19px;
    }

    .line2 {
        animation-delay: 1.2s;
        font-size: 19px;
    }

    
    .hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.8;
  color: #ffffff;
  text-shadow: 3px 2px 1px #000;
}

    .hero-content h5 {
        font-size: 20px !important;
    }

  
}
/*.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}*/

.learn-more {
    color: var(--theme-secondary);
    font-weight: 600;
    background: #1c468bbb;
    padding: 10px 20px;
    border-radius: 60px;
}

.learn-more:hover {
    color: var(--theme-primary);
    font-weight: 600;
    background: #f8c200bd;
    padding: 10px 20px;
    border-radius: 60px;
    transition: 0.4s;
}

.learn-more1 {
  color: #fff;
   /* color: var(--theme-secondary);*/
    font-weight: 600;
    background: var(--gradient-color);
    /*background: #1e327a;*/
    padding: 10px 20px;
    border-radius: 60px;
}

.learn-more1:hover {
    color: var(--theme-primary);
    font-weight: 600;
    background: var(--theme-secondary);
    padding: 10px 20px;
    border-radius: 60px;
    transition: 0.4s;
}

.custome-bf {
    background: linear-gradient(to right top, #126766, #2b7a79, #408e8d, #54a2a1, #68b6b6), url('../images/custome-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

/* Bottom floating pod */

#footer-baseline {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--theme-primary);
    z-index: 30;
}

#floating-pod {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-primary);
    padding: 14px 48px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 40;
    color: #fff;
}

.pod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    white-space: nowrap;
    color: #fff;
}

.pod-item i {
    font-size: 1.7rem;
    color: var(--theme-secondary);
}

.pod-item span {
    display: block;
    line-height: 1.1;
}

.top-line {
    font-weight: 600;
}

.bottom-line {
    font-size: 0.8rem;
    color: var(--theme-secondary);
}

.pod-divider {
    height: 38px;
    border-right: 2px solid var(--theme-secondary);
}

.facility-card {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.facility-card .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.281);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    transition: 0.3s;
}

.facility-card .overlay:hover {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.692);
    color: #fff;
    transition: 0.3s;
}

.facility-card i {
    font-size: 30px;
}

.facility-card .overlay i,
.facility-card .overlay p {
    transition: transform 0.4s ease;
}

/* Hover movement */

.facility-card:hover .overlay i {
    transform: translateY(-8px);
}

.facility-card:hover .overlay p {
    transform: translateY(8px);
}

@media (max-width: 768px) {
    .menu-link {
        margin: 0 0.5rem;
        font-size: 0.8rem;
    }
    #floating-pod {
        padding: 12px 28px;
        gap: 28px;
    }
    .pod-item {
        font-size: 0.8rem;
    }
    .pod-item i {
        font-size: 1.4rem;
    }
    .pod-divider {
        height: 30px;
    }
}

#main-header.scrolled {
    position: fixed !important;
    width: 100%;
    top: 0;
    background: url('../images/hover.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center -2px;
    border-top: 10px solid var(--theme-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.green-bg {
   color: #e6120b;
}

/* ---------- Hero Banner ---------- */

.hero-about {
    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: 80px;
}

.hero-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-title {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
}

.hero-title h1 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-divider {
    width: 120px;
    height: 4px;
    background: var(--theme-secondary);
    margin: 0.75rem auto;
    border-radius: 30px;
}

/* ---------- Campus Intro Section ---------- */

.intro-sec {
    padding: 50px 0;
}

.intro-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--theme-primary);
}

.intro-text p {
    font-size: 1.02rem;
    line-height: 1.7;
}

.check-item i {
    color: var(--theme-secondary);
    font-size: 1.4rem;
}

.round-img {
    border-radius: 24px;
    object-fit: cover;
}

/* ---------- Responsive Tweaks ---------- */

@media (max-width: 992px) {
    .hero-title h1 {
        font-size: 2.4rem;
    }
    .intro-sec {
        padding: 60px 0;
    }
}

/* ---------------------table----------------------- */

thead .backcolor {
    background: var(--theme-primary);
}

/* ---------------------According---------------------- */

.accordion {
    border: none;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-radius: 10px;
}

.accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background-color: var(--theme-secondary);
    border: none;
    border-radius: 10px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
    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: #592559;
    color: #fff;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.management-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.single-contact-card {
    background-color: #F5F5F5;
    padding: 5px 20px;
    min-height: 100px;
    margin-bottom: 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 50px;
    cursor: pointer;
}

.single-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.single-contact-card .top-part {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-contact-card .top-part img {
    width: 75px;
    height: 75px;
    text-align: center;
    float: left;
    overflow: hidden;
    margin-right: 20px;
}

.intro-sec h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #e6120b;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: -moz-linear-gradient(90deg, hsla(52, 82%, 52%, 1) 0%, hsla(1, 92%, 47%, 1) 100%);
    color: white;
    width: 40px;
    height: 40px;
    padding: 10px 14px;
    border-radius: 50%;
    display: none;
    z-index: 999;
    transition: all 0.4s;
}

.back-to-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.nav-pills .nav-link.active {
    background: #126766 !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
}

.nav-pills .nav-link {
    color: #1c468b;
    transition: 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(28, 70, 139, 0.1);
}

.floating-links {
    position: absolute;
    top: 36%;
    right: 60px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-link {
    color: var(--theme-secondary);
    font-weight: 600;
    background: var(--gradient-color);;
    padding: 10px 20px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
}

.floating-link:hover {
    color: var(--theme-primary);
    font-weight: 600;
    background: #f8c200bd;
    padding: 10px 20px;
    border-radius: 60px;
    transition: 0.4s;
}

/* Responsive for mobile */

@media (max-width: 768px) {
    .floating-links {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        flex-direction: column;
        align-items: center;
    }
    .floating-link {
        width: 90%;
        max-width: 300px;
        font-size: 13px;
    }
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px!important;
height: 40px!important;
border-radius: 50%!important;
background: var(--gradient-color)!important;
display: flex!important;
justify-content: center!important;
align-items: center!important;
color: #fff!important;
}
.carousel-control-prev-icon {
  background-image: 0!important;
}
.carousel-indicators [data-bs-target] {

    width: 10px!important;
height: 10px!important;
border-radius: 50%!important;
box-sizing: content-box!important;
flex: 0 1 auto!important;
/*width: 30px;
height: 3px;*/
padding: 0!important;
margin-right: 3px!important;
margin-left: 3px!important;
text-indent: -999px!important;
cursor: pointer!important;
background-color: #fff!important;
background-clip: padding-box!important;
border: 0!important;
 /* border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;*/
border-top: 10px solid transparent!important;
border-bottom: 10px solid transparent!important;
/*opacity: .5;*/
transition: opacity .6s ease!important;
    }
    
        .nav-item dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove gap so it sticks under the lPrimary-color */
}
.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);
}
.fcontols{
display: block;

padding: .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: var(--bs-body-color);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: var(--bs-body-bg);
background-clip: padding-box;
border: var(--bs-border-width) solid var(--bs-border-color);
border-radius: var(--bs-border-radius);
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;}

#newmodal .carousel-control-next,
#newmodal .carousel-control-prev {
    background-color: var(--theme-primary);
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes shine {
    0% {
        left: -150%;
    }
    50% {
        left: 50%;
    }
    100% {
        left: 150%;
    }
}

.btn-col span:hover {
    color: #fff;
}
#newModalCarousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--theme-secondary);
}

#newModalCarousel .carousel-indicators .active {
    background-color: var(--theme-secondary);
}

@media only screen and (min-width: 992px) {
    #newmodal .modal-dialog {
        max-width: 580px;
    }
}
.simple-thumbnail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 10px solid var(--bs-white);
  z-index: 5;
  overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
   
    font-weight: 800;
    margin-bottom: 5px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
}

/* Controls Row */
.controlse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-btn5 {
    background: -moz-linear-gradient(90deg, hsla(52, 82%, 52%, 1) 0%, hsla(1, 92%, 47%, 1) 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.nav-btn5 {
    background-color: -moz-linear-gradient(90deg, hsla(52, 82%, 52%, 1) 0%, hsla(1, 92%, 47%, 1) 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
}

/* News Cards Grid */
.news-grid5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.news-card5 {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 20px 100px 100px 20px; /* Distinctive shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    overflow: visible;
}

.date-box5 {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.date-top5 {
    background-color: #2b7fff;
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.date-bottom5 {
    background-color: var(--dark-blue);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.card-content5 {
    padding: 20px 40px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content5 h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
}

.card-content5 p {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.badge-new5 {
    position: absolute;
    top: -12px;
    right: 60px;
    background-color: var(--red-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}
@media (max-width: 768px) {
  .shadow-lg {
    width: 320px!important; 
    border-radius: 30px!important;
  }
  }

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-grid5 {
        grid-template-columns: 1fr;
    }
    .news-card5 {
        border-radius: 20px 50px 50px 20px;
    }
}
/*design 3*/
.sfs-principal-message.sfs-pm-visible {
    opacity: 1;
    transform: translateY(0);
}
.sfs-principal-message {
    background-color: #890c25;
    padding: 60px 15px;
    font-family: "Georgia", "Times New Roman", serif;
  /*  opacity: 0;
    transform: translateY(20px);*/
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sfs-pm-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    padding: 32px 28px;
    border-radius: 20px;
    /*border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) );*/
    /*box-shadow: 0 18px 40px rgb(0 0 0 / 35%);*/
    /*backdrop-filter: blur(6px);*/
}
.sfs-pm-photo {
    /*flex: 0 0 367px;*/
    max-width: 380px;
}
.sfs-pm-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
background: linear-gradient( 135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) );
box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
backdrop-filter: blur(6px);
}
.sfs-pm-name h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}
.sfs-pm-name {
    margin-top: 18px;
}
.sfs-pm-name h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}
.sfs-pm-name {
    margin-top: 18px;
}
.sfs-pm-content {
    flex: 1 1 300px;
    min-width: 0;
}
.sfs-pm-title {
    margin: 0 0 20px;
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.sfs-pm-content p {
    margin: 0 0 1rem;
    line-height: 1.7;
}
.sfs-pm-readmore-wrapper {
    margin-top: 12px;
}
.sfs-principal-message a.sfs-pm-readmore {
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: transparent;
    padding: 10px 26px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff !important;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.sfs-pm-readmore-wrapper {
    margin-top: 12px;
}
.sfs-pm-content {
    flex: 1 1 300px;
    min-width: 0;
}
.sfs-pm-name h3 {
    margin: 0;
    font-weight: 601;
font-size: 18px;
}
@media (max-width: 768px) {
  .sfs-pm-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 24px 20px;
  }

  .sfs-pm-photo {
    width: 100%;
    max-width: 360px;
  }

  .sfs-pm-content {
    width: 100%;
  }

  .sfs-pm-title {
    font-size: 1.8rem;
  }
}
/*design 3*/
.headers h2 {
    font-size: 2.5rem;
    color: #1a2b48;
    margin-bottom: 40px;
}

.subtitle {
    color: #f3a621;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
}

/* Flexbox Grid */
.teacher-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card Styling */
.teacher-card {
    background: #e0f7fa; /* Light blue background from image */
    flex: 1 1 calc(20% - 20px); /* 5 columns on desktop */
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.16);
background: linear-gradient( 135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) );
box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
backdrop-filter: blur(6px);
}

.teacher-card:hover {
    transform: translateY(-10px);
}

.image-holder img {
    width: 100%;
    height: auto;
    display: block;
}

.info {
    padding: 20px 10px;
}

.info h3 {
    margin: 0;
    /*font-size: 1.2rem;*/
    color: #333;
    font-size: 18px;
font-weight: 601;
text-align: center;
}

.info p {
    margin: 5px 0 0;
    color: #666;
    /*font-size: 0.9rem;*/
    font-size: 16px;
font-weight: 601;
text-align: center;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .teacher-card { flex: 1 1 calc(33.33% - 20px); } /* 3 columns */
}

@media (max-width: 600px) {
    .teacher-card { flex: 1 1 100%; } /* 1 column on mobile */
}
/*design 2*/
 .section-heading {
    text-align: center;
    margin-bottom: 40px;
}
.section-heading h2 {
    /*color: #1e327a;*/
    font-weight: 500;
    /*font-family: "Lilita One", sans-serif;*/
    font-size: 2.5rem;
}
.whats-happening-content {
    text-align: center;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    height: 110%;
    background: var(--gradient-color);
    position: relative;
    border-radius: 10px;
    color: #fff;
}
.whats-happening-content::after {
    content: "";
    position: absolute;
    border-left: 50px solid #883188;
    width: 30px;
    height: 30px;
    border-bottom: 50px transparent;
    border-right: 50px transparent;
    border-top: 50px solid transparent;
    transform: rotate(-135deg);
    right: -24px;
    z-index: 2;
}
.whats-happening-content .inner-content a {
    display: inline-block;
    background: #e75212;
    padding: 6px 15px;
    color: #fff;
    transition: all 0.3s ease;
}
.whats-happening-content::before {
    content: "";
    position: absolute;
    border-left: 50px solid #441f44;
    width: 30px;
    height: 30px;
    border-bottom: 50px transparent;
    border-right: 50px transparent;
    border-top: 50px solid transparent;
    transform: rotate(45deg);
    left: -24px;
    z-index: 1;
}
.justify-content-center {
    justify-content: center!important;
}
.grid-nopadding {
    padding: 0;
    /*background: #fff;*/
}
.whats-happening-image {
    overflow: hidden;
    position: relative;
    display: block;
}
.whats-happening-image img {
    transition: all 0.3s ease;
}
.whats-happening-image .inner-title.title2 {
    background: rgba(129, 92, 142, 0.9);
    /*background: rgba(39, 145, 61, 0.9);*/
}
.whats-happening-image .inner-title {
    position: absolute;
    z-index: 1;
    bottom: 0;
    text-align: center;
    width: 100%;
    
    background: rgba(129, 92, 142, 0.9);
    /*background: rgba(39, 145, 61, 0.9);*/
    padding: 14px 14px;
    transition: all 0.3s ease;
}
.whats-happening-image .inner-title h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}
/*design 2*/


/* 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: #e6120b;
  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: rgb(82, 35, 82) !important;
  /*color: var(--navy);*/
  margin-bottom: 18px;
}

.topper-item {
  text-align: center;
}

.topper-item img {
  width: 170px;
height: 220px;
  /*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); }
}
/*    Footer Section     */

.site-footer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(66, 16, 65, 0.6) 50%, rgba(0, 0, 0, 0.95) 100% ), url('../images/Footer Bg.jpg') center/cover no-repeat;
  
  /*background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(120, 76, 20, 0.6) 50%, rgba(0, 0, 0, 0.95) 100% ), url('../images/Footer Bg.jpg') center/cover no-repeat;
  *//*background: linear-gradient(135deg, #d28944f0, #a81f1dfa), url('../Images/Footer Bg.jpg') center/cover no-repeat;*/
  padding: 2% 0% 3% 0%;
  position: relative;
}

@media (max-width: 574px) {
  .site-footer {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(120, 76, 20, 0.6) 50%, rgba(0, 0, 0, 0.95) 100% ), url('../images/Footer Bg.jpg') center/cover no-repeat;
    /*background: linear-gradient(90deg, #d28944, #a81f1d);*/
    padding: 2% 0% 15% 0%;
    position: relative;
  }
}

.social-sec {
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  margin-left: 0rem;
  padding-left: 0rem;
}

@media (max-width: 574px) {
  .social-sec {
    bottom: 5px;
  }
}

.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);
  -webkit-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;
  transition: 0.3s;
}

.social-sec li:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
}

.btn-border-flow {
  display: inline-block;
  padding: 6px 18px;
  font-size: 18px;
  color: #fff;
  background: #0B1E44;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
  font-weight: 400;
}

.btn-border-flow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9f44d2, #a81f1d);
  background-size: 400% 400%;
  z-index: -1;
  animation: borderMove 6s linear infinite;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-color);
/*div55  background: #c97343;*/
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  z-index: 999;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 574px) {
  .back-to-top {
    bottom: 100px;
  }
}

.back-to-top::after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
    
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.311) 0%, rgba(0, 0, 0, 0) 80%);
}

.back-to-top:hover {
  background: #eed15f;
  color: #000 !important;
}

.mother-theresa {
  width: 100%;
  z-index: 20;
  padding: 6px 6px 0px 6px;
  overflow: hidden;
  margin: 0px auto;
  max-width: 400px;
}

.mother-theresa img {
  width: 100%;
  height: auto;
  display: block;
}

.underline-img {
  width: 100%;
  max-width: 300px;
}


.bulletin-sectiondv {
    /*width: 90%;
    max-width: 900px;*/

    height: 608px;
background: url(../images/tp.png);
background-size: contain;
background-repeat: no-repeat;
padding: 200px 50px 0px 50px;
/*padding: 208px 67px 0px 13px;*/
/*padding: 142px 67px 0px 13px;*/
background-position: center top;
margin: 0;
}

.bulletin-containerdv {
 background-image: url('../images/bg.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;


  /*background: #fefefe;*/
    /*background: linear-gradient(90deg, hsla(0, 0%, 5%, 1) 0%, hsla(126, 82%, 33%, 1) 100%);*/
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    color: white;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.3);*/
    position: relative;
}
.subtitledv {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--bs-secondary-color) !important;
}

/* Cards Wrapper */
.updates-wrapperdv {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

.update-carddv {
    background: linear-gradient(to bottom right, #241624, #A83AA8);
color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    text-align: left;
}

/* Date Box */
.date-boxdv {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
    margin-right: 15px;
    overflow: hidden;
}

.monthdv {
    display: block;
    background: #b32121;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 0;
}

.daydv {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 5px 0;
    color: #000;
    background-color: #eed15f;
}

/* Content */
.badgedv {
    background: #ee4b2b;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.contentdv p {
    /*font-size: 0.9rem;*/
    margin-top: 5px;
    line-height: 1.4;
    color:#fff;
    font-size: 16px;
}

/* Navigation */
.navigationdv {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-btndv {
    background: var(--gradient-color);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btndv:hover {
    background: #eed15f;;
}

.view-alldv {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}
.section-headerdv{
  
  color: #f4e87e!important;
font-size: 1rem;
}
.headdv{
  color:#e6120b;
  font-weight: 700 !important;
  font-size: 2rem;
  font-family: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Responsive Media Query */
@media (max-width: 600px) {
    .update-carddv {
        max-width: 100%;
    }
    
    h2 {
        font-size: 1.4rem;
    }
}
  @media screen and (max-width: 320px){
.bulletin-sectiondv {
  width: 100%;
  height: 500px;
  background-position: -258px 0px;
  padding: 140px 0px 0px 0px;
  background-size: 250%;
}}


@media (max-width: 574px) {
.bulletin-sectiondv {
  width: 100%;
  height: 0%;
  background-position: -146px 0px;
  padding: 131px 0px 0px 0px;
  background-size: 187%;
 /* background-position: -208px 0px;
  padding: 116px 0px 0px 0px;
  background-size: 250%;*/
}
}
  @media (max-width: 574px)
.back-to-top {
  bottom: 100px;
}

  @media (max-width: 600px){
.teacher-card {
  flex: 1 1 30%!important;
  min-width: 100px;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.16);
background: linear-gradient( 135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) );
box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
backdrop-filter: blur(6px);
}}
 @media (max-width: 574px){
.teacher-card {
 flex: 1 1 30%!important;
  min-width: 100px;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.16);
background: linear-gradient( 135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) );
box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
backdrop-filter: blur(6px);
}}


.whatsapp-button {
  position: fixed;
  left: 0px;
  bottom: 265px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 20px;
  color: white;
  }


.instagram-button {
  position: fixed;
  left: 0px;
  bottom: 155px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d62976;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 20px;
  color: white;
  }
.facebook-button {
  position: fixed;
  left: 0px;
  bottom: 210px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1877F2;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 20px;
  color: white;
  }
  .maps {
    width: 100%;
    height: 450px;
  }
  .newsletter {
  margin: 80px 0px;
  }
  .photo_gn1 li .photoIn span.AlbumIconPhoto img {
  width: 100%;
}
/* Prevent the link from changing text color or adding underlines */
.whats-happening-image {
    text-decoration: none !important;
    color: inherit;
    display: block; /* Ensures the link covers the entire area of the image/title */
    overflow: hidden;
}

/* Ensure the image doesn't get a border (common in older browsers) */
.whats-happening-image img {
    border: none;
    display: block;
    width: 100%;
}

    .updates-wrapperdv {
        width: 100%;
        overflow: hidden; /* Hide slides outside the container */
        padding: 20px 0;
    }
    
    .swiper-slide {
        height: auto; /* Allows cards to maintain their height */
        display: flex;
        justify-content: center;
    }

    .navigationdv {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .nav-btndv {
        /*cursor: pointer;
        background: #eee;
        border: none;
        padding: 10px 15px;
        border-radius: 50%;
        transition: 0.3s;*/




        width: 40px!important;
    height: 40px!important;
    border-radius: 50%!important;
    background: var(--gradient-color)!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    color: #fff!important;
    }

    .nav-btndv:hover {
        background: #ccc;
    }
/* ----------------Floating pod----------------- */

.floating-pod-main {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  gap: 15px;
}

.floating-pod {

  background: linear-gradient(to bottom right, #241624, #A83AA8);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.pod-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.pod-item i {
  font-size: 1.7rem;
  color: #f8c400;
}

.pod-item span {
  display: block;
  line-height: 1.1;
}

.top-line {
  font-weight: 600;
}

.bottom-line {
  font-size: 0.8rem;
  color: #ffffff;
  /* color: #f8c400; */
}

.pod-divider {
  height: 38px;
  border-right: 2px solid #f8c400;
}

@media (max-width: 576px) {

  #floating-pod {
    display: none !important;
  }

}