/* fonts */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f9f7f3; /* softer cream background */
  overflow-x: hidden;
}

:root {
  --cream: #f9f7f3;
  --purple: #5b2e90;
  --lavender: #9c8ddc;
  --orange: #e79b34;
  --sky-blue: #3bc9db;
  --white: #ffffff;
  --green: #66bb6a;
  --beige: #d8c9a8;

  --primary-color: var(--purple);
  --secondary-color: var(--orange);
  --accent-color: var(--lavender);
}

html {
  scroll-padding: 200px;
  overflow-x: hidden;
}

/* -------------------- Links & Navbar -------------------- */

a {
  text-decoration: none !important;
}

.navbar .navbar-brand img {
  width: 130px;
}

.nav-top {
  position: relative;
  top: 10px;
}

.banner-carousel .item {
  height: 85vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.nav-top-only-mobile {
  display: none;
}

.banner-slide-1 {
  background-image: url("../images/banners/slider-1.webp");
  display: flex;
  align-items: center;
}

.banner-slide-2 {
  background-image: url("../images/banners/slider-2.webp");
  display: flex;
  align-items: center;
}

.banner-slide-3 {
  background-image: url("../images/banners/slider-3.webp");
  display: flex;
  align-items: center;
}

.banner-slide-4 {
  background-image: url("../images/banners/slider-4.webp");
  display: flex;
  align-items: center;
}

.apply-now-banner .ii {
    text-decoration: underline !important;
    cursor: pointer !important;
}

.nav-top-only-mobile {
  display: none;
}

.affiliation {
  text-transform: uppercase;
  color: #000;
}

.banner-carousel .owl-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.banner-carousel .owl-dots .owl-dot.active span {
  background: var(--orange) !important;
}

.banner-carousel {
  position: relative;
}

@media screen and (min-width: 992px) {
  .navbar {
    line-height: 3rem;
    .dropdown-menu {
      line-height: initial;
    }
  }

  .dropdown {
    .dropdown-menu {
      display: none;
    }
  }
  .dropdown,
  .dropend {
    &:hover {
      & > .dropdown-menu {
        display: block;
      }
    }
  }
  .dropdown {
    &:hover {
      & > .dropdown-menu {
        margin-top: -0.5rem;
      }
    }
  }
  .dropend {
    &:hover {
      & > .dropdown-menu {
        position: absolute;
        top: -0.5rem;
        left: 100%;
        margin-left: 0;
      }
    }
  }
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-right: 11px;
  font-size: 14px;
  text-transform: uppercase;
}
.header .dropdown-item {
  font-size: 14px;
}

.header .nav-link:hover,
.header .nav-link:focus {
  color: var(--secondary-color) !important;
}

.header .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.header .dropdown-item {
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
  font-size: 12px;
  text-transform: uppercase;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
  background-color: var(--green);
  color: var(--white);
}

/* -------------------- Buttons -------------------- */

.btn-book {
  padding: 10px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-book:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* -------------------- Icons -------------------- */

.fa-facebook {
  color: #3b5998;
}

.fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-top a i {
  font-size: 20px;
}

.help-desk {
  color: #333;
  font-weight: 400;
}

/* -------------------- Banner -------------------- */

.banner-title,
.banner-sub-text {
  color: var(--white);
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  text-transform: uppercase;
}

.title-small {
  font-size: 35px;
}

.banner-sub-text {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease-out;
}

.apply-now-banner {
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.ii {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-top: 10px;
  position: relative;
  top: 10px;
}

.apply-now-banner span a {
  color: var(--orange);
}

/* -------------------- Marquee -------------------- */

.news-container {
  overflow: hidden;
  position: relative;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 155, 52, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(231, 155, 52, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 155, 52, 0);
  }
}

.news-scroll {
  display: flex;
  padding-bottom: 10px;
}

.news-scroll-content {
  display: flex;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.news-scroll:hover .news-scroll-content {
  animation-play-state: paused;
}

.news-item {
  margin-right: 50px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 12px;
}

.news-item:hover {
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.news-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  margin-right: 10px;
}

.badge-course {
  background-color: var(--sky-blue);
  color: var(--white);
}

.badge-exam {
  background-color: var(--secondary-color);
  color: var(--white);
}

.badge-update {
  background-color: var(--green);
  color: var(--white);
}

.badge-workshop {
  background-color: var(--purple);
  color: var(--white);
}

.news-date {
  font-size: 0.8rem;
  color: #555;
  margin-left: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------- */
/* ---------------Aboutus-section------------- */
/* ------------------------------------------ */

.ves {
  padding-bottom: 50px;
}

.ves .tagline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  padding-top: 80px;
}

.ves .mission-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  font-weight: 400;
}

.ves .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.ves .feature-item {
  display: flex;
  align-items: flex-start;
}

.ves .feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 15px rgba(25, 118, 210, 0.2);
  transition: all 0.3s ease;
}

.ves .feature-item:nth-child(2) .feature-icon {
  background-color: var(--purple);
}

.ves .feature-item:nth-child(3) .feature-icon {
  background-color: var(--lavender);
}

.ves .feature-item:nth-child(4) .feature-icon {
  background-color: var(--green);
}

.ves .feature-item:hover .feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.ves .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a6d;
  margin-bottom: 5px;
}

.ves .feature-content p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.ves .btn-knw-more {
  background: #666;
  padding: 8px 20px;
  color: #fff;
}

.content-container {
  position: relative;
  top: 20px;
}

.features-grid .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  text-transform: none; /* ensures lowercase remains lowercase */
}

.features-grid .feature-content .highlight-i {
  font-size: 1.8rem; /* slightly larger */
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  margin-right: 1px;
}

.lw-i {
  text-transform: lowercase !important;
  font-style: normal;
  font-size: 16px;
}

.lw-i-2 {
  text-transform: lowercase !important;
  font-style: normal;
}

.know-more {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.know-more i {
  transition: transform 0.3s ease;
}

.know-more:hover {
  color: var(--orange);
}

.know-more:hover i {
  transform: translateX(4px);
}

/* ============================================ */
/*           Services + Stats Styles            */
/* ============================================ */

.services-section {
  background-color: var(--cream);
}

/* ---- Text and Content ---- */
.services-section .section-topper {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.services-section .section-title {
  color: #1a3a6d;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.services-section .section-text {
  color: #4e4b66;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ---- Button ---- */
.services-section .btn-solid {
  background-color: var(--orange);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.services-section .btn-solid:hover {
  background-color: var(--purple);
  color: var(--white);
}

/* ---- Image Group ---- */
.services-section .services-image-group {
  position: relative;
}

.services-section .main-image {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.services-section .image-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 260px;
  opacity: 0.9;
}

.services-section .box-icon {
  width: 50px;
  margin-bottom: 0.75rem;
}

.services-section .box-number {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.services-section .box-text {
  font-size: 0.95rem;
  color: #4e4b66;
}

/* ---- Stats ---- */
.services-section .stats-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-section .stat-item {
  flex: 1 1 45%;
}

.services-section .stat-icon {
  width: 48px;
  margin-right: 0.75rem;
}

.services-section .stat-number {
  color: var(--purple);
  font-weight: 700;
  font-size: 1.4rem;
}

.services-section .stat-text {
  font-size: 0.95rem;
  color: #4e4b66;
  margin: 0;
}

/* ---- Service Cards ---- */
.services-section-ves .service-card {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.services-section-ves .service-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-section-ves .card-body {
  padding: 2rem;
}

.services-section-ves .card-title {
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.services-section-ves .card-text {
  color: #4e4b66;
  margin-bottom: 1.5rem;
}

.services-section-ves .learn-more {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-section-ves .learn-more:hover {
  color: var(--purple);
  border-color: var(--purple);
}

/* Image styling */
.card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 200px; /* Adjust this to control image height */
  object-fit: cover;
  display: block;
}

.all-logo-clrs {
  background-color: var(--cream);
  padding-top: 80px;
  padding-bottom: 40px;
}

.all-logo-clrs .section-title h2 {
  font-weight: 700;
  color: var(--purple);
}

.all-logo-clrs .section-title {
  margin-bottom: 1.5rem;
}

.all-logo-clrs .section-title p {
  color: #555;
  font-size: 1rem;
}

.all-clrs-box {
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.all-clrs-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.all-clrs-box .img-box {
  position: relative;
  width: 100%;
  height: 305px;
  overflow: hidden;
  border-radius: 15px;
}

.all-clrs-box .img-box img {
  width: 100%;
  object-fit: cover;
}

.all-clrs-box h3 {
  font-size: 1.3rem;
  margin-top: 15px;
  color: var(--purple);
  font-weight: 600;
}

.all-clrs-box p {
  font-size: 0.95rem;
  color: #444;
  margin: 10px 0 15px;
  min-height: 60px;
}

.all-clrs-box .know-more {
  color: var(--purple);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.all-clrs-box .know-more:hover {
  color: var(--orange);
}

/* Overlay Color Effects for Each Box */
.all-clrs-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.all-clrs-box:hover::before {
  opacity: 0.25;
}

.pre-primary::before {
  background-color: var(--sky-blue);
}

.primary::before {
  background-color: var(--lavender);
}

.middle::before {
  background-color: var(--orange);
}

.high::before {
  background-color: var(--green);
}

/* Ensure text stays above overlay */
.all-clrs-box > * {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------- */
/* ---------------Infrastracture---------- */
/* -------------------------------------- */

/* ====== Gallery Infrastructure Section ====== */
.gallery-infra {
  background-color: var(--cream);
  padding: 40px 0;
}

.gallery-infra .facility-text {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: var(--purple);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
}

.gallery-infra .infrastructure-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: var(--white);
  height: 300px;
}

.gallery-infra .infrastructure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gallery-infra .infrastructure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-infra .infrastructure-card:hover img {
  transform: scale(1.1);
}

/* Card content container */
.gallery-infra .card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title section - always visible */
.gallery-infra .title-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  transition: all 0.4s ease;
}

.gallery-infra .title-section h3 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Overlay styling - initially hidden */
.gallery-infra .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 40%);
  color: var(--white);
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-infra .infrastructure-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-infra .overlay p {
  font-size: 0.95rem;
  color: #f1f1f1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.gallery-infra .overlay a {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.gallery-infra .overlay a:hover {
  background-color: var(--green);
}

.gallery-infra .btn_all {
  display: inline-block;
  background-color: var(--purple);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-infra .btn_all:hover {
  background-color: var(--orange);
  transform: scale(1.05);
}

/* --------------------------------------------*/
/* ---------------Events--------------------- */
/* ----------------------------------------- */

.events-activities {
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}

/* Background Pattern */
.events-activities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='4' fill='%235b2e90' fill-opacity='0.10'/%3E%3Ccircle cx='180' cy='60' r='6' fill='%23e79b34' fill-opacity='0.12'/%3E%3Ccircle cx='140' cy='160' r='5' fill='%235b2e90' fill-opacity='0.10'/%3E%3Ccircle cx='60' cy='120' r='7' fill='%23e79b34' fill-opacity='0.10'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.25;
  z-index: -1;
}

/* Section Description */
.events-activities h3 {
  color: var(--purple);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.events-activities p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Carousel Container */
.events-activities .events-carousel-container {
  margin-top: 3rem;
}

/* Carousel Items */
.events-activities .events-carousel .item {
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

.events-activities .events-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Gradient Overlay */
.events-activities .events-carousel .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 20%,
    rgba(10, 10, 30, 0.6) 100%
  );
  z-index: 1;
}

/* Center Card Highlight */
.owl-item.center .item {
  transform: scale(1.12);
  z-index: 5;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

/* Side Cards */
.events-activities .owl-item:not(.center) .item {
  transform: scale(0.88);
  opacity: 0.85;
}

/* Hover Effect */
.events-activities .events-carousel .item:hover img {
  transform: scale(1.08);
}

/* Owl Carousel Dots */
.events-activities .owl-dots {
  margin-top: 2rem !important;
  text-align: center;
}

.events-activities .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.events-activities .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #d6d6d6;
  display: block;
  transition: opacity 200ms ease;
  border-radius: 50%;
}

.events-activities .owl-dot.active span {
  background: var(--purple);
}

.events-activities .owl-dot:hover span {
  background: var(--orange);
}

/* ----------------------------------------- */

.demo-testimonal {
  padding: 60px 0;
}

.demo-testimonal .testimonial {
  padding: 20px;
  background: var(--white);
  border-radius: 10px;

  /* Equal height fix */
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.demo-testimonal .pic {
  width: 122px;
  height: 122px;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
}

.demo-testimonal .pic:before,
.demo-testimonal .pic:after {
  content: "";
  display: block;
  height: 50%;
  width: 50%;
  position: absolute;
}

.demo-testimonal .pic:before {
  bottom: -10%;
  left: -10%;
  border-bottom: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.demo-testimonal .pic:after {
  top: -10%;
  right: -10%;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

.demo-testimonal .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Alignment Fixed */
.testimonial-content {
  flex: 1;
  position: relative;
  z-index: 5;
}

.testimonial-content:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 50px;
  color: var(--beige);
  z-index: 0;
  opacity: 0.3;
}

.testimonial-title {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 5px;
}

.post {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 5px;
  padding-left: 5px;
}

.description {
  font-size: 14px;
  color: var(--lavender);
  line-height: 22px;
  font-style: italic;
  margin-top: 10px;
}

.demo-testimonal .testimonals-title p {
  font-size: 20px;
  text-align: center;
}

.demo-testimonal .t-1 {
  color: var(--purple);
  font-size: 25px;
}

.demo-testimonal .t-2 {
  color: var(--orange);
  font-size: 25px;
}

.demo-testimonal .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.demo-testimonal .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--beige);
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

.demo-testimonal .owl-dot.active span,
.demo-testimonal .owl-dot:hover span {
  background: var(--orange);
}

/* ----------------------------------------- */
/* ------------------FAQ------------------- */
/* ---------------------------------------- */

.faq {
  padding: 50px 0;
}

.faq h2 {
  font-weight: 700;
  color: var(--purple);
}

/* Accordion Item */
.accordion-item {
  margin-bottom: 15px;
  background: transparent;
  border-radius: 12px;
  border: 1px solid var(--purple); /* Clean thin border */
}

/* Remove Bootstrap focus, hover borders, blue outline */
.accordion-button:focus,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Accordion Button */
.accordion-button {
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none !important;
  box-shadow: none !important;
}

/* Open State */
.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--purple) !important;
  box-shadow: none !important;
  border: none !important;
}

/* Body */
.accordion-body {
  background: transparent;
  padding: 0 20px 15px;
  font-size: 15px;
  color: var(--purple);
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
  display: none !important;
}

/* Icon Rotation */
.accordion-button.collapsed i.faq-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 14px;
}

.accordion-button i.faq-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i.faq-icon {
  transform: rotate(-90deg);
  font-size: 14px;
  color: var(--orange);
}

/* ---------------------------------------- */
/* ------------Footer--------------------- */
/* -------------------------------------- */

.vasishta-footer {
  background: #3b1660;
  color: #fff;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}

/* Newsletter Section */
.vasishta-footer .newsletter-section {
  background-color: rgba(242, 64, 128, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
}

.vasishta-footer .newsletter-section h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
}

.vasishta-footer .newsletter-section p {
  color: #f9f9f9;
  font-size: 15px;
}

.vasishta-footer .contact-info span {
  font-size: 15px;
  color: #fff;
}

.vasishta-footer .contact-info i {
  margin-right: 6px;
  color: #ffd700;
}

/* Footer Links */
.vasishta-footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.vasishta-footer ul {
  padding: 0;
}

.vasishta-footer ul li {
  margin-bottom: 10px;
}

.vasishta-footer a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 6px;
}

.vasishta-footer a:hover {
  color: #fff;
}

/* Contact Section */
.contactus-footer-section p {
  margin-bottom: 6px;
  font-size: 15px;
  color: #dcdcdc;
}

.contactus-footer-section i {
  margin-right: 8px;
  color: #ffd700;
}

/* Social Icons */
.social-icon-footer {
  margin-top: 15px;
}

.social-icon-footer a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.social-icon-footer a:hover {
  background: #f24080;
  border-color: #f24080;
  color: #fff;
}

/* Footer Bottom */
.vasishta-footer .footer-bottom {
  border-top: 1px solid #ffffff33;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.vasishta-footer .policy-links a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
  font-weight: 500;
}

.vasishta-footer .policy-links a:hover {
  color: #fff;
}

.vasishta-footer .back-to-top {
  font-weight: 600;
}

.vasishta-footer .back-to-top:hover {
  color: #ffd700;
}

/* Responsive */
@media (max-width: 767px) {
  .vasishta-footer .footer-bottom {
    text-align: center;
  }

  .vasishta-footer .policy-links {
    margin-top: 10px;
  }

  .social-icon-footer a {
    margin-right: 5px;
  }
}

/* -------------------------------------------- */
/* --------------Aboutus-page----------------- */
/* ------------------------------------------ */

.aboutus {
  padding: 80px 0px;
}

.aboutus .heading-aboutus h1 {
  font-size: 30px;
  color: var(--purple);
  font-weight: 500;
}

/* Auto Slide Container */
.aboutus .imags-auto-slide {
  position: relative;
  width: 400px;
  height: 300px;
}

.aboutus .imags-auto-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInOut 16s infinite;
}

.aboutus .imags-auto-slide img:nth-child(1) {
  animation-delay: 0s;
}
.aboutus .imags-auto-slide img:nth-child(2) {
  animation-delay: 4s;
}
.aboutus .imags-auto-slide img:nth-child(3) {
  animation-delay: 8s;
}
.aboutus .imags-auto-slide img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    z-index: 0;
  }
  5% {
    opacity: 1;
    z-index: 1;
  }
  25% {
    opacity: 1;
    z-index: 1;
  }
  30% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

.aboutus .philosophy-section,
.aboutus .vission_mission-section {
  padding: 40px 0;
  background-color: var(--cream);
}

.aboutus .philosophy-section p,
.aboutus .vission_mission-section p {
  text-align: justify;
  color: var(--purple);
}

.vmp {
  padding: 40px 0px;
}

.principal-message {
  padding: 40px 0px;
}

.msg {
  position: relative;
  top: 20px;
  right: 20px;
  width: 60px;
}

.principal-message h3 {
  color: var(--purple);
  font-weight: 500;
  font-size: 30px;
}

.leadership-team {
  padding: 60px 0;
}

.leadership-team h3 {
  color: var(--purple);
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}

.leadership-team .title_all {
  margin-bottom: 40px;
}

.leadership-team img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.leadership-team img:hover {
  transform: scale(1.05);
}

.leadership-team h5 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #222;
}

/* -------MV------- */

.vm-school {
  padding: 80px 0;
}

.vm-school .about-company {
  color: var(--purple);
  padding: 30px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(91, 46, 144, 0.1); /* purple shadow */
  line-height: 1.8;
  position: relative;
}

.vm-school .about-company h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--purple);
  position: relative;
  padding-bottom: 15px;
}

.vm-school .about-company h5::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--purple));
}

.vm-school .icon-title {
  display: flex;
  justify-content: space-between;
}

/* ------------------------------------------------- */
/* -------Mandatory public disclosures------------- */
/* ------------------------------------------------ */
.mandatory-public-disclosures {
  padding: 70px 0;
  background: var(--cream);
}

.mpd-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 35px;
}


.mpd-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.mpd-table {
  width: 100%;
  border-collapse: collapse;
}

.mpd-table thead {
  background: var(--primary-color);
}

.mpd-table th {
  padding: 16px;
  color: var(--white);
  font-size: 15px;
  text-align: left;
}

.mpd-table td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}



/* Button */
.mpd-btn {
  padding: 8px 16px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.mpd-btn:hover {
  background: var(--primary-color);
}



/* ----------------------------------- */
/* -------------Facilities------------*/
/* --------------------------------- */

.facilities-vse {
  padding: 80px 0;
  background: var(--cream);
}


.facility-box-vse {
  padding: 40px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  transition: 0.3s ease-in-out;
  border-left: 6px solid var(--purple); 
}

.facility-box-vse:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.facility-box-vse h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.facility-box-vse p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.facilities-vse img {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.space-faci {
  padding-top: 60px;
}

/* -----------------------------------------
   COLOR VARIATIONS
------------------------------------------*/
.box-purple {
  border-left-color: var(--purple);
}

.box-purple h5 {
  color: var(--purple);
}

.box-sky {
  border-left-color: var(--sky-blue);
}

.box-sky h5 {
  color: var(--sky-blue);
}

.box-orange {
  border-left-color: var(--orange);
}

.box-orange h5 {
  color: var(--orange);
}

.box-green {
  border-left-color: var(--green);
}

.box-green h5 {
  color: var(--green);
}

.box-lavender {
  border-left-color: var(--lavender);
}

.box-lavender h5 {
  color: var(--lavender);
}

/* -----------------------------------------
   FACILITIES SINGLE OVERLAY
------------------------------------------*/
.facilities-single {
  padding: 40px 0;
}

.facilities-single .facility-img-wrapper {
  position: relative;
}

.facilities-single .facility-img-wrapper img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.facilities-single .text-overly-single-img {
  position: absolute;
  bottom: -40px;
  right: 0px;
  width: 50%;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  border-right: 6px solid var(--orange); /* default */
}

.facilities-single .text-overly-single-img h5 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.facilities-single .text-overly-single-img p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}


/* .vasi-feature {
  padding-bottom: 90px;
} */

.vasi-feature .vasi-feature-img-wrap {
  position: relative;
}

.vasi-feature .vasi-feature-img-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.vasi-feature .vasi-feature-text {
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 50%;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  border-right: 6px solid var(--orange);
}

.vasi-feature .vasi-feature-text h5 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vasi-feature .vasi-feature-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* -------------------------------------------------- */
/* ----------------Pre-Primary-page----------------- */
/* ------------------------------------------------ */

.pre-primary-section {
  padding: 80px 0px;
}

.gallery {
  --g: 6px; /* the gap */
  display: grid;
  width: 450px; /* the size */
  aspect-ratio: 1;
  grid: auto-flow 1fr / repeat(3, 1fr);
  gap: var(--g);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.5s;
}

.gallery img:nth-child(2) {
  grid-area: 1/2 / span 2 / span 2;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    calc(50% + var(--g) / 4) 100%,
    0 calc(50% - var(--g) / 4)
  );
}
.gallery img:nth-child(3) {
  grid-area: 2/1 / span 2 / span 2;
  clip-path: polygon(
    0 0,
    calc(50% - var(--g) / 4) 0,
    100% calc(50% + var(--g) / 4),
    100% 100%,
    0 100%
  );
}

.app-title {
  color: var(--orange);
}

.approach-title {
  color: var(--purple);
  font-weight: 500;
}

.eem {
  padding: 10px 0;
}

.ee-matter-content {
  padding-left: 20px;
}

.ee-matter-content h3 {
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 20px;
}

.ee-matter-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.eem img {
  border-radius: 12px;
  object-fit: cover;
}

.offering-pp {
  padding: 80px 0px;
}

.offering-pp .offering-pp-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  height: 100%;
}

.offering-pp .offering-pp-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.offering-pp .offering-pp-box h5 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.offering-pp .offering-pp-box p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}
.offering-title-area {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}
.offering-title-area h3 {
  color: var(--purple);
  font-weight: 500;
}

/* --------------------------------- */
/* ----------Primary--------------- */
/* ------------------------------- */

.primary-section {
  padding: 60px 0px;
}

.primary-middle-section {
  padding: 40px 0px;
}

.p-title-span {
  color: var(--purple);
}

/* ------------------------------ */
/* -----------Middle-school----- */
/* ---------------------------- */

/* -------------------- General Spacing -------------------- */
.middle-vse-intro,
.agriculture-middle-school,
.middle-vse-skilldev {
  padding: 60px 0;
}

/* -------------------- Middle Intro Section -------------------- */
.middle-label {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.middle-heading {
  color: var(--purple);
  font-weight: 600;
  line-height: 1.3;
}

.middle-text {
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* -------------------- Agriculture Section -------------------- */
.agriculture-middle-school {
  background-color: #f9f7f3;
  position: relative;
}

.agri-image-overlay img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.agri-image-overlay-text {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: -70px;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.agri-image-overlay-text p {
  color: #333;
  line-height: 1.8;
  margin: 0;
}



/* -------------------- Skill Development -------------------- */
.middle-vse-skilldev p {
  color: #444;
  line-height: 1.7;
}

.middle-highlight {
  font-weight: 600;
  color: var(--purple);
}

/* ---------------------------
   Highschool Intro Section
----------------------------*/
.highschool-vse-intro {
  padding-top: 70px;
}

.highschool-label {
  color: var(--orange);
}

.highschool-heading {
  font-size: 28px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1.3;
  margin-bottom: 20px;
}

.highschool-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.highschool-card {
  padding: 10px;
}

.highschool-vse-intro img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.highschool-focus-box {
  padding: 20px 0;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.highschool-highlight {
  font-weight: 700;
  color: var(--orange);
}

.highschool-vse-approach {
  padding: 70px 0;
}

.highschool-vse-approach p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.highschool-img-box img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .highschool-heading {
    font-size: 24px;
  }

  .highschool-text {
    font-size: 15px;
  }

  .highschool-focus-box {
    font-size: 15px;
  }
}

/* ------------------------------- */
/* ---------Gallery-------------- */
/* ----------------------------- */

.filix-main-gallery .nav-tabs {
  border-bottom: 0; /* removed bottom border */
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px; /* spacing after tabs */
}

.filix-main-gallery .nav-tabs .nav-link {
  color: var(--purple);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  background-color: transparent;
}

.filix-main-gallery .nav-tabs .nav-link:hover {
  background-color: var(--cream);
  border-color: var(--purple);
  color: var(--purple);
}

.filix-main-gallery .nav-tabs .nav-link.active {
  background-color: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.filix-main-gallery .nav-tabs .nav-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filix-main-gallery .gallery-box .box {
  padding-bottom: 20px;
}

.filix-main-gallery {
  padding: 80px 0;
}

/* ---------------------------------------- */
/* ---------------Testimonals------------- */
/* -------------------------------------- */

.patient-testimonals {
  padding: 60px 0px;
}

.patient-testimonals h1 {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  color: var(--purple);
  padding-top: 40px;
  transition: font-size 0.5s ease;
}

.patient-testimonals .col {
  width: 100%;
  border-bottom: 1px solid #a55959;
  overflow: visible;
  position: relative;
  padding: 3em;
}

.patient-testimonals .col:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 5em;
  color: #997c9f;
  z-index: -100;
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 40px;
}

.patient-testimonals p.person {
  text-align: right;
  color: #997c9f;
  font-weight: 700;
  font-size: 1.2em;
}

@media (max-width: 450px) {
  .patient-testimonals h1 {
    font-size: 1.8em;
    transition: font-size 0.5s ease;
  }
}

/* ----------------------------------------- */
/* ---------------Contactus-page----------- */
/* --------------------------------------- */
.contact-section {
  padding: 80px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--light-text);
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.contact-icon {
  width: 65px;
  height: 65px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-info h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info p {
  color: var(--light-text);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

/* -------------------------------- */
/* -----------Blogs--------------- */
/* ------------------------------ */

.blogs-section {
  padding: 80px 0;
}

.blogs-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.blogs-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--purple);
  margin-bottom: 40px;
  font-weight: 600;
}

.blogs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-content p {
  color: #555;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: var(--purple);
}

@media (max-width: 768px) {
  .blogs-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------------------------------- */
/* -----------4-i-approuch---------- */
/* -------------------------------- */

.fouri-page section,
.fouri-hero,
.fouri-intro {
  background-color: var(--cream);
}

.fouri-page {
  padding-top: 80px;
  padding-bottom: 40px;
}

.fouri-hero-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--purple);
}

.fouri-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 650px;
}

/* HERO IMAGE */
.fouri-hero-image img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}

/* INTRO SECTION */

.fouri-intro-text {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

/* WHY SECTION */
.fouri-why {
  padding: 80px 0;
  background-color: var(--cream);
}

.fouri-why-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--purple);
}

.fouri-why p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.fouri-why-image img {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* LIST POINTS */
.fouri-why-points {
  padding-left: 20px;
  margin-top: 15px;
}

.fouri-why-points li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* BOTTOM HIGHLIGHT TEXT */
.fouri-why-bottom-text {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}

/* ---------------------------------------------- */
/* ----------------activities------------------- */
/* -------------------------------------------- */

.vse-activities-co {
  background: var(--cream);
  padding-top: 40px;
  margin-bottom: 60px;
}

.vse-activities-co-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.vse-activities-co-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.vse-activities-co-card img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.vasishta-activities {
  text-align: center;
  padding-top: 60px;
}

.vasishta-activities h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 15px;
}

.vasishta-activities .cca-text {
  font-size: 17px;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.cca-title {
  color: var(--orange) !important;
}

/* ---------------------------------------- */
/* --------------coffe-with-parents------- */
/* -------------------------------------- */

.event-section {
  background: var(--cream);
  padding: 60px 0;
}

.event-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.event-title {
  color: var(--purple);
  font-weight: 700;
  font-size: 28px;
}

.event-text {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.event-img {
  border-radius: 12px;
  border: 4px solid var(--lavender);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------- */
/* -------------Achivements------------- */
/* ------------------------------------ */

/* Achievements Section */
.achievements-gallery {
  padding: 70px 0;
  background: var(--cream);
}

/* Heading Styles */
.ach-label {
  color: var(--orange);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.ach-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 10px;
}

.ach-sub {
  font-size: 17px;
  color: #555;
}

/* Tabs */
.achievements-gallery .nav-tabs {
  border-bottom: none;
  margin-bottom: 25px;
}

.achievements-gallery .nav-tabs .nav-link {
  color: var(--purple);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 10px;
  border: 2px solid var(--lavender);
  margin: 0 10px;
  transition: 0.3s ease;
  background-color: var(--white);
}

.achievements-gallery .nav-tabs .nav-link.active,
.achievements-gallery .nav-tabs .nav-link:hover {
  background-color: var(--lavender);
  color: var(--white);
  border-color: var(--lavender);
}

/* Images */
.achievements-gallery img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
  object-fit: cover;
  transition: 0.3s;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.achievements-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Column spacing */
.achievements-gallery .row {
  row-gap: 20px;
}

/* ------------------------------------- */
/* -----------Events&updates----------- */
/* ----------------------------------- */

/* ============================
   EVENTS / PROGRAMS SECTION
============================= */

.programs-section {
  padding: 70px 0;
  background-color: var(--cream);
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: grayscale(60%);
  transition: all 0.45s ease;
}

.program-card:hover .program-image img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.program-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

/* CONTENT */
.program-content {
  padding: 25px 22px;
  text-align: left;
}

.program-content h5 {
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: 12px;
  color: var(--purple);
}

.program-content p {
  font-size: 0.97rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 12px;
}

.program-content a.program-link {
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.program-content a.program-link:hover {
  color: var(--purple);
}

/* UL LIST */
.program-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
}

.program-content ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

/* SECTION HEADINGS */
.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 10px;
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.program-title {
  font-size: 20px;
  color: var(--orange);
}

/* -------------------------------------------------- */
/* ------------------Modal-form--------------------- */
/* ------------------------------------------------ */
/* Modal */
.vasistha-modal .modal-content {
  border-radius: 15px;
  border: none;
  background: var(--cream);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* Header */
.vasistha-modal .modal-header {
  border-bottom: none;
  justify-content: center;
  padding-top: 20px;
}

.vasistha-modal .modal-title {
  color: var(--purple);
  font-size: 22px;
  font-weight: 600;
}

.vasistha-modal .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

/* Form */
#contactForm {
  padding: 0 20px;
}

#contactForm .form-label {
  color: var(--purple);
  font-weight: 500;
}

#contactForm .form-control,
#contactForm .form-select {
  border-radius: 10px;
  border: 1px solid #ccc;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 0.2rem rgba(156, 141, 220, 0.3);
}

/* Footer Button */
.vasistha-modal .modal-footer {
  border: none;
  justify-content: center;
  padding-bottom: 20px;
}

.vasistha-modal .btn-primary {
  background: var(--purple);
  border: none;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.vasistha-modal .btn-primary:hover {
  background: var(--lavender);
}

/* Ensure modal background stays behind everything */
.vasistha-modal .modal-content {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Watermark Layer */
/* .vasistha-modal .modal-body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;   
  height: 260px;
  transform: translate(-50%, -50%);
  background: url('../images/home/logo-icon.webp') no-repeat center/contain;
  opacity: 0.18;   
  z-index: 900000000;     
  pointer-events: none;
} */

/* Form fields stay above watermark */
#contactForm,
#contactForm * {
  position: relative;
  z-index: 5;
}

.nav-link.active,
.dropdown-item.active {
  color: var(--orange) !important;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #198754;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------------------- */
/* --------------youtube------------------ */
/* -------------------------------------- */

.yt-heading {
  color: var(--purple);
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.yt-testimonals {
  padding: 40px 16px;
  background: var(--cream);
}

.yt-testimonals .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}


.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}


@media (min-width: 992px) {
  .yt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}


.yt-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 20, 40, 0.06);
  overflow: hidden;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.iframe-wrap {
  width: 100%;
  max-width: 560px; 
  position: relative;
  padding-top: 56.25%; 
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-card:hover {
  transform: translateY(-4px);
  transition: transform 180ms ease;
}


.yt-card * {
  box-sizing: border-box;
}

.view-more-btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 500;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(90, 46, 202, 0.25);
}

.view-more-wrap {
  text-align: center;
  margin-top: 35px;
}

.yt-heading-page h2 {
  color: var(--purple);
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.yt-heading-page {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.yt-testimonals-page{
  padding: 60px 0px;
}


/* -------------------- */

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #48c859;
}

.whatsapp i {
  font-size: 30px;
}

.social-item {
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s 
ease;
}