/*Header*/
.top-marquee {
  z-index: 1050;
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.top-marquee.scrolled {
  background-color: #014f8d !important;
}

.top-marquee-offset {
  top: 28px;
}

#mainHeader {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background-color: transparent;
}

#mainHeader.sticky {
  background-color: #faf9f6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-colored {
  display: none;
  transition: opacity 0.3s ease;
}

#mainHeader.sticky .logo-white {
  display: none !important;
}

#mainHeader.sticky .logo-colored {
  display: block !important;
}

.menu-toggle-custom {
  background-color: #bcfbba;
  color: black;
  padding: 6px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
  justify-content: flex-start;
  /* ✅ aligns content (icon) to the left */
}

.menu-toggle-custom:hover {
  background-color: #f0f0f0;
  color: black;
}

#mainHeader.sticky .menu-toggle-custom {
  background-color: #014f8d;
  color: #fff;
  border: none;
}

#mainHeader.sticky .menu-toggle-custom:hover {
  background-color: #014f8d;
}

@media (max-width: 767.98px) {
  .menu-toggle-custom .menu-label {
    display: none;
  }

  .menu-toggle-custom {
    padding: 6px;
    gap: 0;
    width: 46px !important;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 10% !important;
  }

  .menu-icon-lines {
    margin: 0;
  }

  .menu-icon-lines span {
    width: 20px;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
}

.menu-icon-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.menu-icon-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: currentColor;
}

.menu-icon-lines {
  display: inline-block;
  width: 20px;
  height: 16px;
  position: relative;
}

.menu-icon-lines span {
  position: absolute;
  height: 2px;
  background: currentColor;
  width: 100%;
  left: 0;
  transition: all 0.3s ease;
}

.menu-icon-lines span:nth-child(1) {
  top: 0;
}

.menu-icon-lines span:nth-child(2) {
  top: 7px;
}

.menu-icon-lines span:nth-child(3) {
  top: 14px;
}

.btn-menu-inn{
  color: black;
  background-color: #bcfbba;
}

.btn-menu-inn:hover {
  background-color: #aef7ab;
  color: black;
}

.close-x span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}

.close-x span:nth-child(2) {
  opacity: 0;
}

.close-x span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background-image: url("../images/Globe-Wallpaper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.mobile-menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 85, 68, 0.85);
  z-index: 1;
}

.mobile-menu-overlay>* {
  position: relative;
  z-index: 2;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.submenu-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.submenu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 250px;
  top: 0;
  width: 200px;
  z-index: 10;
}

.submenu-wrapper:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: 5px 0;
  display: block;
}

@media (max-width: 767.98px) {
  .submenu-wrapper {
    flex-direction: column;
  }

  .submenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 5px;
    padding-left: 15px;
  }

  .submenu li a {
    font-size: 14px;
    color: #fff;
    display: block;
  }
}

@media (max-width: 767.98px) {
  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
  }

  .submenu-wrapper.active .submenu {
    max-height: 500px;
    /* enough height to show all items */
  }

  .submenu-toggle {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 20px;
    height: 31px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  /* .submenu-wrapper.active .submenu-toggle {
    transform: rotate(180deg);
  } */
}

/* Hover dropdown for large screens */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0.5rem;
  }
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.dropdown-menu {
  animation: fadeIn 0.2s ease-in-out;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
}

.dropdown-item {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {

  /* Wraps main and submenu in row layout */
  .desktop-nav-wrapper {
    display: flex;
    align-items: flex-start;
  }

  .desktop-main-nav {
    width: 250px;
  }

  .submenu-slot {
    flex-grow: 1;
    min-height: 100%;
    padding-left: 40px;
  }

  .submenu-slot ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .submenu-slot li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    font-weight: 600;
  }

  .submenu-slot li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding-left: 10px;
  }

  .submenu-slot {
    display: none;
  }

  /* Show submenu-slot only when parent has submenu */
  .submenu-wrapper:hover~.submenu-slot,
  .submenu-wrapper:has(:hover)~.submenu-slot {
    display: block;
  }
}

@media (max-width: 767.98px) {
  #mainHeader.hide-on-load {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  #mainHeader.sticky {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Hero Section Styles (No animations or transitions) */
#heroCarousel {
  overflow-x: hidden;
}

#heroCarousel .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#heroCarousel .carousel-item {
  height: 100vh;
  position: relative;
  cursor: default;
  overflow: hidden;
}

#heroCarousel .hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}

#heroCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.carousel-fade .carousel-item {
  opacity: 0;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.05);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.btn-success,
.btn-outline-light {
  animation: pulse 3s infinite ease-in-out;
}

/*Hero Video*/
.hero-slide {
  height: 100vh;
  /* width: 100%; */
  overflow: hidden;
  position: relative;
}

#yt-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#yt-player iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-slide .overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Optional dark layer */
}

@media (max-width: 768px) {

  #heroCarousel .carousel-item,
  .hero-slide {
    height: 33vh;
    /* ✅ Reduced height on mobile */
  }

  #yt-player iframe {
    height: 60vh !important;
    width: 100vw;
    min-height: unset;
    min-width: unset;
  }

  #heroCarousel .overlay {
    padding: 0 10px;
  }

  #heroCarousel h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  #heroCarousel p {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 75% 75%;
  }
}

@media (max-width: 576px) {
  #heroCarousel h1 {
    font-size: 1.25rem;
  }

  #heroCarousel p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/*Aboout Section*/
#about .text-title {
  font-family: "Poppins", sans-serif;
}

#about .text-para {
  font-family: "Inter", sans-serif;
}

@media (max-width: 767px) {
  #about h2 {
    font-size: 1.5rem;
  }

  #about img {
    max-width: 100%;
    max-height: 170px !important;
  }
}

/*Our Curriculum*/
.ocur-section {
  overflow: hidden;
  background: url("../images/home/curr-bg.svg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.ocur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  /* optional overlay */
  z-index: 1;
  pointer-events: none;
}

.ocur-img-box {
  position: relative;
  width: fit-content;
  margin-left: auto;
  z-index: 2;
}

.ocur-img-box img {
  border-radius: 20px;
  /* max-width: 90%; */
  padding-bottom: 11px;
}

.ocur-img-border {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px dashed green;
  border-radius: 20px;
  z-index: -1;
}

.ocur-cards-wrapper {
  position: relative;
  z-index: 2;
}

.ocur-card {
  background-color: white;
}

.ocur-btn {
  background-color: #004b8d;
  /* dark blue */
  color: #fff;
  padding: 8px 24px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.ocur-btn:hover {
  background-color: #003366;
  /* darker on hover */
  text-decoration: none;
}

@media (max-width: 767px) {
  .ocur-img-box {
    display: none;
  }

  .ocur-section {
    background-attachment: scroll;
    /* better performance on mobile */
  }
}

/*Our Team*/
.bg-cover {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center / cover;
  loading: lazy;
}

.upcoming-section {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.calendar-box,
.event-panel {
  background-color: #f8f8f8;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.calendar-header {
  font-size: 1.4rem;
  color: #004b8d;
  font-weight: 600;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day,
.calendar-label {
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  font-size: 14px;
}

.calendar-label {
  background-color: #f1f1f1;
  font-weight: 600;
  color: #555;
}

.calendar-day {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  cursor: pointer;
}

.calendar-day:hover {
  background-color: #f3f3f3;
}

@media (max-width: 767px) {

  .calendar-box,
  .event-panel {
    padding: 1rem;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-day,
  .calendar-label {
    height: 38px;
    line-height: 38px;
    font-size: 13px;
  }
}

.today {
  background-color: #004b8d;
  color: white !important;
  font-weight: bold;
  position: relative;
}

.today::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  background-color: white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.event-day {
  background-color: #fde8cd !important;
  font-weight: bold;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #004b8d;
  cursor: pointer;
}

.invisible {
  visibility: hidden;
  border: none;
}

#eventCards>div>div {
  transition: 0.3s ease;
}

#eventCards>div>div:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
}

.calendar-day.border {
  border: 2px solid #0d6efd !important;
}

.upcoming-section {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.upcoming-section .bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.btn-events {
  background-color: #bcfbba;
  color: black;
  border-radius: 999px;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 16px;
}

.btn-events:hover {
  background-color: #bcfbba;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {

  .calendar-box,
  .event-panel {
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
  }
}

/*Testimonials*/
#otsTestimonial .ots-testimonial-bg {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center/cover;
  z-index: -1;
}

.ots-testimonial-card {
  /* min-height: 300px; */
  transition: all 0.3s ease;
}

.ots-testimonial-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ots-swiper-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ots-swiper-prev,
.ots-swiper-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.ots-swiper-prev::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
  top: 10px;
  left: 18px;
}

.ots-swiper-next::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
  top: 10px;
  left: 12px;
}

.ots-swiper-prev::after {
  transform: rotate(135deg);
  /* points left */
}

.ots-swiper-next::after {
  transform: rotate(-45deg);
  /* points right */
}

/*Form Section*/
#enq-fm-section {
  font-family: "Poppins", sans-serif;
  position: relative;
}

.enq-fm-input {
  background: transparent;
  border: 1px solid #00ff88;
  color: black;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.enq-fm-input::placeholder {
  color: #666;
}

.enq-fm-input:focus {
  border-color: #00ffaa;
  background: #f0f0f0;
  color: #000;
  box-shadow: none;
}

.calendar-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
  padding: 0 0.5rem;
}

.nav-btn:hover {
  color: #0077b5;
}

/*Footer*/
.ft-pp-footer {
  font-family: "Poppins", sans-serif;
  position: relative;
  /* background-color: #007f30; */
  overflow: hidden;
  z-index: 1;
}

.ft-pp-footer-bg {
  background: url("../images/footer-bg.png") no-repeat center top/cover;
  opacity: 1;
  height: 100%;
}

.ft-pp-footer-logo {
  max-width: 300px;
  height: auto;
}

.ft-pp-footer-links li {
  margin-bottom: 0.4rem;
}

.ft-pp-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.ft-pp-footer-links a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.ft-pp-footer-icon {
  color: white;
  font-size: 1.3rem;
  transition: 0.3s;
}

.ft-pp-footer-icon:hover {
  color: #ffc107;
  transform: scale(1.1);
}

.ft-pp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.ft-pp-popup-content {
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  position: relative;
  animation: ft-pp-popup-fade 0.4s ease;
}

.ft-pp-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff9900;
  border: none;
  color: white;
  font-size: 20px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 1;
  cursor: pointer;
}

@keyframes ft-pp-popup-fade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mt-40 {
  margin-top: 40px;
}

@media (max-width: 576px) {
  .ft-pp-popup-content {
    padding: 1rem !important;
  }

  .ft-pp-popup-close {
    top: 8px;
    right: 8px;
  }
}

/*Banner Section*/
.banner-section {
  height: 75vh;
  min-height: 210px;
  overflow: hidden;
  position: relative;
}

.banner-img {
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-section .text-content {
  max-width: 850px;
  padding: 1rem;
}

.banner-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 768px) {
  .banner-section {
    height: 24vh;
    padding: 2rem 1rem;
  }

  .banner-section .text-content {
    padding-top: 3rem;
  }
}

/*Bred Crumbs*/
.breadcrumbs {
  padding-top: 40px;
  padding-bottom: 20px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: #999;
  padding: 0 0.5rem;
}

.breadcrumb-item a {
  color: #000;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/*about us page - about section*/
#ab-sec-about {
  font-family: "Poppins", sans-serif;
  background: url("assets/images/about/bg-ab-imm.svg") no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.ab-sec-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.ab-sec-title-cv {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

.ab-sec-text {
  font-size: 0.95rem;
}

.ab-sec-img-wrapper {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 8px;
}

.ab-sec-img {
  border-radius: inherit;
  width: 100%;
  display: block;
}

.ab-sec-core-circle {
  width: 64px;
  height: 64px;
  background-color: #ffc466;
  border-radius: 50%;
}

.ab-sec-core-circle {
  width: 64px;
  height: 64px;
  background-color: #ffc466;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {

  .ab-sec-title,
  .ab-sec-title-cv {
    font-size: 1.5rem;
  }

  .ab-sec-img-wrapper {
    border-radius: 0 0 80px 0;
    margin-bottom: 2rem;
  }

  .ab-sec-core-circle {
    width: 50px;
    height: 50px;
  }
}

/*Awards Section*/
#awd-sec-awards {
  font-family: "Poppins", sans-serif;
}

.awd-sec-carousel {
  margin-top: 2rem;
}

.awd-sec-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.awd-sec-swiper .swiper-slide img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

/*Management Section*/
.mgm-sec-nav-tabs .nav-link {
  color: #333;
  font-weight: 500;
  border: none;
  margin: 0 4px;
}

.mgm-sec-nav-tabs .nav-link.active {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #000;
}

.mgm-sec-swiper .card {
  border-radius: 12px;
  overflow: hidden;
}

.mgm-sec-swiper .card-img-top {
  height: 220px;
  object-fit: cover;
}

.mgm-sec-bg {
  background: url("../images/about/bg-ab-imm.svg") no-repeat center center / cover;
  opacity: 1;
  z-index: -1;
}

/*Admissions page About Section*/
/* Section heading */
#adm-sec-info {
  position: relative;
  z-index: 1;
}

#adm-sec-info h2 {
  font-size: 1.75rem;
}

.student-img-wrapper {
  width: 360px;
  height: 460px;
  position: relative;
  z-index: 1;
}

.student-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 180px 180px 0 0;
}

.video-thumb-box {
  width: 140px;
  height: 140px;
  left: -30px;
  bottom: -30px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #6c757d;
  z-index: 2;
  position: absolute;
}

.stripe-img {
  width: 60px;
  height: auto;
  z-index: 0;
}

@media (max-width: 767.98px) {
  #adm-sec-info h2 {
    font-size: 1.25rem;
  }

  .student-img-wrapper {
    width: 240px !important;
    height: 240px !important;
  }

  .video-thumb-box {
    width: 100px !important;
    height: 100px !important;
    left: 50% !important;
    bottom: 0 !important;
    transform: translate(-50%, 50%) !important;
  }
}

/*Curriculum CSS*/
#adm-cur-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center top;
  background-size: cover;
}

.adm-cur-title {
  font-size: 2rem;
}

.adm-cur-subtext {
  color: #ddd;
}

.adm-cur-image {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.adm-cur-image:hover {
  transform: scale(1.05);
}

.adm-cur-btn {
  background-color: #bcfbba;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 0.375rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 1.25rem;
}

.adm-cur-btn:hover {
  background-color: #aef7ab;
  color: #000;
}

@media (max-width: 991.98px) {
  .adm-cur-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
  }

  #adm-cur-section .row>div {
    text-align: center;
  }

  .adm-cur-btn {
    margin: 1rem auto 0;
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.25rem 1.25rem;
  }

  .adm-cur-title {
    font-size: 1.5rem;
  }
}

/*Facilities Section*/
#fac-sec-wrapper {
  background: url("assets/images/facilities/sec-bg.svg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.fac-sec-card {
  background: #e4f3ff;
  max-width: 300px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.fac-sec-img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.fac-sec-popup-btn {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background-color: #153c3e;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.fac-sec-popup-btn:hover {
  background-color: #1f5052;
}

@media (max-width: 767.98px) {
  .swiper.fac-sec-swiper .swiper-slide {
    width: 85% !important;
  }

  .fac-sec-img {
    height: 160px;
  }

  .fac-sec-card {
    max-width: 260px;
  }
}

.modal-content {
  border-radius: 16px;
}

.popup-tab {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  background: white;
  color: #333;
  transition: all 0.2s ease-in-out;
}

.popup-tab.active {
  background: #e4f3ff;
  border-color: #0066cc;
  color: #0066cc;
}

.popup-tab-content {
  margin-top: 10px;
}

.popup-tab-content.d-none {
  display: none !important;
}

.popup-banner img {
  max-height: 250px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .popup-tab {
    flex: 1 1 100%;
    text-align: center;
  }
}

/*Faq Section*/
#faq-sec-wrapper {
  background: url("../images/admissions/faq-bg.svg") no-repeat center center;
  background-size: cover;
}

.faq-sec-accordion .accordion-button {
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.faq-sec-accordion .accordion-body {
  font-size: 14px;
  color: #333;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .row.g-4 {
    flex-direction: column;
  }
}

/* Scholarship Styles */
#adm-sch-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center top;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  width: 100% !important;
}

.adm-sch-heading {
  font-size: 2.25rem;
}

.adm-sch-btn {
  background-color: #bcfbba;
  color: #000;
  transition: all 0.3s ease;
}

.adm-sch-btn:hover {
  background-color: #a0eaa4;
}

.adm-sch-img-wrapper {
  width: 300px;
  height: 380px;
  position: relative;
}

.adm-sch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 160px 160px 0 0;
  position: relative;
  z-index: 2;
}

.adm-sch-arch-frame {
  background: url("assets/images/scholarship/arch-frame.svg") no-repeat center;
  background-size: contain;
  width: 320px;
  height: 420px;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .adm-sch-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  #adm-sch-section {
    text-align: center;
  }

  .adm-sch-btn {
    display: inline-block;
    margin: 1rem auto 0;
  }

  .adm-sch-img-wrapper {
    width: 250px;
    height: 300px;
    margin: 0 auto;
  }

  .adm-sch-arch-frame {
    width: 270px;
    height: 330px;
  }
}

/*CBSE Intro*/
#cbse-about-section {
  background: url("../images/cbse/cbse-bg-ab.svg") no-repeat center;
  background-size: cover;
  background-attachment: scroll;
  z-index: 1;
}

#cbse-about-section h2 {
  font-size: 2.5rem;
  line-height: 1.4;
}

#cbse-about-section p {
  font-size: 1rem;
  color: #333;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.3s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  #cbse-about-section {
    background-size: contain;
    background-position: top center;
    padding-top: 3rem;
  }

  #cbse-about-section h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  #cbse-about-section p {
    font-size: 0.95rem;
    padding: 0 1rem;
    text-align: left;
  }

  #cbse-about-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #cbse-about-section img {
    width: 20px;
  }
}

/* CBSE-Our Learning */
#cbse-learning-wrapper {
  background: url("assets/images/bg-cbse.svg") no-repeat center center;
  background-size: cover;
}

.cbse-learning-card {
  background: #e4f3ff;
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 16px;
}

.cbse-learning-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}

.cbse-learning-popup-btn {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background-color: #153c3e;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.cbse-learning-popup-btn:hover {
  background-color: #1f5052;
}

@media (max-width: 767.98px) {
  .cbse-learning-img {
    height: 160px;
  }
}

/* CBSE Page */
#cbse-vm-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center;
  background-size: cover;
  /* background-color: #003975; */
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  position: relative;
  z-index: 1;
}

#cbse-vm-section h5 {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

#cbse-vm-section p {
  font-size: 0.9rem;
  color: #fff;
}

.cbse-vm-title {
  color: #bcfbba;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
  #cbse-vm-section {
    clip-path: none;
    text-align: center;
  }

  #cbse-vm-section .col-md-6 {
    text-align: center !important;
  }

  #cbse-vm-section img {
    margin: 1rem auto;
    display: block;
  }
}

/*CIE Learing */
#cie-intro-section {
  background: url("../images/about/bg-ab-imm.svg") no-repeat center top;
  background-size: cover;
}

.cie-intro-desc {
  /* max-width: 860px; */
  font-size: 1rem;
}

.cie-intro-left-icon {
  top: 20%;
  left: 0;
  width: 100px;
  z-index: 1;
}

.cie-intro-graphic {
  max-width: 800px;
}

@media (max-width: 767.98px) {
  .cie-intro-desc {
    font-size: 0.95rem;
    text-align: center;
  }

  .cie-intro-graphic {
    max-width: 100%;
  }
}

/*CIE Learing 2 */
#cie-intro2-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 1rem;
}

.cie-intro2-title {
  color: #bcfbba;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {

  .cie-intro2-title,
  #cie-intro2-section p {
    text-align: center !important;
  }

  .row.justify-content-end {
    justify-content: center !important;
  }
}

#cie-intro2-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 1rem;
}

/*Pathway and Benefits */
#cie-pathway-benefits {
  background: url("../images/cambridge/pathway-bg.svg") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.cie-highlight {
  color: #153c3e;
}

.cie-pathway-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cie-icon {
  width: 60px;
  z-index: 1;
}

.cie-icon-1 {
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}

.cie-icon-2 {
  top: 10%;
  left: 50px;
}

@media (max-width: 767.98px) {
  #cie-pathway-benefits {
    text-align: center;
    padding: 2rem 1rem;
  }

  .cie-pathway-img {
    margin-top: 1.5rem;
  }
}

/* CIE Why CIE */
#cie-why-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

#cie-why-section h2 {
  font-size: 2rem;
}

.cie-why-img-wrapper img {
  max-width: 80%;
  height: auto;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  #cie-why-section h2 {
    font-size: 1.5rem;
  }

  .cie-why-img-wrapper {
    margin-top: 2rem;
  }
}

/*CIE Contact Section */
#cie-contact-section {
  background-color: #fff;
}

.cie-contact-icon {
  background-color: #bcfbba;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: #1b4c8f;
}

.cie-contact-mail {
  color: #1b4c8f;
  font-size: 1rem;
}

.cie-contact-mail:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .cie-contact-mail {
    font-size: 0.95rem;
    word-break: break-all;
  }
}

/*careers Page */
#careers-section {
  background: url("../images/about/bg-ab-imm.svg") no-repeat center top;
  background-size: cover;
  padding: 60px 0;
}

.career-card {
  background: #e5f0ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.career-card h6 {
  font-weight: 600;
  color: #155b2e;
}

.career-card p strong {
  color: #014f8d;
}

.btn-apply {
  background-color: #155b2e;
  color: white;
  border-radius: 50px;
  margin-top: 1rem;
}

.btn-apply:hover {
  background-color: #00422f;
  color: white;
}

.modal-content {
  border-radius: 16px;
}

@media (max-width: 767.98px) {
  .career-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .career-card .btn-apply {
    align-self: center;
    width: 100%;
    margin-top: 1rem;
  }

  .filter-inputs select,
  .filter-inputs input {
    margin-bottom: 10px;
  }

  .modal-dialog {
    max-width: 95%;
    margin: 1.75rem auto;
  }

  #careers-section {
    padding: 40px 15px;
    background-size: contain;
  }

  .career-card h6 {
    font-size: 1rem;
  }

  .career-card p {
    font-size: 0.875rem;
  }
}

/*Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img,
.gallery-card iframe {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.95rem;
}

.gallery-card:hover .gallery-title-overlay {
  opacity: 1;
}

.gallery-card iframe {
  border: none;
}

@media (max-width: 767.98px) {
  .gallery-title-overlay {
    font-size: 0.85rem;
  }
}

/*Sports Aminities*/
#sports-ami-section {
  background: url("../images/our-team/our-team-bg.png") no-repeat center center;
  background-size: cover;
}

#sports-ami-section .container {
  margin-bottom: 6rem !important;
}

.sports-ami-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.sports-ami-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.sports-ami-card:hover img {
  transform: scale(1.05);
}

.sports-ami-title-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sports-ami-card:hover .sports-ami-title-overlay {
  opacity: 1;
}

/* Fix column spacing */
#sports-ami-grid>.col-6 {
  padding-left: 8px;
  padding-right: 8px;
}

#sports-ami-grid {
  margin-left: -8px;
  margin-right: -8px;
}

@media (max-width: 575.98px) {
  .sports-ami-card img {
    height: 140px;
  }
}

/* Sports Colab */
#sports-colab-section {
  background: url("../images/about/bg-ab-imm.svg") no-repeat center center;
  background-size: cover;
}

.sports-colab-block img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.spodta-colab-title {
  color: #1b4c8f;
}

@media (max-width: 767.98px) {
  .sports-colab-block .row {
    flex-direction: column !important;
    text-align: center;
  }

  .sports-colab-block img {
    margin-bottom: 1rem;
  }
}

/*Gallery Backup Page*/
.backup-gal-table {
  position: relative;
}

.backup-gal-header h2 {
  font-size: 2rem;
  color: #014f8d;
}

.backup-gal-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.backup-gal-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.backup-gal-table th,
.backup-gal-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.backup-gal-table thead {
  background-color: #014f8d;
  color: #fff;
}

.backup-gal-table tbody tr:hover {
  background-color: #eaf3ff;
  cursor: pointer;
}

.backup-gal-link {
  background: #eaf2ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
  color: #014f8d;
  text-decoration: none;
  display: inline-block;
}

.backup-gal-link:hover {
  background: #d3e3ff;
}

.backup-gal-pagination button {
  border: none;
  background: #eaf2ff;
  color: #014f8d;
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.backup-gal-pagination button.active {
  background: #014f8d;
  color: #fff;
}

.gallery-main-header h2 {
  font-size: 2.2rem;
  color: #0d3b66;
}

.gallery-main-header p {
  font-size: 0.95rem;
  color: #6c757d;
}

.gallery-main-wrapper {
  background: #ffffff;
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: #f1f7ff;
}

.table-dark th {
  background-color: #014f8d;
  color: #ffffff;
  font-weight: 600;
}

#gallery-main-table-body td {
  padding: 14px;
  vertical-align: middle;
}

#gallery-main-table-body td a.btn {
  padding: 5px 14px;
  font-size: 0.875rem;
  border-radius: 30px;
  font-weight: 500;
}

#gallery-main-table-body td a.btn-primary {
  background-color: #014f8d;
  border: none;
  color: #fff;
}

#gallery-main-table-body td a.btn-primary:hover {
  background-color: #013d6b;
}

/* Dropdown Styling */
.form-select {
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .gallery-main-header h2 {
    font-size: 1.6rem;
  }
}

/*MPD Page*/
/* Wrapper Styling */
.mandatory-public-disc-page-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Table Header */
.mandatory-public-disc-page-wrapper .table thead {
  background-color: #014f8d;
  color: #fff;
  font-weight: 600;
}

/* Hover */
.mandatory-public-disc-page-wrapper .table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Table Cells */
#mandatory-public-disc-page-body td {
  padding: 16px;
  vertical-align: middle;
  font-size: 1rem;
  animation: fadeInRow 0.5s ease-in;
}

/* Fade-in Animation */
@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Icon */
#mandatory-public-disc-page-body td a.btn {
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(1, 79, 141, 0.2);
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#mandatory-public-disc-page-body td a.btn-primary {
  background-color: #014f8d;
  border: none;
  color: #fff;
}

#mandatory-public-disc-page-body td a.btn-primary:hover {
  background-color: #013d6b;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 767px) {
  .mandatory-public-disc-page-wrapper {
    overflow-x: auto;
  }
}

/*Life at School Page*/
.lifeAtPallavi-bg {
  background: url("assets/images/about/bg-ab-imm.svg") no-repeat center center;
  background-size: cover;
}

.lifeAtPallavi-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.lifeAtPallavi-subheading {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.lifeAtPallavi-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.lifeAtPallavi-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.lifeAtPallavi-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.lifeAtPallavi-card p {
  padding: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lifeAtPallavi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
}

.lifeAtPallavi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
}

.lifeAtPallavi-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.lifeAtPallavi-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.lifeAtPallavi-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.lifeAtPallavi-box:hover .lifeAtPallavi-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Collage layout */
.lifeAtPallavi-box1 {
  grid-row: span 2 / span 2;
}

.lifeAtPallavi-box2 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 1;
  grid-row-start: 3;
}

.lifeAtPallavi-box3 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.lifeAtPallavi-box4 {
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 1;
}

.lifeAtPallavi-box5 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 4;
}

.lifeAtPallavi-box6 {
  grid-row: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}

.lifeAtPallavi-box7 {
  grid-row: span 3 / span 3;
  grid-column-start: 4;
  grid-row-start: 3;
}

.lifeAtPallavi-box8 {
  grid-row: span 3 / span 3;
  grid-column-start: 5;
  grid-row-start: 1;
}

.lifeAtPallavi-box9 {
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 4;
}

/* Mobile Grid (2 per row) */
.lifeAtPallavi-mobile-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 16px;
}

.lifeAtPallavi-mobile-box {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lifeAtPallavi-mobile-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.lifeAtPallavi-mobile-box p {
  margin: 0;
  padding: 10px 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #000;
}

@media (min-width: 768px) {
  #lifeAtPallavi-mobile-grid {
    display: none !important;
  }
}

/* Background image */
.life-at-plv-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/bg-life-at-plv.svg") no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

/* Main wrapper */
.life-at-plv-wrapper {
  position: relative;
  z-index: 1;
}

/* Video box */
.life-at-plv-video-box {
  background-color: #ccc;
  height: 280px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("assets/images/lifepallavi/video-bg.png");
  background-size: cover;
  background-position: center;
}

.life-at-plv-play {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.life-at-plv-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.life-at-plv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.life-at-plv-video-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* Image styling */
.life-at-plv-image-box img {
  border-radius: 12px;
  width: 100%;
  display: block;
}

/* Text styles */
.life-at-plv-tag {
  font-weight: 300;
  color: #000000;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.life-at-plv-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.life-at-plv-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767.98px) {
  .life-at-plv-video-box {
    height: 200px;
  }

  .life-at-plv-play {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .life-at-plv-title {
    font-size: 1.4rem;
  }

  .life-at-plv-desc {
    font-size: 0.95rem;
  }
}

/*News Letters*/
  /* Newsletter Table Styling */
  .news-ltr-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  /* Header */
  .news-ltr-table thead tr th {
    background-color: #004080;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
  }

  /* Rounded top */
  .news-ltr-table thead tr th:first-child {
    border-top-left-radius: 12px;
  }
  .news-ltr-table thead tr th:last-child {
    border-top-right-radius: 12px;
  }

  /* Rows */
  .news-ltr-table tbody tr td {
    padding: 14px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
  }

  /* Hover effect */
  .news-ltr-table tbody tr:hover td {
    background-color: #f5f5f5;
  }

  /* View Button */
  .news-ltr-table .btn-primary {
    background-color: #004080;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    transition: background 0.2s ease;
  }

  .news-ltr-table .btn-primary:hover {
    background-color: #002f5e;
  }

/*Scroll to Top Button */
#ft-pp-scrollTop.ft-pp-scroll-top-btn {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 30%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(25, 135, 84, 0.09), 0 1.5px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  cursor: pointer;
  outline: none;
}
#ft-pp-scrollTop.ft-pp-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#ft-pp-scrollTop svg {
  display: block;
}
#ft-pp-scrollTop:hover {
  background: #004b8d;
  box-shadow: 0 8px 32px rgba(25,135,84,0.15);
}
#ft-pp-scrollTop:hover path,
#ft-pp-scrollTop:hover circle {
  stroke: #fff;
  fill: #004b8d;
}
#ft-pp-scrollTop:active {
  transform: scale(0.97);
}

