:root {
  --theme-primary: #FF2400;
  --theme-secondary: #f1931a;

  --extra-color: #EFEBE4;
  --primary-light: #fff592;
  --gradient-color: linear-gradient(90deg, #FF2400 0%, #f1931a 50%, #f1931a 100%);
  --gradient-color1: linear-gradient(270deg, #f1931a 0%, #FF2400 100%);
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
  background: #EFEBE4;

}



h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-primary);
  font-family: "Asap Condensed", sans-serif;
  /* font-family: Cinzel, serif; */
  letter-spacing: .5px;
}

a {
  text-decoration: none;
}

.text-yellow {
  color: var(--theme-secondary);
}

.text-red {
  color: var(--theme-primary);
}

.text-yellow-light {
  color: var(--primary-light);
}

/* =====================Nav Bar======================== */


.navbar-right .nav-item {
  position: relative;
}

/* .navbar-wrapper1 .nav-item .nav-link {
  color: #fff;
  font-family: "Asap Condensed", sans-serif;
} */

.navbar-wrapper1 .nav-link {
	color: #fff !important;
	transition: all 0.2s;
	text-transform: uppercase;
	font-family: "Asap Condensed", sans-serif;
	margin: 0px 4px;
	padding: 6px 0px;
}

.navbar-wrapper1 .nav-item .nav-link::before {
  content: '';
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.header-links {
  position: absolute;
  right: 10px;
  top: -30px;
}

.header-links a i {
  /* color: var(--primary-light);
  font-size: 22px; */
  /* padding: 5px 0px; */
}

.header-links a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  margin-right: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.82);
}

.header-links a span {
  background-color: var(--primary-light);
  border-radius: 50px;
  padding: 3px 10px;
  font-weight: 500;
}




.main-header {
  position: relative;
  display: block;
  width: 100%;
  z-index: 99;
  clear: both;
}


.navbar-wrapper1 {
  background: var(--gradient-color1);
  border-radius: 5px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 95%;
  max-width: 1200px;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

@media (max-width: 978px) {
  .navbar-wrapper1 {
    background: var(--gradient-color1);
    border-radius: 5px;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    transition: all 0.3s ease;
    padding: 20px 0px;
  }

  .nav-item .nav-link::before {
    content: '';
    display: none;
  }
}



/* Fixed width dropdown */
.dropdown-fixed {
  width: 260px;
  min-width: 260px;
  padding: 0px;
}

/* Enable hover dropdown only on desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}


/* Dropdown Menu */
.dropdown-menu {
  border-radius: 0px !important;
  background: #fff;
  border: none;
  border-top: 3px solid #000;
}

.dropdown-menu li {
  border-bottom: 1px solid #312F2C2E;
}


.dropdown-item {
  color: var(--Dark-color);
  padding: 8px 18px;
  transition: all 0.25s ease;
  border-radius: 20px;
  white-space: normal;
  font-family: "Asap Condensed", sans-serif;
}

.dropdown-item:hover {
  background-color: transparent !important;
  color: var(--theme-primary);
}


.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0em !important;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--Secondary-color);
  justify-content: center;
  margin: 0px 10px 3px 0px;
  transition: 0.3s all ease-in-out;
}



.navbar-brand1 {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--Dark-color);
  justify-content: center;
  margin: 12px 20px 12px 10px;
  transition: 0.3s all ease-in-out;
}

.navbar-brand i {
  color: #fff;
}


.home-icon {
  font-size: 20px;
}

.home-icon1 {
  font-size: 25px;
}

/* -------------------------LOGO----------------------- */
/* 
.logo {
  position: fixed;
  top: -55px;
  left: 0%;
  width: 145px;
  z-index: 20;
  margin: 20px;
  overflow: hidden;
  border-radius: 50%;
}

.logo a {
  display: block;
  position: relative;
}

.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;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
} */


.logo {
  position: fixed;
  top: -55px;
  left: 0;
  width: 145px;
  margin: 20px;
  z-index: 20;
}

.logo-svg {
  width: 100%;
  height: auto;
}

/* Flash style */
.flash {
  fill: url(#flashGradient);
  opacity: 0.8;
}

/* --------------------logo end------------------------ */

.nav-item.dropdown:hover .mega-menu {
  display: block;
}

/* Left navbar */
.navbar-nav.me-auto .mega-menu {
  left: 0;
  /* lock to UL left side */
  right: auto;
  min-width: 500px;
  max-width: 700px;
}

/* Right navbar */
.navbar-nav.ms-auto .mega-menu {
  right: 0;
  left: auto;
  min-width: 500px;
  max-width: 700px;
}

/* Offcanvas Custom */

/* Mobile Toggle Button */
.navbar-toggler {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 0px;
}

/* Remove default bootstrap icon */
.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
}

/* Add Font Awesome icon */
.navbar-toggler-icon::before {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
  color: #000;
  margin: 0px;
  padding: 0px;
  line-height: 1.2;
}

.btn-close {
  opacity: 1;
}

.offcanvas {
  background: var(--gradient-color1);
  color: white;
}

.offcanvas .dropdown-toggle::after {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 5px;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.offcanvas .nav-link {
  color: #000 !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.offcanvas-body .nav-item a {
  background: #fff;
  margin: 5px 0px;
  border-radius: 20px;
  padding: 5px 20px;
  color: #000;
}

.offcanvas-body .dropdown-menu {
  width: 100%;
  background: #fff;
  padding: 10px;
}

/* Hide desktop nav items on mobile */
@media (max-width: 991px) {
  .main-navbar .navbar-nav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .top-info {
    display: none;
  }

  .nav-bar-light {
    display: none;
  }
}


/* Hide desktop nav items on mobile */
@media (max-width: 991px) {
  .main-navbar .navbar-nav {
    display: none !important;
  }
}


/* =====================Heading/underline==================== */


.heading-shade {
  text-transform: uppercase;
  color: transparent;
  font-weight: 700;
  background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 55%, var(--theme-secondary) 100%) no-repeat;
  -webkit-background-clip: text;
}

.heading-shade1 {
  text-transform: uppercase;
  color: transparent;
  font-weight: 700;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-light) 55%, var(--theme-secondary) 100%) no-repeat;
  -webkit-background-clip: text;
}

.heading-underline {
  width: 200px;
  height: 6px;
  background: var(--theme-secondary);
  margin: 10px auto;
  border-radius: 1px;
}

.heading-underline1 {
  width: 200px;
  height: 6px;
  background: var(--primary-light);
  margin: 10px auto;
  border-radius: 1px;
}


/* ================Read More=================== */

.viewall-gallery {
  font-family: "Asap Condensed", sans-serif;
  background: var(--gradient-color1);
  color: #fff;
  border-radius: 5px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
}

.viewall-gallery:hover {
  background: var(--theme-secondary);
  color: #fff;
}

.viewall-gallery1 {
  font-family: "Asap Condensed", sans-serif;
  background: var(--primary-light);
  color: var(--theme-primary);
  border-radius: 5px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
}

.viewall-gallery1:hover {
  background: var(--theme-secondary);
  color: #fff;
}

/* =======================Hero Section====================== */


.hero {
  height: 100vh;
}

.hero-sec-overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #000000d6;
  inset: 0px;
}


.hero-heading {
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 55%, #fff 100%) no-repeat;
  -webkit-background-clip: text;
  color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 70px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-heading {
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 55%, #fff 100%) no-repeat;
    -webkit-background-clip: text;
    color: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    font-size: 40px !important;
    width: 100%;
  }

  .hero-affiliation {
    font-size: 14px !important;
  }
}



#hero .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gradient-color1);
  opacity: 0.6;
  transition: all 0.3s ease;
}

#hero .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* --- Overlay same as carousel-item::before --- */
#hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
  pointer-events: none;
}

#hero .swiper-slide {
  position: relative;
}

#hero .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* from Swiper */
#hero .swiper-horizontal>#hero .swiper-pagination-bullets,
#hero .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* ensure the containing block */
#hero .mySwiper {
  position: relative;
}

/* put bullets on the right-center, vertical stack */

#hero .mySwiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -15px;
  left: 2%;
  width: auto;
  display: flex;
  z-index: 10;
}

/* bullet look (optional) */
#hero .mySwiper .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  border-radius: 10px;
  background: var(--theme-primary);
  border: 1px solid #fff;
  opacity: 1;
  transition: transform .3s ease, opacity .3s ease;
}

#hero .mySwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  border: 1px solid var(--primary-dark);
  transform: scale(1.2);
}


.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.text-shadow-w {
  text-shadow: 2px 1px 2px rgb(255, 255, 255);
}



/* ======================News Section======================== */

.section-news-padding {
  background: var(--theme-secondary);
}

.news-head {
  position: absolute;
  left: 0px;
  background: var(--theme-primary);
  height: 100%;
  margin: auto;
  z-index: 99;
  width: 170px;
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
  padding-left: 20px;
  /* border-right: 2px solid #fff; */
}

#news-slider-section .swiper-wrapper {
  transition-timing-function: linear !important;
}


@media (max-width: 991px) {
  .news-head {
    text-align: center;
    margin-bottom: 25px;
  }
}

.news-head h3 {
	background: linear-gradient(180deg, var(--primary-light) 0%, #fff 55%, #fff 100%) no-repeat;
	-webkit-background-clip: text;
	color: transparent;
}

.news-card {
  width: 100%;
  margin-bottom: 0px;
  padding: 10px 0px;
}

.news-card p {
  font-size: 14px;
}


.date-badge {
  width: 80px;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 600;
}

.date-top {
  background: var(--theme-primary);
  color: var(--primary-light);
  padding: 4px 0;
  font-size: 12px;
  font-family: 'Rubik', sans-serif;
}

.date-bottom {
  background: #fff;
  color: var(--theme-secondary);
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
}

.flash-news span {
  background: var(--theme-primary);
  padding: 3px 6px;
  text-align: left;
  font: normal normal medium 10px/13px Rubik;
  letter-spacing: 1.1px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  position: relative;
  left: 0;
  top: -5px;
  line-height: 12px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
}

.flash-news span::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--theme-primary);
  position: absolute;
  left: 4px;
  bottom: -5px;
}


.news-section {
  padding: 0px;
  width: auto;
  position: relative;
}

.news-nav button {
  width: 40px;
  height: 40px;
  border: none;
  /* border: 1px solid #fff; */
  background: var(--gradient-color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  border-radius: 50%;

}

.news-nav button:hover {
  background: var(--theme-secondary);
  color: #fff;
}

.news-nav1 button {
  width: 40px;
  height: 40px;
  border: none;
  /* border: 1px solid #fff; */
  background: var(--primary-light);
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  border-radius: 50%;

}

.news-nav1 button:hover {
  background: var(--theme-secondary);
  color: #fff;
}


.news-view-all {
  color: var(--primary-light);
  transition: 0.3s all;
}
.news-view-all:hover {
  color: #fff;
}

/* ================================About Us========================== */

.about-padding {
  padding: 50px 0px;
}

.aboutus-icon img {
  width: 60px;
}

.aboutus-icon h6 {
	margin: 8px 0px 0px 0px;
	color: var(--theme-secondary);
}

/* Card Styling */
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease;
  box-shadow: 0 8px 10px rgba(0, 0, 0, .18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Center Icon */
.icon {
	color: #fff;
	font-size: 28px;
	background: var(--gradient-color1);
	padding: 10px;
	border-radius: 5px;
	transition: transform 0.3s ease;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-item:hover .icon {
  transform: scale(1.2);
}


/* =========================Quick Link=========================== */


.quick-link-round {
  /* background: #ff2400bf; */
  width: 150px;
  margin: auto;
  padding: 20px 0px;
  border-radius: 100px;
  /* border: 1px solid transparent; */
  transition: 0.3s all ease-in-out;
}

.quick-link-round:hover {
  background: transparent;
  width: 150px;
  margin: auto;
  padding: 20px 0px;
  border-radius: 100px;
  /* border: 2px solid #fff; */
}

.quick-link3 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 0;
  height: 100%;
  /* border-top: 4px solid #f1b11a;
	border-bottom: 4px solid #f1b11a; */
}

@media (max-width: 991px) {
  .quick-link3 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
    height: 100% !important;
  }
}

/* Video background */
.quick-link3 .quick-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay */
.quick-link3 .quick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #FF2400BF 0%, #FF2400BF 100%);
  /* background: linear-gradient(135deg, #000c, #000c); */
  z-index: -1;
}

/* Icons */
.quick-link-sec1 img {
  width: 70px;
  margin: 10px 0;
}

.quick-link-sec1 h2 {
  color: var(--primary-light);
  font-size: 40px;
}

.quick-link-sec1 .quick-link-round h6 {
  color: #fff;
  margin-top: 5px;
  font-weight: 500;
  /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); */
  background: var(--theme-secondary);
  padding: 6px 0px;
  border-radius: 3px;
}

.quick-link-sec1 .quick-link-round a {
  text-decoration: none;
}


/* ======================Message Section========================== */



.section-padding {
  padding: 40px 0px;
  position: relative;
}

.section-padding1 {
  padding: 40px 0px;
  position: relative;
  /* background: linear-gradient(135deg, #0000009c, #0000009c),
    url(../images/gallery-img.jpg) center center / cover; */
  background: var(--gradient-color1);
}

.section-padding2 {
  padding: 40px 0px;
  position: relative;
  /* background: linear-gradient(135deg, #00000085, #00000085),
    url(../images/About-Us-1.jpeg) center center / cover; */
  background: var(--gradient-color1);
}

.message-tab {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 4px 9px 4px 4px;
  border: 1px solid var(--theme-primary);
}

.message-tab span {
  color: var(--theme-primary);
}

.message-tab.active span {
  color: #fff;
}

.message-tab.active {
  background: var(--gradient-color1);
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 5px;
  border: none;
}

.message-tab-text {
  font-size: 18px;
  font-family: "Asap Condensed", sans-serif;
  line-height: 20px;
  font-weight: 500;
}

.message-img-round {
  padding: 3px;
  border: 2px solid var(--theme-secondary);
  border-radius: 200px;
}

.block-color {
  border-color: var(--theme-secondary) !important;
}

.principal-name {
  text-transform: uppercase;
  color: transparent;
  font-weight: 700;
  background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 55%, var(--theme-secondary) 100%) no-repeat;
  -webkit-background-clip: text;
}


/* ===============================Gallery=========================== */



.image-container-activity {
  height: 260px;
  /* Same height as column 7 images */
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.image-container-activity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This ensures all images fill the container consistently */
}

.underline-single-gall {
  width: 50%;
  height: 2px;
  background-color: var(--Secondary-color);
  margin: 2px auto;
  border-radius: 20px;
}

/* Gradient overlay for album name */
.gradient-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.745) 0%, rgba(0, 0, 0, 0.526) 50%, transparent 100%);
  z-index: 2;
}

.gradient-overlay h6 {
  font-weight: 700;
}


/* Ensure swiper container has proper height */
.ActivitySwiper {
  height: auto;
  border-radius: 10px;
}

.ActivitySwiper h5 {
  color: var(--primary-color);
  /* font-weight: 700; */
}


.activity-prev {
  position: absolute;
  z-index: 99;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.activity-next {
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.galler-carousels {
  border: none;
  border-radius: 50px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
}

.galler-carousels:hover {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: #fff;
  color: var(--theme-primary);
}


/* ---------------- */

.single-gallery-img {
  object-fit: cover;
  width: 100%;
  height: 150px !important;
  border-radius: 10px;
}

.single-gallery-img-overlay {
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), #fff0);
  padding: 30px 0px 10px 0px;
  border-radius: 0px 0px 10px 10px;
  height: 70%;
}

/* -------------------- */

.gallery-textarea span {
  background: var(--theme-primary);
  padding: 4px 6px;
  text-align: left;
  font: normal normal medium 10px/13px Rubik;
  letter-spacing: 1.1px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  position: relative;
  left: 0;
  top: -5px;
  line-height: 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
}

.gallery-textarea span::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--theme-primary);
  position: absolute;
  left: 4px;
  bottom: -5px;
}

.gallery-textarea .gallery-date {
  color: var(--theme-primary);
  font-size: 13px;
  background: var(--primary-light);
  width: 160px;
  text-align: center;
  padding: 3px 0px;
  border-radius: 3px;
}

.single-gall-span {
  color: var(--primary-light);
  font-size: 12px;
  display: flex;
  justify-content: center;
}




/* ============================Achievements=========================== */


.image-container-single {
  height: 320px;
  /* Same height as column 7 images */
  overflow: hidden;
  width: 100%;
  border-radius: 25px;
}

.image-container-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This ensures all images fill the container consistently */
}

.underline-single-gall {
  width: 50%;
  height: 2px;
  background-color: var(--Secondary-color);
  margin: 2px auto;
  border-radius: 20px;
}

/* Gradient overlay for album name */
.gradient-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.745) 0%, rgba(0, 0, 0, 0.526) 50%, transparent 100%);
  z-index: 2;
}

.gradient-overlay h6 {
  font-weight: 700;
}

/* Custom pagination styling */
.single-gallery-pagination {
  position: relative;
  bottom: 0;
  text-align: center;
  margin-top: 1rem;
}

.single-gallery-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid var(--primary-dark);
  opacity: 1;
  transition: transform .3s ease, opacity .3s ease;
}

.single-gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-dark);
  transform: scale(1.2);
}



/* Ensure swiper container has proper height */
.SingleGallerySwiper {
  height: auto;
  border-radius: 20px 20px 0px 0px;
}

.SingleGallerySwiper h5 {
  color: var(--theme-primary);
}

.gallery-title h6 {
  text-shadow: 0 1px 1px rgb(255, 255, 255);
  color: var(--Dark-color);
}

.underline-gall {
  width: 100%;
  max-width: 330px;
  height: 2px;
  background-color: var(--Secondary-color);
  border-radius: 20px;
  margin: 10px auto;
}


.achievement-button {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  background: var(--gradient-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  border-radius: 50%;
}

.achievement-button:hover {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.achievement-prev {
  position: absolute;
  z-index: 99;
  left: 20px;
  top: 35%;
  transform: translateY(-50%);
}

.achievement-next {
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 35%;
  transform: translateY(-50%);
}


/* =======================Toppers======================= */

.toppers-gif-file {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  z-index: -1;
  width: 90%;
  opacity: 0.4;
}

.toppers-card-img {
  position: relative;
  width: 200px;
  height: 220px;
  object-fit: cover;
  margin-top: 10px;
  border: 2px solid var(--theme-primary);
  border-radius: 20px 20px 0px 0px;
}

.toppers-card .round-frame {
  width: 280px;
  object-fit: cover;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.toppers-card h6 {
  color: var(--primary-dark);
  white-space: normal;
}

.toppers-card p {
  color: var(--theme-secondary);
  font-weight: 600;
}



/* ----------birthday */

.toppers-card .round-frame {
  width: 280px;
  object-fit: cover;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ------------ */


/* =========================facility========================= */


.facility-card {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, .18);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}


/* Dark gradient overlay */
.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.151) 40%, rgba(0, 0, 0, 0.78) 100%);
  border-radius: 20px;
}

.facility-card:hover .card-overlay {
  /* position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  transition: 0.4s ease-in-out; */
  position: absolute;
  /* bottom: 50px;
  left: 30px;
  right: 20px; */
  color: #fff;
  z-index: 2;
}

.facility-card .card-overlay {
  /* position: absolute;
  bottom: 50px;
  left: 40px;
  right: 20px;
  color: #fff;
  z-index: 2; */
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  transition: 0.4s ease-in-out;
}

.facility-card h6 {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary-light);
}

.facility-card p {
  font-size: 12px;
  margin: 0;
}

.facility-card:hover .facility-icon {
  width: 100%;
  max-width: 90px;
  /* margin: 10px; */
  opacity: 1;
  transition: 0.4s all;
}

.facility-card .facility-icon {
  width: 100%;
  max-width: 60px;
  margin: 10px;
  opacity: 1;
}

/* Navigation buttons */
.facility-nav {
  display: flex;
  gap: 10px;
  margin-left: 30px;
  justify-content: start;
  align-items: center;
}

.facility-nav button {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
}

.facility-nav button:hover {
  background: var(--primary-color);
  color: white;
  border-color: none;
}

/* Navigation buttons */
.facility-nav1 {
  display: flex;
  gap: 10px;
  margin-left: 30px;
  justify-content: center;
  align-items: center;
}

.facility-nav1 button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-color1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  cursor: pointer;
  margin: 0px 5px;
  transition: 0.3s ease-in-out;
}

.facility-nav1 button:hover {
  background: var(--theme-secondary);
  color: #000;
}

.facility-icons {
  max-width: 60px;
  padding: 0px 0px 15px 0px;
}

.facility-line {
  width: 100%;
  height: 5px;
  background: var(--theme-secondary);
  border-radius: 10px;
  max-width: 300px;
  margin: auto 30px;
}


.facility-text-white {
  position: absolute;
  width: 600px;
  height: 100%;
  background: #fff;
  right: 0px;
  top: 0px;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
}

.facility-text-icons {
  width: 100%;
  padding: 10px;
}





/* =============happy Birthday=================== */

#BirthdaySlider .round-frame,
#BirthdaySlider1 .round-frame {
  width: 295px;
  object-fit: cover;
  position: absolute;
  top: -18px;
  left: 47%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {

  #BirthdaySlider .round-frame,
  #BirthdaySlider1 .round-frame {
    width: 290px;
    object-fit: cover;
    position: absolute;
    top: -15px !important;
    left: 48%;
    transform: translateX(-50%);
  }
}

#BirthdaySlider .toppers-card-img,
#BirthdaySlider1 .toppers-card-img {
  position: relative;
  width: 220px;
  height: 220px;
  object-fit: cover;
  margin-top: 10px;
  /* border: 1px solid var(--primary-dark); */
  padding: 5px;
}

#BirthdaySlider h6,
#BirthdaySlider1 h6 {
  color: #fff;
  padding: 6px;
  border-radius: 5px;
  white-space: normal;
  background: var(--gradient-color1);
  margin: 70px 0px 20px 0px;
}

#BirthdaySlider h3,
#BirthdaySlider1 h3 {
  padding: 10px 0px 0px 0px;
  border-radius: 40px;
  white-space: normal;
  margin: 0px;
  text-transform: uppercase;
  color: transparent;
  font-weight: 700;
  background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 55%, var(--theme-secondary) 100%) no-repeat;
  -webkit-background-clip: text;
}

#BirthdaySlider p,
#BirthdaySlider1 p {
  color: #000000;
  font-weight: 400;
  font-size: 13px;
}

.birthday-balloon {
  position: absolute;
  z-index: 9;
  top: 15%;
  left: 0px;
  width: 130px;
}

.birthday-balloon1 {
  position: absolute;
  z-index: 9;
  top: 15%;
  right: 0px;
  width: 130px;
}

.birthday-flag {
  position: absolute;
  top: -14%;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.birthday-button .birthday-prev,
.birthday-button .birthday-next,
.birthday-button .birthday1-prev,
.birthday-button .birthday1-next {
  width: 40px;
  height: 40px;
  border: none;
  /* border: 1px solid #fff; */
  background: var(--gradient-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  border-radius: 50%;
}

.birthday-button .birthday-prev:hover,
.birthday-button .birthday-next:hover,
.birthday-button .birthday1-prev:hover,
.birthday-button .birthday1-next:hover {
  background: var(--theme-secondary);
  color: #fff;
}

.student-birthday {
  width: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
}


.birthday-center-gif {
	width: 100%;
	max-width: 360px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 50px;
}

.birthday-center-line {
	width: 100%;
	max-width: 500px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 28%;
}


/* =======================page enroll======================== */


/* Main Banner Container */
.admission-banner {
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  height: 280px;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto -100px auto;
  position: relative;
  z-index: 9;
}

/* Left Image Side */
.banner-image-side {
  min-width: 65%;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding-left: 20px;
  height: 80%;
}

/* Right Info Side */
.banner-info-side {
  min-width: 35%;
}

/* .banner-info-side h3 {
  color: var(--theme-primary-light);
} */

.pink-divider {
  width: 60px;
  height: 4px;
  background-color: var(--theme-secondary);
  border-radius: 2px;
}

.btn-pink {
  background: var(--gradient-color1);
  color: white;
  border: none;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.btn-pink:hover {
  background-color: var(--gradient-color);
  color: white;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .admission-banner {
    border-radius: 20px;
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding-left: none;
  }

  .admission-banner {
    height: 100%;
  }
}


/* ===============================FOOTER=========================== */

.site-footer {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0px 200px 0px;
}

.site-footer .quick-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay */
.site-footer .quick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f1931ae8 0%, #FF2400E8 100%);
  /* background: linear-gradient(360deg, var(--extra-color), var(--extra-color), var(--extra-color)); */
  z-index: -1;
}


.our-patron {
	color: var(--primary-light);
	position: relative;
	width: 190px;
	margin: 0px auto;
}

.our-patron::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--primary-light);
	border-radius: 10px;
	left: 0px;
	top: 50%;
}

.our-patron::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--primary-light);
	border-radius: 10px;
	right: 1px;
	top: 50%;
}


.logo-footer {
  width: 400px;
  z-index: 20;
  padding: 0px;
  overflow: hidden;
  margin: 0px auto;
}

.logo-footer a {
  display: block;
  position: relative;
}

.logo-footer img {
  width: 100%;
  height: auto;
  display: block;
}


@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }

  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

.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(0, 0, 0, 0.27);

}

.cisoft {
  color: #ffffffde !important;
  transition: 0.3s all ease-in-out;
}

.cisoft:hover {
  color: var(--primary-light) !important;
}

.btn-border-flow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(270deg, var(--primary-color), var(--primary-dark), var(--primary-color));
  background-size: 400% 400%;
  z-index: -1;
  animation: borderMove 6s linear infinite;
}


/* ----------------------- */


/* ============================= */

.copyright {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 991px) {
  .copyright {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    text-align: center;
  }
}


.social-sec {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-left: 0rem;
  padding-left: 0rem;
  margin-bottom: 0px;
  margin-top: 20px;
}

.social-sec li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Glassmorphism effect */
  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: var(--light-color);
  transform: translateY(-5px) scale(1.05);
}

.social-sec li:hover a {
  color: var(--primary-light);
}

.footer-text-color h6 {
  color: var(--primary-light);
}

.footer-text-color p {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.footer-text-color ul li a {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.footer-text-color ul li a:hover {
  color: var(--light-color);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.856);
}

@media (max-width: 991px) {
  .footer-school-img {
    padding-top: 130px;
  }
}



/* =======================footer logo ================================*/


.footer-copyright {
  color: #ffffff;
  font-size: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  width: 90%;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-copyright {
    color: #ffffff;
    font-size: 11px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px !important;
    width: 90%;
    text-align: center;
  }
}

.footer-bottom-name {
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 135px;
}

.footer-bottom-name img {
  height: 80px;
}

.footer-bottom-name div {
  width: 100%;
  background: var(--primary-light);
  height: 1px;
  max-width: 500px;
  margin: 0px 15px 0px 5px;
  position: relative;
  border-radius: 10px;
}

.footer-bottom-name div::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.footer-bottom-name div::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.footer-bottom-name p {
  margin: 0px;
  color: var(--primary-light);
  font-weight: 500;
  font-family: "Asap Condensed", sans-serif;
  letter-spacing: 0.5px;
}


/* ==========================Bottom Floating pof========================== */

#floating-pod {
  position: fixed;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 110;
  color: #fff;
}

@media (max-width: 768px) {
  #floating-pod {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 7px 10px;
    scrollbar-width: thin;
  }

  .quick-link-mobile {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 7px 10px;
    scrollbar-width: thin;
  }
}

.pod-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	white-space: nowrap;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(270deg, #f7620f 0%, var(--theme-primary) 100%);
	padding: 6px 0px 6px 10px;
	border-radius: 5px;
	border: 1px solid #ffffff7a;
	width: 185px;
	transition: 0.3s all;
	justify-content: start;
}

.pod-item:hover {
  background: var(--theme-secondary);
}

.pod-item i {
  font-size: 1.4rem;
  color: #fff;
}

.pod-item span {
  display: block;
  line-height: 1.3;
}


.top-line {
	/* font-weight: 500; */
	font-family: "Asap Condensed", sans-serif;
	font-size: 14px;
}

.bottom-line {
	font-size: 0.8rem;
	color: #fff;
	font-weight: 500;
}

.pod-divider {
  height: 30px;
  border-right: 2px solid var(--primary-dark);
}

@media (max-width: 768px) {
  .menu-link {
    margin: 0 0.5rem;
    font-size: 0.8rem;
  }

  .pod-item {
    font-size: 0.8rem;
  }

  .pod-item i {
    font-size: 1.4rem;
  }

  .pod-divider {
    height: 30px;
  }
}

/* ========================Page Css======================= */
.hero-banner {
  /* background: #f6f6ef; */
  background: linear-gradient(to right, #000000bd, #000000bd, #000000bd), url('../images/facility-bg.jpg') center/cover no-repeat;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.section-title {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.hero-divider {
  width: 130px;
  height: 4px;
  background-color: var(--Secondary-color);
  margin: 0 auto;
  border-radius: 30px;
}

.hero-title {
  z-index: 3;
  padding: 15px;
  border-radius: 100px;
  width: 95%;
  max-width: 1100px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  height: 100px;
}



.about-content {
  padding: 60px 0px 0px 0px;
}


.page-heading {
	text-transform: uppercase;
	color: transparent;
	font-weight: 700;
	background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 55%, var(--theme-secondary) 100%) no-repeat;
	-webkit-background-clip: text;
  position: relative;
}

.page-heading::before {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	background: #ffffff;
	border-radius: 50%;
	left: 1px;
	top: -3px;
	z-index: -1;
}


.hero-banner {
  height: 380px;
  position: relative;
  overflow: hidden;
}

/* Swiper full size */
.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.heroSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Keep content above */
.hero-title {
  z-index: 3;
  padding: 15px;
  border-radius: 100px;
  width: 95%;
  max-width: 1100px;
}

/* ================================== */


.custom-card {
  /* box-shadow: 8px 2px 1px rgba(0, 0, 0, 0.41); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 3px 12px rgba(0, 0, 0, 0.35);
}

.card-img-top {
  height: 220px;
  /* adjust as per image size */
  object-fit: cover;
}


/* ============================= */


.yellow-divider {
  width: 200px;
  height: 6px;
  background: var(--theme-secondary);
  margin: 10px auto;
  border-radius: 1px;
}

.list-group {
  padding: 0;
  margin: 0;
}

.list-group li {
  position: relative;
  line-height: 28px;
  padding: 0px 0 0px 32px;
  list-style: none;
  margin: 8px 0;
}

.list-group li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-color1);
  color: #ffffff;
  font-size: 12px;
  border-radius: 20px;
}


thead th {
  background: linear-gradient(180deg, #f1931a 0%, #F57112 100%);
  color: #fff !important;
  text-align: center;
  vertical-align: middle;
}

ol li {
  line-height: 28px;
  padding: 0px 0px 0px 0px !important;
  list-style-type: disc !important;
  background: none !important;
  list-style: none;
  margin: 8px 0px;
  vertical-align: middle;
}

/* ===================According===================== */

.accordion {
  border: none;
}

.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 18px;
  font-size: 1rem;
  color: #000;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
}

.accordion-body {
  border-radius: 10px;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 6px;
}

.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;
  color: #fff;
  padding: 3px 0px;
}

.accordion-button:hover span {
  transform: translateX(5px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


.accordion-button:not(.collapsed) {
  background: var(--theme-primary);
  color: #fff;
  border-radius: 10px;
}


.accordion-header {
  margin-bottom: 5px;
  border-radius: 6px;
  background: var(--theme-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.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");
}



/* ==================================== */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-color1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  z-index: 999;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--extra-color);
}

.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 i {
  color: #fff;
  font-size: 20px;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ======================================== */


@keyframes rotate-smooth {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating-bg {
  animation: rotate-smooth 24s linear infinite;
  /* 30s = slow, smooth rotation */
  transform-origin: center center;
  /* ensures it rotates around the middle */
}