@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");

:root {
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 12%, 85%);
  --color-gray-400: hsl(220, 12%, 65%);
  --color-gray-500: hsl(220, 12%, 45%);

  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(240, 10%, 3%);

  --color-blue-100: #f1f1f1;
  --color-blue-200: hsl(217, 80%, 60%);
  --color-blue-300: hsl(217, 80%, 55%);
  --color-blue-400: hsl(217, 80%, 50%);
  --color-blue-500: hsl(217, 80%, 45%);

  /* --color-blue: #e78421; */
  --color-green: #a6ce39;
  --color-light-green: #f4dcea;
  --color-light-blue: #d6e1f3;
  --color-blue: #09233c;

  --shadow-small:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large:
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: #000 !important;
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 6rem 3rem;
}

/* owl dots */
.owl-dots {
  text-align: center;
  align-self: center;
  vertical-align: middle;
  align-items: center;
}

.owl-dots button.owl-dot span {
  width: 8px;
  height: 8px;
  background-color: #00000038 !important;
  border-radius: 50%;
  margin: 0 3px;
  display: inline-block;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.owl-dots button.owl-dot.active span {
  background-color: var(--color-blue) !important;
  transform: scale(1.8);
  /* scale effect */
}

/* Optional hover effect */
.owl-dots .owl-dot:hover span {
  transform: scale(1.1);
}

/* .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
} */

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title {
  &-small {
    font-family: inherit;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
  }

  &-medium {
    font-family: inherit;
    font-size: clamp(2.15rem, 5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.15;
  }

  &-large {
    font-family: inherit;
    font-size: clamp(2.65rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
  }
}

.text {
  &-small {
    font-family: inherit;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  &-base {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
  }

  &-medium {
    font-family: inherit;
    font-size: 1.15rem;
    line-height: 1.5;
  }

  &-large {
    font-family: inherit;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  &-upper {
    text-transform: uppercase;
  }

  &-lower {
    text-transform: lowercase;
  }

  &-capital {
    text-transform: capitalize;
  }
}

.font {
  &-light {
    font-weight: 300;
  }

  &-normal {
    font-weight: 400;
  }

  &-medium {
    font-weight: 500;
  }

  &-semi {
    font-weight: 600;
  }

  &-bold {
    font-weight: 700;
  }
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 27.5px !important;
  transition: all 0.25s ease;
}

.btn-green {
  color: #000000 !important;
  background-color: var(--color-green) !important;
  box-shadow: rgb(95, 111, 4) 0px 5px;
  transition: all 350ms ease 0s;
  padding: 6px 20px !important;
  border-radius: 27.5px;
}

.btn-orange {
  background-color: var(--color-blue) !important;
  box-shadow: rgb(0, 8, 15) 0px 5px;
  border: none;
  color: #fff !important;
  padding: 10px 25px !important;
  font-weight: 600;
  transition: all 350ms ease 0s;
}

.btn-neutral {
  color: var(--color-gray-100) !important;
  background-color: var(--color-blue) !important;
  box-shadow: var(--shadow-medium);
  box-shadow: rgb(179 179 179) 0px 5px;
  transition: all 350ms ease 0s;
}

.btn-orange:hover,
.btn-green:hover,
.btn-neutral:hover {
  box-shadow: none;
}

.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

/*breadcrumb*/

/* .breadcrumb {
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    color: #fff;
    font-size: 14px;
} */

.breadcrumb {
  margin: 0;
  background: transparent;
  justify-content: center;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "»" !important;
  color: #fff !important;
  margin: 0 6px;
}

.breadcrumb-item.active {
  font-weight: 600;
}

.breadcrumb i {
  margin-right: 5px;
}

/* // Header section */
/* Header Sticky */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  /* height: 85px; */
  z-index: 9999;
  background: #fff;
  transition: all 0.35s ease;
  align-content: center;
  padding: 10px;
}

a.brand {
  display: contents;
}

/* Brand Logo */
.brand img {
  width: 350px;
}

/* Menu Item Highlight */
.menu-link {
  position: relative;
  padding: 10px 18px;
  color: #000;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.25s ease-in-out;
}

.menu-link:hover,
.menu-link.active {
  /* background-color: var(--color-blue); */
  /* border-radius: 6px; */
  color: var(--color-blue) !important;
}

a.nav-link.menu-link {
  padding: 2px 16px !important;
  margin-top: 14px;
}

.headr-btn {
  padding: 0 16px !important;
}

/* Prevent dropdown from hiding when near screen edge */
.nav-item:last-child.dropdown .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  /* keeps it inside screen */
  transform: translateY(0px);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Hover Dropdown Effect (Desktop Only) */
@media (min-width: 992px) {
  .menu-hover:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}

/* Dropdown Transition */
.fade-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.dropdown-menu li {
  position: relative;
  transition: all 0.25s ease;
}

.dropdown-item {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  padding-right: 20px !important;
  position: relative;
  transition: padding-left 0.2s ease;
  /* smooth movement */
}

/* Active Dropdown Hover Items */
.dropdown-item:hover {
  background-color: var(--color-green) !important;
  color: #fff !important;
  padding-left: 26px;
}

/* Triangle Indicator */
.dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  opacity: 0;
  /* transition: .25s; */
}

.dropdown-item:hover::before {
  opacity: 1;
}

button.navbar-toggler.collapsed,
button.navbar-toggler {
  padding: 5px;
  border: 1px solid #2222;
  box-shadow: none;
  background: var(--color-blue);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* 
   // Media query breakpoint */
@media screen and (max-width: 48rem) {
  .brand img {
    width: 250px !important;
  }
}

@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    margin-inline: auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  user-select: none;
  visibility: visible;
}

/* // Media query breakpoint */
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark-500);
  transition: all 0.25s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
  background-color: #fff;
}

.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
  background-color: #fff;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
  background-color: #fff;
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}

.overlay.is-active {
  display: block;
}

/* footer sectionn*/
.footer-section {
  background-color: var(--color-blue);
  position: relative;
}

.footer-title {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d3d8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-blue);
}

.footer-contact li {
  color: #d3d8e3;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--color-blue);
  margin-right: 8px;
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.social-icon {
  color: var(--color-blue);
  font-size: 1.2rem;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ffffff;
}

/* hero vdo bg section */
.video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
}

/* overlay */
.video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.034);
  z-index: 1;
  border-radius: 0;
}

/* hero section*/

.hero-section {
  position: relative;
  height: 550px;
  display: flex;
  overflow: hidden;
}

/* .hero-left {
      width: 60%;
      position: relative;
    } */
.hero-slider .owl-nav,
.mobile-hero-slider .owl-nav {
  z-index: 999;
  overflow: hidden;
}

.mobile-hero-slider {
  display: none;
}

@media (max-width: 768px) {
  .mobile-hero-slider {
    display: block !important;
  }

  .hero-slider {
    display: none !important;
  }
}

.hero-slider .item,
.mobile-hero-slider .item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 65%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #000;
  /* max-width: 600px; */
  z-index: 10;
}

.hero-content span {
  font-weight: 700;
  color: var(--color-green);
}

.hero-content h1 {
  font-weight: 800;
  font-size: 50px;
  color: #fff;
}

.hero-content h3 {
  color: #f2f2f2;
  font-weight: 600;
  margin-top: 10px;
  font-size: 2rem;
}

.hero-content p {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.6;
  color: #eee;
}

/* marque*/
.marquee {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-green);
  padding: 6px 0;
}

.marquee-track {
  /* display: inline-flex; */
  /* width: max-content;
  white-space: nowrap; */
  animation: marquee 12s linear infinite;
}

.marquee-item {
  /* padding: 0 20px; */
  flex-shrink: 0;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}

.marquee-item::after {
  content: " | ";
  /* margin: 0 20px; */
}

.marquee-item:last-child::after {
  content: "";
  /* margin: 0 !important; */
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ===========================
       Right Form Panel
    =========================== */
.hero-right {
  width: 30%;
  background: #fff;
  padding: 40px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: absolute;
  top: 17%;
  right: 10%;
  border-radius: 30px;
}

.hero-right h4 {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.form-control,
.form-select {
  border-radius: 6px;
  height: 48px;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.btn-submit {
  background-color: #c8e000;
  border: none;
  font-weight: 700;
  width: 100%;
  height: 50px;
  border-radius: 30px;
}

/* Owl Nav */
.owl-nav {
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.owl-nav button {
  background-color: var(--color-blue) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: 0.3s;
}

.owl-nav button:hover {
  background-color: var(--color-blue) !important;
}

.full-w-btn-green {
  background-color: var(--color-green) !important;
  color: #fff;
  width: 100%;
  text-align: center;
  border-radius: 50px !important;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600 !important;
  box-shadow: rgb(115 133 10) 0px 5px;
  transition: all 350ms ease 0s;
}

.full-w-btn-green:hover {
  box-shadow: none;
}

@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-content {
    position: relative;
    left: 0;
    transform: none;
    padding: 40px 20px;
  }
}

/* about section */
.kids-section {
  background-color: #fff;
}

.subtitle {
  font-style: italic;
  color: var(--color-green);
  font-weight: 500;
}

.subtitle .line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--color-green);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

.main-heading {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2b2b2b;
  line-height: 1.3;
}

.kids-section .main-heading .highlight {
  color: var(--color-green);
}

.kids-section p {
  font-size: 1rem;
  line-height: 1.7;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper iframe {
  border-radius: 15px;
}

/* .play-btn {
  font-size: 3rem;
  color: #34a0db;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  color: #1b7fb5;
} */

/* ===========================
       why choose section
    =========================== */
.why-choose {
  background-color: var(--color-light-green);
}

.section-subtitle {
  font-style: italic;
  font-weight: 500;
  color: #007bff;
}

.section-title {
  font-weight: 700;
  color: #222;
  font-size: 2.2rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 0;
  font-size: 1rem;
}

.why-box {
  position: relative;
  background: #fff;
  padding: 20px 20px 0;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

/* 
.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
} */

.why-number img {
  position: relative;
  top: 0;
  /* left: 33%; */
  width: 54px;
  z-index: 0;
  margin-bottom: 15px;
  opacity: 1;
}

.why-box h5 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.why-box p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
       CTA section
    =========================== */
/* CTA Background */
.cta-section {
  background: var(--color-blue) url("your-pattern-image.png") repeat;
  background-size: contain;
}

/* Left "Join Us!" text */
.cta-left-text {
  font-size: 26px;
  color: #ffffff;
}

/* Main Message */
.cta-message {
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 500;
  color: #007b7b;
  border-radius: 40px;
  border: 3px solid transparent;

  /* Gradient outline */
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #8b5cf6, #00c6ff) border-box;

  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* Icon */
.cta-icon {
  font-size: 20px;
  margin-right: 8px;
}

/* ===========================
       facilities section
    =========================== */
.course-section {
  padding-bottom: 70px;
  padding-top: 60px;
}

.course-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.course-card {
  position: relative;
  width: 320px;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  z-index: 2;
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 3;
}

.card-content .icon {
  font-size: 28px;
  color: #ff6600;
  /* Orange icon accent */
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.card-content p {
  font-size: 14px;
  color: #ddd;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .course-card {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .course-section {
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================
       counter section
    =========================== */

/* SECTION BACKGROUND */
.stats-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.stats-bg {
  background: url("..//imgs/counter-bg.jpg");
  background:
    linear-gradient(to bottom right, #b9d719e6, #b9d719e6),
    url("..//imgs/counter-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  padding: 60px 0;
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

/* WAVES */
/* .wave-top img,
.wave-bottom img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
} */

/* STATS CONTAINER */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 3;
}

/* STAT CARD */
.stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 15px;
  width: 200px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transform: rotate(0deg);
  transition: all 0.4s ease;
}

.tilt-left {
  transform: rotate(-4deg);
}

.tilt-right {
  transform: rotate(4deg);
}

.stat-card:hover {
  transform: rotate(0deg) scale(1.05);
}

/* CLOUD EFFECT */
/* .cloud {
  background: url("cloud-shape.svg") center/contain no-repeat;
  background-color: var(--color-light-blue);
  border-radius: 50%;
  padding: 20px;
} */
.cloud svg {
  font-size: 30px;
  color: var(--color-green);
  margin-bottom: 10px;
}

.number {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--color-blue);
}

/* .number.blue {
  color: #41a6ff;
}
.number.orange {
  color: #f89c2b;
}
.number.teal {
  color: #50b7b7;
}
.number.purple {
  color: #7176c4;
} */

.label {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stat-card {
    width: 200px;
    padding: 25px 20px;
  }

  .number {
    font-size: 36px;
  }

  /*testimonial section*/

  .testimonial-card {
    background: var(--color-blue) !important;
    padding: 50px !important;
    min-height: 278px !important;
  }

  /*about page */
  /*vision section*/
  .vision-mission-bg {
    display: none;
  }

  section.vision-section .col-md-6,
  section.mission-section .col-md-6 {
    padding: 50px 12px !important;
  }

  /*chairman section */
  section.chairmans-section {
    padding: 50px 0 !important;
  }

  .row.chairmans-msg.p-5 {
    padding: 40px 10px !important;
  }

  .msg-wrraper.px-3 {
    padding: 20px 0px 0 0 !important;
  }

  /* why cbis section*/
  .benefit-card:nth-child(odd),
  .benefit-card:nth-child(even) {
    transform: translateY(0) !important;
  }

  .benefits-section .col-md-7.py-5 {
    padding: 0 12px;
  }

  /*professor-section*/
  .box-intro-card {
    padding: 30px 7px 0 7px;
  }
}

/*responsive*/
@media (max-width: 768px) {
  /*hero section*/
  .hero-slider .item,
  .mobile-hero-slider .item {
    height: 500px;
  }

  /*stats section*/
  .stats-container {
    /* flex-direction: column; */
    align-items: center;
    gap: 25px;
  }

  .stat-card {
    width: 200px;
    transform: rotate(0deg);
  }

  .number {
    font-size: 22px;
  }

  /*facilities section*/
  .course-card {
    height: 250px;
  }

  /*testimonial section*/

  .testimonial-card {
    margin-top: 30px;
    padding: 40px 30px !important;
  }

  /*faq section*/
  section.faq-section {
    padding: 60px 10px;
  }

  .faq-content {
    padding: 50px 20px !important;
  }

  .cnf-col {
    padding: 50px 20px !important;
  }

  .box-intro-card {
    padding: 40px 12px !important;
    margin: 0 0 50px 0;
  }

  p.section-desc.mb-5 {
    margin-bottom: 0 !important;
  }

  /*about page*/
  /*overview section*/
  .preprimary-overview .text-center img {
    margin: 30px 0 0 0;
    width: 50%;
  }

  /* academic page*/
  .ois-steps.academic-tab.p-5 {
    padding: 50px 0 !important;
  }

  ul#oisSteps {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
  }

  #oisSteps .nav-item .nav-link {
    width: 100% !important;
  }

  .program-box {
    padding: 30px 15px !important;
  }

  /* admission page*/
  .process-slider {
    gap: 20px !important;
    padding: 0 !important;
  }

  .border-div {
    padding: 10px !important;
  }

  .bi-check-circle-fill {
    font-size: 10px !important;
  }

  /*admission page*/
  .admission-faq-wrapper {
    margin-top: 30px !important;
  }

  .admission-faq-question {
    text-wrap: auto;
    padding: 13px !important;
    font-size: 17px !important;
  }

  .admission-faq-question .icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

  /*events page*/
  div#v-pills-tab button {
    font-size: 15px !important;
    padding: 10px !important;
  }
  /* galelry page*/
  .gallery-tabs {
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    padding: 0 0 15px 0;
  }
  .gallery-tabs .gallery-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gallery-item img {
    height: 150px !important;
  }
  /* circular page*/
  section.circular-section.p-5 {
    padding: 50px 5px !important;
  }
  .circular-box {
    border-radius: 22px !important;
    padding: 30px 20px !important;
    overflow-x: scroll;
  }
  .circular-table th,
  .circular-table td {
    padding: 15px 12px !important;
    font-size: 13px !important;

    border-bottom: none !important;
  }
  #oisSteps .nav-item .nav-link {
    padding: 10px 12px;
  }
}

/* ===========================
       faq section
    =========================== */
/* ====== BASE STYLING ====== */
.faq-section {
  padding: 80px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

#faq-container {
  /* max-width: 1100px; */
  /* margin: 0 auto; */
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  border-radius: 25px;
}

/* ====== LEFT COLUMN ====== */
.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #111;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: normal;
}

.faq-question .icon {
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--color-blue);
  color: #fff;
}

.faq-item.active .faq-question .icon {
  transform: rotate(15deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid #f1f1f1;
  padding: 0 22px;
  transition: all 0.4s ease;
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}

.cnf-col {
  background-color: #b9d719;
  align-items: center;
}

/* ====== RIGHT COLUMN (IMAGE + PLAY BUTTON) ====== */
.faq-section .row {
  border-radius: 25px;
  overflow: hidden;
}

.faq-section .col-md-6.faq-image {
  background-image: url("../imgs/bg-faq.jpg");
  background-size: cover;
  background-position: bottom center;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  /* border-radius: 0 25px 25px 0; */
}

/* .faq-image img {
  width: 100%;
  border-radius: 20px;
  padding-left: 30px;
  object-fit: cover;
  height: 580px;
} */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #ff5e14;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.play-btn:hover {
  background: #ff5e14;
  color: #fff;
}

/* ====== VIDEO LIGHTBOX ====== */
.video-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.video-lightbox.active {
  display: flex;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  background: transparent;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-image {
    order: -1;
    margin-bottom: 30px;
  }

  .faq-title {
    text-align: center;
  }
}

/* ===========================
       Review section
    =========================== */
/* Section */
.testimonial-section {
  padding: 50px 0;
  background: url("../imgs/service-bg.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Card */
.testimonial-card {
  background: url("../imgs/testimonial-bg-v6.png") no-repeat center top;
  background-size: contain;
  /* background: var(--color-blue) !important; */
  padding: 100px 80px 0px 80px;
  /* border-radius: 50px 0 50px 0; */
  min-height: 450px;
  text-align: left;
}
img.img-hand {
  position: absolute;
  top: 22%;
  z-index: 1;
  width: 123px;
}
img.img-hand.img-h1 {
  left: 0;
}
img.img-hand.img-h2 {
  right: 0;
}
/* User */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  color: #fff;
}

.testimonial-header img {
  width: 55px !important;
  height: 55px;
  border-radius: 50%;
}

.testimonial-header h5 {
  margin: 0;
  font-weight: 600;
}

.testimonial-header span {
  font-size: 13px;
}

/* Text */
.testimonial-text {
  margin: 15px 0;
  color: #f2f2f2;
  font-size: 15px;
}

/* Stars */
.stars {
  color: #ffffff;
  font-size: 18px;
}

/* ===========================
       Parents apeak section
=========================== */
.parents-speak-section {
  background-color: #efefef;
}

/* Video Card */
.video-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.12); */
}

.video-card iframe,
.video-card video {
  width: 100%;
  height: 250px;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .video-card iframe,
  .video-card video {
    height: 300px;
  }
}

/* ===========================
       Teams section
    =========================== */
.teachers-section {
  text-align: center;
  padding: 50px 0;
  background-color: var(--color-light-blue);
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.teacher-card {
  text-align: center;
}

.teacher-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.teacher-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.teacher-image:hover img {
  transform: scale(1.05);
}

.plus-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: #ff9c07;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 4px solid #fff;
}

.teacher-image:hover .plus-icon {
  transform: rotate(90deg);
}

.teacher-card h3 {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.teacher-card span {
  font-size: 14px;
  color: #000;
}

/* ===========================
       About page
=========================== */
/* banner*/
.sh-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/about-bg-banner.jpg");
  background-size: cover;
  background-position: center center;
  height: 250px;
  align-items: center;
  align-content: center;
  text-align: center;
}

/*vision-mission-motto section*/
.kids-section {
  padding: 30px 40px;
}

/* Common Card */
.kids-section .card {
  position: relative;
  text-align: center;
  padding: 40px 10px;
  border-radius: 20px;
  overflow: hidden;
  height: 485px !important;
}

.kids-section .card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.kids-section .card h3 {
  margin-top: 25px;
  font-size: 22px;
}

.kids-section .card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0 25px 0;
}

/* Left Card */
/* .kids-section .card-left {
  background: #7fd3e6;
  color: #fff;
} */

.kids-section .card-left .blob.yellow {
  /* background: #f5c94a; */
  background: var(--color-blue);
}
.bx-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-green);
}
/* Right Card */
.kids-section .card-right,
.kids-section .card-left {
  background: #fffaf3;
  color: #333;
}

.kids-section .card-right .blob.blue {
  /* background: #7fd3e6; */
  background: var(--color-green);
}

/* Blob Shapes */
.blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
}

/* Center Image */
.center-image {
  position: relative;
  text-align: center;
}

.center-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.center-image h3 {
  /* position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%); */
  color: #fff;
  /* font-size: 32px; */
  font-weight: 600;
}
.center-image p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 992px) {
  .kids-grid {
    grid-template-columns: 1fr;
  }

  .center-image h2 {
    font-size: 26px;
  }
}

/* vision section*/
.vision-section {
  background-color: #f2f2f2;
}

.vision-mission-bg {
  background-position: center center;
  background-size: cover;
}

.vision-img {
  width: 75%;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.mission-list i,
.mission-list svg {
  color: var(--color-blue);
  font-size: 8px;
  line-height: 0;
  margin-right: 10px;
  margin-bottom: -2px;
}

/* why cbis/benefits section*/
.benefits-section {
  background: var(--color-blue);
  display: flex;
  justify-content: center;
}

.wht-text h2.main-heading,
.wht-text p {
  color: #fff;
}

.benefits-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  /* min-width: 320px; */
}

.benefit-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

/* Create the staggered effect */
.benefit-card:nth-child(odd) {
  transform: translateY(-20px);
}

.benefit-card:nth-child(even) {
  transform: translateY(20px);
}

/* Hover effect */
.benefit-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.benefit-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-container {
    flex-direction: column;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
  }
}

/* chairmans section*/
.chairmans-msg {
  background-color: #f7f8f9;
  border-radius: 20px;
}

.chairman-img {
  text-align: center;
  /* width: 60%; */
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* professianor section*/

.professor-card-row {
  padding: 0 10px;
}

.professor-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
  background: #fff;
  transition: transform 0.3s ease;
}

/* .professor-card:hover {
  transform: translateY(-5px);
} */

/* Left intro card */
.intro-card {
  background: #f7f8f9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px !important;
}

/* Professor image cards */
.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.professor-info {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
}

.professor-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.professor-info p {
  margin: 3px 0 0;
  font-size: 0.9rem;
  color: #000;
}

/* audio section */
.school-audio-section {
  background: #f7f8f9;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-subtitle {
  color: #777;
  font-size: 15px;
}

.audio-card {
  background: var(--color-green);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(53, 53, 53, 0.112);
  justify-content: space-between;
  /* display: grid; */
}

.audio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.audio-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.audio-text {
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}

.prayer-img-col {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

/* ===========================
   Academic facilities page
=========================== */
/*highlighted section */
.highlighted-box{
  background-color: var(--color-green);
  padding: 50px;
  border-radius: 50px 10px 50px 10px;
  position: relative;
  overflow: hidden;
}
.highlighted-bx-content h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.highlighted-bx-content h4{
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
}
.highlited-bx-img{
  border-radius: 20px;
}
.img-shape img{  
    transform: rotate(20deg);
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 290px;
}
/* facilities section */
.corelbell-fecilities-section {
  padding: 60px 0;
} 
#sec_bg_green { 
  background-color: var(--color-light-green);
}
#sec_bg_blue { 
  background-color: var(--color-light-blue);
}
#sec_bg_green .bell-facilitites-row-content,
#sec_bg_blue .bell-facilitites-row-content {
  padding-left: 30px;
}
.bell-facilitites-row-content h3{
  font-size: 28px;
  font-weight: 700;
}
.bell-facilitites-row-content p{
  font-size: 21px;
  width: 650px;
}
.facilities-sec-img img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
/* Card Container */
.bell-facilities-card {
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Image Section */
.bell-facilities-card-image {
  width: 60%;
  border-radius: 20px;
}

.bell-facilities-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Content Section */
.bell-facilities-card-content {
  padding: 25px;
  border-left: 1px solid #a9a9a9;
  background: #fff;
  border-radius: 20px;
  width: 600px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 15px;
  top: 15%;
  display: block;
  width: 310px;
  height: 230px;
}

.bell-facilities-card-content h4 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.bell-facilities-card-content p {
  font-size: 18px;
}
/* ===========================
      Pre Primary page
=========================== */
.preprimary-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/pre-primary-bg.jpg");
  background-size: cover;
  background-position: center center;
  /* height: 250px; */
  align-items: center;
  padding: 30px 0;
  align-content: center;
}
.col-mid {
  align-content: center;
  align-items: center;
}
.col-mid .breadcrumb {
  justify-content: left;
}
.academic-pg-form {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
.col-img {
  width: 65%;
  align-items: end;
}

.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  /* padding-left: 25px; */
  margin-bottom: 8px;
  position: relative;
}

.custom-list li svg {
  margin-right: 5px;
}

/* .custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff7b00;
} */
.scto-card {
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
  transition: all 0.25s ease;
}

.scto-card:hover {
  box-shadow: none;
  transform: scale(1.2);
}

.scto-card h5 {
  font-weight: 700;
}

.scto-card p {
  font-size: 15px;
  line-height: 1.2em;
}

.cbg-green {
  background-color: var(--color-green);
  box-shadow: 0 7px 0 0 rgb(95, 111, 4);
}

.cbg-orange {
  background-color: var(--color-blue);
  box-shadow: 0 7px 0 0 rgb(181, 73, 1);
}

.scto-card .scto-pp-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.icon-card,
.day-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.icon-card:hover,
.day-card:hover {
  transform: translateY(-5px);
}

.icon-card h5,
.day-card h6 {
  font-weight: 600;
}

/* pre primary club section*/
.preprimary-clubs-section {
  background: #fff;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.info-box.right {
  flex-direction: row-reverse;
  text-align: left;
}

.info-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px double var(--color-blue);
  overflow: hidden;
  flex-shrink: 0;
}

.info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 21px;
}

.info-content ul {
  padding-left: 0;
  list-style: none;
}

.info-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
}

.info-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--color-blue);
  border-radius: 50%;
}

/* CENTER IMAGE */
.main-child-img {
  max-width: 100%;
  height: auto;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .info-box,
  .info-box.right {
    flex-direction: row;
  }

  .center-blob {
    margin: 40px auto;
  }
}

/*age group section*/
section.age-group {
  background-color: var(--color-blue);
}
.grp-card {
  background-image: url(../imgs/age-grp-bg.png);
  background-size: cover;
  padding: 20px 10px 10px 20px;
  /* margin: 40px; */
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-content: center;
  align-items: center;
  align-self: center;
}
.grp-card h6 {
  font-size: 21px;
  font-weight: 700;
}
/* learing approach section */
.learning-approach-section {
  padding: 50px 0;
}
.col-approach-mid {
  align-items: center;
  text-align: center;
}
.approach-bg {
  width: 80%;
}
.mx-width-desc {
  max-width: 600px;
}

/* holistic Section Background */
.holistic-section {
  /* background: linear-gradient(135deg, #e59b1a, #d5850c); */
  background:
    linear-gradient(to bottom, #d6e1f3c3, #d6e1f3c3),
    url(../imgs/corel-bell-imgs/746A4123.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* holistic-list-box*/
/* Main Box */
.holistic-list-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.holistic-list-box {
  position: relative;
  background: var(--color-blue);
  backdrop-filter: blur(30px);
  border: 2px dashed #fff;
  border-radius: 40px;
  padding: 20px 25px 20px 70px;
  width: 400px;
  color: #fff;
  display: flex;
  align-items: center;
}

/* Circle */
.holistic-list-circle {
  position: absolute;
  left: -20px;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  /* font-size: 16px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.holistic-list-circle .lc-icon {
  width: 50px;
}
/* Content */
.holistic-list-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.holistic-list-content p {
  margin: 5px 0 0;
  font-size: 11px;
  line-height: 1.4;
}

/* Layout */
.holistic-section .holistic-wrapper {
  /* max-width: 1300px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left Side */
.holistic-section .holistic-left {
  max-width: 100%;
  text-align: center;
}

.holistic-section .small-title {
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.9;
}

.holistic-section .holistic-left h2 {
  font-size: 40px;
  /* margin: 15px 0; */
  font-weight: 700;
  color: #000;
}

.holistic-section .subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #000;
}

/* Circle Cards Container */
.holistic-circles {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Outer Dotted Circle */
.circle-card {
  width: 230px;
  height: 230px;
  border-radius: 10px;
  border: 2px dashed #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-inner.c1,
.circle-inner.c3 {
  background-color: #bbff0054;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.circle-inner.c2,
.circle-inner.c4 {
  background-color: #09233c49;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
/* Inner Circle */
.circle-inner {
  width: 220px;
  height: 220px;
  background: #f3f3f3;
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle-inner .icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.circle-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.circle-inner p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .holistic-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .holistic-left {
    max-width: 100%;
  }

  .holistic-circles {
    margin-top: 40px;
  }
}

/* cbis facilities Section */
.cbis-facilities-section {
  background: #fff;
  padding: 60px 20px;
}

/* Wrapper */
.cbis-facilities-wrapper {
  /* max-width: 1200px; */
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Card */
.cbis-facility-card {
  width: 350px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

/* Image */
.cbis-facility-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

/* Content Box */
.cbis-facility-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Icon + Title */
.cbis-facility-content .icon-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cbis-facility-content .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
}

.cbis-facility-content .icon-box svg {
  width: 22px;
  height: 22px;
}

/* Title */
.cbis-facility-content h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1f2a44;
}

/* Hover Effect */
.cbis-facility-card:hover .arrow-btn {
  background: #f4a200;
  border: none;
  color: #fff;
}

/* academic testimonial section*/
.academic-testimonial-section {
  width: 100%;
  overflow: hidden;
}

/* LEFT IMAGE */
.academic-testimonial-image {
  background-image: url("../imgs/feedback-image-1-1.jpg");
  width: 100%;
  /* height: 100%; */
  background-size: cover;
  background-position: center;
}

/* RIGHT CONTENT */
.academic-testimonial-content {
  /* width: 50%; */
  background: var(--color-blue);
  color: #fff;
  padding: 80px !important;
  position: relative;
}

.academic-testimonial-slider {
  position: relative;
}

.academic-testimonial-slide {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.academic-testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.academic-testimonial-slide .profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.academic-testimonial-slide .profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed #fff;
  padding: 6px;
}

.academic-testimonial-slide .profile h4 {
  font-size: 20px;
}

.academic-testimonial-slide .profile p {
  font-size: 14px;
  color: #f4a100;
}

.academic-testimonial-slide .stars {
  color: #f4a100;
  margin-top: 5px;
  font-size: 14px;
}

.academic-testimonial-slide .quote {
  position: relative;
}

.academic-testimonial-slide .quote-icon {
  background: #f4a100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 20px; */
  margin-bottom: 15px;

  position: absolute;
  left: -54px;
}

.academic-testimonial-slide .quote-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.academic-testimonial-slide .quote p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* DOTS */
.dots {
  margin-top: 40px;
}

.dot {
  height: 8px;
  width: 8px;
  margin-right: 6px;
  background-color: #aaa;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background-color: #f4a100;
  transform: scale(2);
}

/* academic faqs*/
.academic-faq-section {
  background: #f7f7f7;
}

.academic-faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3142;
}

/* Accordion Styling */
.academic-accordion .academic-item {
  border: none;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.academic-button {
  font-size: 18px;
  font-weight: 600;
  padding: 22px 25px;
  background: #ffffff;
  color: #2d3142;
  box-shadow: none;
}

.academic-button:not(.collapsed) {
  background: var(--color-blue) !important;
  color: #ffffff !important;
}
.academic-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}
.academic-body {
  padding: 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  background: #ffffff;
}

/* ===========================
       contact page
=========================== */
/* banner*/
.contact-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/contact-bg-banner.jpg");
  background-size: cover;
  background-position: center center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

h1.pg-heading {
  font-weight: 700;
  font-size: 48px;
  /* padding-top: 50px; */
  color: #fff;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  align-self: center;
  align-items: center;
  align-content: center;
}

.contact-container {
  /* position: relative; */
  z-index: 2;
  background: #fff;
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  align-self: center;
  border-radius: 10px;
  padding: 50px;
  /* width: 80%; */
  max-width: 1100px;
  margin: 0 auto !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* .contact-form, .contact-info {
  flex: 1;
} */

.contact-form {
  padding-right: 60px !important;
  border-right: 1px solid #e6e6e6;
}

.contact-info {
  padding-left: 60px !important;
}

.contact-form h3,
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #111;
}

/* FORM FIELDS */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #115abf;
}

.form-group.full {
  margin-bottom: 20px;
}

/* BUTTON & FOOTER */
.btn-submit {
  background: var(--color-blue);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--color-green);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkbox {
  font-size: 0.85rem;
}

/* CONTACT INFO */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #333;
}

.contact-info strong {
  display: block;
  font-weight: 600;
  color: #111;
}

.social p {
  font-weight: 500;
  margin-bottom: 10px;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social a:hover {
  color: #115abf;
}

/* MAP BACKGROUND */
.map-background iframe {
  /* position: absolute; */
  width: 100%;
  height: 280px;
  /* border: none;
  top: 0;
  left: 0; */
  filter: brightness(80%);
  z-index: 1;
}

/* ===========================
       Admission page
=========================== */
.admission-banner {
  background:
    linear-gradient(to bottom right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../imgs/admission-bg1-banner.jpg");
  background-size: cover;
  background-position: bottom center;
  padding: 40px 0;
  align-items: center;
  align-content: center;
  text-align: center;
}

.admission-form-right {
  padding: 40px 30px;
  background-color: #f2f2f2;
  border-radius: 20px;
}

/* process*/
.admission-process {
  background: var(--color-blue);
  padding: 70px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.admission-process .container-fluid {
  align-items: center;
  width: 100%;
  border-style: dashed;
  --border-style: dashed;
  border-width: 1px 0px 0px 0px;
}

.process-wrapper {
  position: relative;
  /* width: 70%; */
  align-items: center;
  align-self: end;
  align-content: end;
  display: block;
}

.process-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  /* FIXED */
  /* overflow-y: visible;   */
  scroll-behavior: smooth;
  margin-top: -20px;
  white-space: nowrap;
  scrollbar-width: none;
  padding: 0 45px;
}

.process-slider::-webkit-scrollbar {
  display: none;
}

.process-step {
  position: relative;
  flex: 0 0 320px;
  text-align: center;
}

.step-number {
  background: var(--color-blue);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  display: inline-block;
  padding: 11px 15px;
  line-height: 1;
  border-radius: 50px;
  /* border: 4px solid #fff; */
  position: relative;
  top: 0;
}

.step-card {
  background: #fff;
  color: #002766;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  padding: 30px 25px;
  margin-top: 15px;
  min-height: 230px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.step-card:hover {
  transition: transform 0.1s ease-out;
}

.step-card img {
  width: 50px;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--color-blue);
  margin-bottom: 12px;
  margin-top: 5px;
}

.step-card p {
  font-size: 17px;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
}

.nav-btn {
  background: var(--color-green);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 40px;
  font-size: 20px;
  line-height: 0;
  cursor: pointer;
  color: #fff;
  margin: 15px 5px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--color-blue);
}

@media (max-width: 600px) {
  .process-step {
    flex: 0 0 90%;
  }
}

/* admission faq*/
.admission-faq-section {
  background: #f2f2f2;
}

.admission-faq-wrapper {
  background: #fff;
  border: 2px solid #ececec;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.admission-faq-item {
  border-bottom: 1px solid #e7e7e7;
}

.admission-faq-item:last-child {
  border-bottom: none;
}

.admission-faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px;
  font-size: 22px;
  font-weight: 700;
  color: #0c1b6a;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.admission-faq-question .icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  float: right;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  background-color: var(--color-green);
}

/* Hide minus by default, show plus */
.admission-faq-question .minus {
  display: none;
}

.admission-faq-question.active .plus {
  display: none;
}

.admission-faq-question.active .minus {
  display: inline;
}

/* Answer Box */
.admission-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 22px;
}

.admission-faq-answer p {
  margin: 15px 0 25px;
  color: #505050;
}

/* When opened */
.admission-faq-answer.show {
  max-height: 300px;
}

.admission-faq-question.active .plus {
  display: none;
}

.admission-faq-question.active .minus {
  display: inline-flex;
}

/* fee structure*/
.fee-doc-section {
  background-color: #f7f8f9;
}

.fee-box {
  /* background: linear-gradient(180deg, #f4fff3 0%, #fefff6 100%); */
  background: var(--color-green);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.doc-box {
  /* background: linear-gradient(180deg, #f4fff3 0%, #fefff6 100%); */
  background: var(--color-blue);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.border-div {
  border: 1px dashed #ffffff40;
  height: 100%;
  width: 100%;
  padding: 15px;
  border-radius: 20px;
}

.table th,
.table td {
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  color: #000;
  background-color: transparent !important;
}

.table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ffffff62;
}

.table th {
  background: transparent;
  color: #000;
  font-weight: 700;
  text-align: left;
}

.table td {
  vertical-align: middle;
}

.fee-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: #2b2b2b;
  display: flex;
  align-items: center;
}

.fee-box ul li:last-child {
  border-bottom: none;
}

.bi-check-circle-fill {
  color: var(--color-green) !important;
  font-size: 1.1rem;
}

/* ===========================
       Academic page
=========================== */
/* banner*/
.academics-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/academic-banner-v1.jpg");
  background-size: cover;
  background-position: top center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

.departments-section {
  padding: 60px 0;
}

.department-card {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.department-card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.department-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.department-card h5 {
  color: #183b56;
  font-size: 18px;
}

.department-card p {
  font-size: 14px;
  color: #6c757d;
}

/* tab css*/
ul#oisSteps {
  align-items: center;
  align-content: center;
  align-self: center;
  text-align: center;
  justify-content: space-evenly;
}

/* .ois-steps h2 {
  font-size: 18px;
  letter-spacing: 1px;
  color: #222;
}
.adm-procedure-img {
  width: 100%;
  height: 340px !important;
  object-fit: cover;
} */
#oisSteps .nav-item .nav-link {
  color: #000000 !important;
  /* background-color: #ffffff !important; */
  padding: 10px 30px;
  font-weight: 600;
  /* margin: 0 20px; */
  transition: all 0.3s ease;
  border: none !important;
  width: 350px;
}

#oisSteps .nav-item .nav-link.active {
  color: #000000 !important;
  background-color: var(--color-green) !important;
  border: none !important;
}

/* .ois-box {
  background: #ffffff;
  border-radius: 3px;
  letter-spacing: 1px;
  color: #222;
}

.tab-content ul {
  list-style: disc;
  padding-left: 20px;
}

.tab-content li {
  margin-bottom: 8px;
} */

/*program box*/
.program-box {
  background: var(--color-green);
  border-radius: 22px;
  padding: 40px;
  /* box-shadow: 0 0 0 1px #eee; */
}

.program-img-wrap img {
  border-radius: 16px;
}

/* Age Tag */
.program-age {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 10px;
}

/* Title */
.program-title {
  font-size: 38px;
  font-weight: 800;
  color: #0a0a3b;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Description */
.program-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Bullet List */
.program-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.program-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.program-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--color-blue);
  font-size: 22px;
  line-height: 0;
}

/* Button */
.program-btn {
  background: #fbd341;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  color: #222;
  font-size: 17px;
  box-shadow: 0 4px 0 #d9b01f;
  transition: 0.2s ease;
}

.program-btn:hover {
  background: #ffde55;
  box-shadow: 0 4px 0 #caa318;
  color: #111;
}

/* ===========================
    Blogs & Insights page
=========================== */
/* banner*/
.blogs-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/bg1.jpg");
  background-size: cover;
  background-position: center center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

/* insights */
.insights-card {
  background: #fff;
  border-radius: 25px;
  border: 2px solid #b9d719;
  /* overflow: hidden; */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
  position: relative;
}

a.btn.insights-btn {
  position: absolute;
  border-radius: 25px;
}

/* .insights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
} */

/* Image */
.insights-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.insights-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px 25px 0 0;
}

.insights-card:hover img {
  transform: rotate(0deg) scale(1.05);
}

/* Content */
.insights-content {
  padding: 20px;
}

/* Meta Row */
.insights-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--color-blue);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Title */
.insights-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Description */
.insights-desc {
  font-size: 14px;

  margin-bottom: 15px;
}

/*blog*/
.blog-section {
  background-color: #f7f8f9;
  padding: 50px 0;
}

.blog-section .blog-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 10px 50px rgba(30, 30, 30, 0.409);
}

.blog-section .blog-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-section .blog-card .card-body {
  padding: 20px;
}

.blog-section .blog-card:hover img {
  transform: scale(1.05);
}

.blog-section .blog-card:hover {
  box-shadow: 0 10px 50px rgba(30, 30, 30, 0.1);
}

.blog-section .blog-card .meta {
  font-size: 0.9rem;
}

.blog-section .blog-card .btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 18px 9px 18px;
  line-height: 1.1;
  border: 1px solid #2125291c !important;
}

.blog-section .blog-card .btn:hover {
  background-color: var(--color-blue);
  color: #fff;
  border: 1px solid var(--color-blue);
}

.pagination .page-link {
  color: var(--color-green);
}

.pagination .active .page-link {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

/* ===========================
    IN_THE_NEWS page
=========================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #00000014;
  overflow: hidden;
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
}

/* .news-item:hover {
    transform: translateY(-5px);
} */

.news-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: 8px;
  border-radius: 10px;
}

.news-caption,
.news-overlay span {
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: #000;
}

/* Tablet */
@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  /*about page*/
  /*overview section*/
  .preprimary-overview .text-center img {
    margin: 30px 0 0 0;
    width: 100%;
  }
}

/* ===========================
    Single blog page
=========================== */
.single-blog {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.single-blog h1 {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
}

.blog-meta {
  text-align: left;
  color: #777;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  border-radius: 15px;
  margin: 30px 0;
}

.blog-content {
  line-height: 1.8;
  font-size: 16px;
}

.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.blog-navigation a {
  color: var(--color-green);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  max-width: 45%;
}

.blog-navigation a:hover {
  text-decoration: underline;
}

.pbmit-block-column {
  height: 300px;
  margin: 15px 0;
}

.pbmit-block-column img {
  margin: 15px 0;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

iframe {
  border-radius: 15px;
}

/* ===========================
          News page
=========================== */
/* banner*/
.news-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/news-bg.jpg");
  background-size: cover;
  background-position: center center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

/* ===========================
          Events page
=========================== */
.events-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/events-bg.jpg");
  background-size: cover;
  background-position: center center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.events-tabs .nav-link {
  background: #ffffff !important;
  color: #333;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  /* border: 1px solid #e0e0e0; */
  text-align: left;
  position: relative;
  padding: 10px 20px;
}

.events-tabs .nav-link::before {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.4s ease;
  z-index: -1;
  /* background-image: linear-gradient(to bottom right, #0b243a 0, #0b243a 50%, #0b243a 50%, #0b243a 100%) !important; */
  background-color: var(--color-blue);
  width: 15px;
  height: 15px;
  right: -14px;
  bottom: 0;
  top: 12px;
  opacity: 0;
}

.events-tabs .nav-link.active,
.events-tabs .nav-link:hover {
  background-color: var(--color-blue) !important;
  color: #fff;
  border-color: var(--color-blue) !important;
}

.events-tabs .nav-link:hover::before,
.events-tabs .nav-link.active::before {
  opacity: 1;
}

.events-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* .events-img:hover {
  transform: scale(1.05);
} */

/* ===========================
          Gallery page
=========================== */
.gallery-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/gallery-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.gallery-tabs .tab-btn {
  padding: 8px 18px;
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.gallery-tabs .tab-btn.active {
  color: #fff;
  background-color: var(--color-blue) !important;
  box-shadow: rgb(181, 73, 1) 0px 5px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  /* default visible */
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Load more button */
.load-more-wrap {
  text-align: center;
  margin-top: 20px;
}

#loadMoreBtn {
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  /* events*/
  div#v-pills-tab {
    flex-wrap: nowrap !important;
    display: flex !important;
    overflow-x: auto;
    flex-direction: row !important;
  }

  div#v-pills-tab button {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .events-tabs .nav-link::before {
    left: 20px !important;
    bottom: 0;
    top: 32px !important;
  }
}

/* ===========================
        Circular page
=========================== */
.circulars-pg-banner {
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)),
    url("../imgs/circular-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  height: 350px;
  align-items: center;
  align-content: center;
  text-align: center;
}

.circular-box {
  background: var(--color-green);
  border-radius: 22px;
  padding: 30px;
  /* box-shadow: 0 0 0 1px #eee; */
}

.circular-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.circular-table thead tr {
  background: #f7fbe0;
  /* same as your screenshot */
  color: #000;
}

.circular-table th,
.circular-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.circular-table tbody tr:last-child td {
  border-bottom: none;
}

.view-btn {
  padding: 10px 25px !important;
}
