@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:wght@300;400;500;600;700&display=swap");
:root {
  --primary: #8DB244;
  --primary-light: #cadfa588;
  --secondary: #7fa03e;
  --footer-bg: #2A311D;
  --primary-font: "Instrument Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
  background: transparent;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.navbar {
  position: relative;
  z-index: 100;
}
.navbar .logo {
  max-height: 75px;
}
@media (max-width: 768px) {
  .navbar .logo {
    max-height: 40px;
  }
}
.navbar .__secondary_logo {
  max-height: 40px;
}
@media (max-width: 768px) {
  .navbar .__secondary_logo {
    margin-top: 6px;
    max-height: 28px;
  }
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 23 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='22.0191' height='2.65912' rx='1.32956' fill='%23424242'/%3E%3Crect x='9.00024' y='5.00425' width='13.0195' height='2.65912' rx='1.32956' fill='%23424242'/%3E%3Crect y='10.0084' width='22.0191' height='2.65912' rx='1.32956' fill='%23424242'/%3E%3C/svg%3E");
}
.navbar .navbar-nav .dropdown-item.dropdown-toggle::after, .navbar .navbar-nav .nav-item > .nav-link::after {
  display: inline-block;
  width: 0;
  height: 0;
  flex-shrink: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0.5;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  padding: 8px 0px;
}
.navbar .navbar-nav .nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6A6A6A;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0 0.7rem;
  white-space: nowrap;
  transition: color 0.15s;
}
.navbar .navbar-nav .nav-item > .nav-link:hover {
  color: rgb(29.5, 29.5, 29.5);
}
.navbar .navbar-nav .nav-item > .nav-link::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid currentColor;
}
.navbar .navbar-nav .nav-item > .nav-link:only-child::after {
  display: none;
}
.navbar .navbar-nav .nav-item.current-menu-item > .nav-link, .navbar .navbar-nav .nav-item.current-menu-ancestor > .nav-link, .navbar .navbar-nav .nav-item.current-menu-parent > .nav-link {
  color: #111;
  font-weight: 600;
}
.navbar .navbar-nav .nav-item.current-menu-item > .nav-link::before, .navbar .navbar-nav .nav-item.current-menu-ancestor > .nav-link::before, .navbar .navbar-nav .nav-item.current-menu-parent > .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: #82AA31;
  border-radius: 2px 2px 0 0;
}
.navbar .navbar-nav .nav-item:hover > .nav-link::after {
  transform: rotate(-180deg);
  opacity: 0.85;
}
.navbar .navbar-nav .nav-item:not(.menu-item-has-children) > .nav-link::after {
  display: none;
}
.navbar .navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  min-width: 210px;
  padding: 5px;
  z-index: 200;
  list-style: none;
  white-space: nowrap;
  animation: navDropIn 0.18s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.navbar .navbar-nav .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  animation: navDropRight 0.18s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.navbar .navbar-nav .dropdown-menu.open-left {
  left: auto;
  right: 0;
}
.navbar .navbar-nav .dropdown-menu.open-left .dropdown-menu {
  left: auto;
  right: 100%;
  animation: navDropLeft 0.18s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.dropdown-submenu > .navbar .navbar-nav .dropdown-menu {
  top: -5px;
  left: 100%;
  animation: navDropRight 0.18s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.dropdown-submenu > .navbar .navbar-nav .dropdown-menu.open-left {
  left: auto;
  right: 100%;
  animation: navDropLeft 0.18s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
@keyframes navDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes navDropRight {
  from {
    opacity: 0;
    transform: translateX(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes navDropLeft {
  from {
    opacity: 0;
    transform: translateX(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item:hover > .dropdown-menu,
  .navbar .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
.navbar .navbar-nav .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #6A6A6A;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  position: relative;
}
.navbar .navbar-nav .dropdown-item:hover, .navbar .navbar-nav .dropdown-item:focus {
  background: rgba(130, 170, 49, 0.07);
  color: #82AA31;
}
.navbar .navbar-nav .dropdown-item.active {
  background: rgba(130, 170, 49, 0.12);
  color: #82AA31;
  font-weight: 600;
}
.navbar .navbar-nav .dropdown-item.dropdown-toggle::after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4.5px solid currentColor;
  border-right: none;
  margin-left: auto;
  transform: rotate(90deg);
}
.navbar .navbar-nav .dropdown-item:hover::after {
  opacity: 1;
}
.navbar .navbar-nav .dropdown-submenu {
  position: relative;
}
.navbar .navbar-nav .nav-gap-bridge {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.navbar .navbar-nav .sub-gap-bridge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  width: 8px;
}

.offcanvas-body {
  padding: 1.5rem;
}
.offcanvas-body .navbar-nav.mobile-nav {
  width: 100%;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item {
  margin-bottom: 0.25rem;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-item-row {
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.2s ease;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-item-row:hover {
  background: rgba(130, 170, 49, 0.06);
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-item-row > a {
  flex: 1;
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: #6A6A6A;
  transition: color 0.2s ease;
  text-decoration: none;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-item-row > a:hover {
  color: #82AA31;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item > a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  color: #6A6A6A;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item > a:hover {
  background: rgba(130, 170, 49, 0.06);
  color: #82AA31;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item.current-menu-item > a,
.offcanvas-body .navbar-nav.mobile-nav .menu-item.current-menu-item .mobile-item-row > a {
  background: rgba(130, 170, 49, 0.12);
  color: #82AA31;
  font-weight: 600;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item.current-menu-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #82AA31;
  border-radius: 4px;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-toggle-btn {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  color: #6A6A6A;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.25s ease;
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-toggle-btn[aria-expanded=true] {
  color: #82AA31;
  transform: rotate(-180deg);
}
.offcanvas-body .navbar-nav.mobile-nav .menu-item .mobile-toggle-btn:hover {
  color: #82AA31;
}
.offcanvas-body .navbar-nav.mobile-nav .mobile-submenu {
  list-style: none;
  padding-left: 1rem !important;
  margin-bottom: 0.25rem;
  border-left: 2px solid rgba(130, 170, 49, 0.2);
}
.offcanvas-body .navbar-nav.mobile-nav .mobile-submenu .menu-item {
  margin-bottom: 0.15rem;
}
.offcanvas-body .navbar-nav.mobile-nav .mobile-submenu .menu-item > a,
.offcanvas-body .navbar-nav.mobile-nav .mobile-submenu .menu-item .mobile-item-row > a {
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

.site-footer {
  background: #2A311D;
  color: #ffffff;
  padding: 4rem 5vw 1.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 110% 110%, rgba(141, 178, 68, 0.07) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at -10% -10%, rgba(141, 178, 68, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.footer-section__title {
  font-size: clamp(1.3rem, 1.7vw, 1.5rem);
  font-weight: 600;
  color: #8DB244;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.quick-links ul,
.explore ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.quick-links ul a,
.explore ul a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  display: inline-block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.quick-links ul a:hover,
.explore ul a:hover {
  color: #8DB244;
  padding-left: 0.35rem;
}

.ec-office p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: #ffffff;
}
.ec-office .label {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.6rem;
}
.ec-office a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  word-break: break-all;
  transition: opacity 0.2s;
}
.ec-office a:hover {
  opacity: 0.75;
}

.contact-us address {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
}

.connect-with-us .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(140, 198, 63, 0.18);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-icon:hover {
  border-color: #8DB244;
  color: #8DB244;
  background: rgba(141, 178, 68, 0.08);
}

.logo-badge {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.logo-badge img {
  width: 200px;
  transform: translateX(-12px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(140, 198, 63, 0.18);
  margin: 2.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

@media (max-width: 998px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 3rem;
  }
  .connect-with-us {
    grid-column: 1/-1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .connect-with-us .footer-section__title {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 5vw 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .connect-with-us {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: start;
  }
  .footer-bottom p {
    width: 100%;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 800px;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-slider .slick-list,
.hero-section .hero-slider .slick-track {
  height: 100%;
}
.hero-section .hero-slider .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top -40px;
  background-repeat: no-repeat;
}
.hero-section .hero-slider .slick-dots {
  bottom: 20px;
  z-index: 10;
}
.hero-section .hero-slider .slick-dots li button:before {
  color: #ffffff;
  opacity: 0.5;
  font-size: 10px;
}
.hero-section .hero-slider .slick-dots li.slick-active button:before {
  color: #ffffff;
  opacity: 1;
}
.hero-section .hero-slider .slick-prev,
.hero-section .hero-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}
.hero-section .hero-slider .slick-prev:before,
.hero-section .hero-slider .slick-next:before {
  font-size: 40px;
  opacity: 0.7;
}
.hero-section .hero-slider .slick-prev {
  left: 25px;
}
.hero-section .hero-slider .slick-next {
  right: 25px;
}
.hero-section .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(8deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: end;
}
.hero-section .hero-overlay .container-1300px {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
.hero-section .hero-overlay .hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: bold;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 30px;
}
.hero-section .hero-overlay .hero-buttons {
  display: flex;
  gap: 15px;
}
.hero-section .hero-overlay .hero-buttons .btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  min-width: 200px;
}
.hero-section .hero-overlay .hero-buttons .btn.btn-apply {
  background-color: #82AA31;
  color: #ffffff;
}
.hero-section .hero-overlay .hero-buttons .btn.btn-apply:hover {
  background-color: rgb(99.7260273973, 130.4109589041, 37.5890410959);
}
.hero-section .hero-overlay .hero-buttons .btn.btn-explore {
  background-color: #ffffff;
  color: #000000;
}
.hero-section .hero-overlay .hero-buttons .btn.btn-explore:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }
  .hero-section .hero-buttons {
    flex-direction: column;
  }
  .hero-section .hero-slider .slide {
    background-position: left -100px top;
  }
}

.container-1300px {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================================
   SECTION WRAPPER
   ================================================================ */
.programmes-section {
  background: #eef5e3;
  padding: 0 0;
  width: 100%;
  overflow: hidden;
}

.stats-card-wrapper {
  padding: 2rem 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #eef5e3 50%, #eef5e3 100%);
  font-family: "Istok Web", sans-serif;
}
@media screen and (max-width: 768px) {
  .stats-card-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #eef5e3 65%, #eef5e3 100%);
  }
}

/* ================================================================
   STATS CARD  — Desktop: single row, Mobile: 2×2 grid
   ================================================================ */
.stats-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 20px;
  position: relative;
}

/* Dividers between stats (desktop only) */
.stat-divider {
  width: 1px;
  background: #e0e0e0;
  align-self: stretch;
  margin: 0 4px;
}
@media (max-width: 600px) {
  .stat-divider {
    display: none;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6aaa20;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 48px;
  height: 48px;
  stroke: #6aaa20;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.3;
}

/* ================================================================
   PROGRAMMES BLOCK
   ================================================================ */
.programmes-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5% 3rem;
}

.programmes-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
}

/* ================================================================
   SEARCH BAR
   ================================================================ */
.search-bar {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 24px;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  border: 1.5px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .search-bar {
    margin: 0 auto;
  }
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-size: 0.92rem;
  color: #555555;
  background: transparent;
  max-height: 48px;
}
.search-input::-moz-placeholder {
  font-size: 1.1rem;
  color: #aaaaaa;
}
.search-input::placeholder {
  font-size: 1.1rem;
  color: #aaaaaa;
}

.search-btn {
  background: #82AA31;
  color: #ffffff;
  border: none;
  padding: 14px 48px;
  font-size: 1rem;
  font-weight: 600;
  max-height: 48px;
  cursor: pointer;
  border-radius: 50px;
  margin: 0;
  transition: background 0.2s ease;
  font-family: "Kumbh Sans", sans-serif;
}
.search-btn:hover {
  background: #4a7614;
}

.programme-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  margin: 16px 9px;
  aspect-ratio: 4/3.5;
  outline: none;
}
.programme-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.programme-card:hover img {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-label-wrapper {
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 14px;
  width: 100%;
}

.card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  flex: 1;
  padding-right: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-arrow-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #78b828;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  will-change: transform;
}
.card-arrow-btn svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}
.card-arrow-btn:hover {
  background: #82AA31;
  transform: scale(1.1);
}

/* ================================================================
   EXPLORE ALL BUTTON
   ================================================================ */
.explore-all-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .explore-all-wrap {
    margin-top: 1rem;
  }
}

.explore-all-btn {
  background: #82AA31;
  color: #ffffff;
  border: none;
  padding: 8px 48px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.3px;
}
.explore-all-btn:hover {
  background: #4a7614;
}

/* ================================================================
   RESPONSIVE — TABLET  (≤ 900px)
   Show 3 cards
   ================================================================ */
@media (max-width: 900px) {
  .stats-card {
    max-width: 94%;
    padding: 22px 16px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .programme-card {
    width: calc((100% - 36px) / 3);
  }
}
/* ================================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   Stats become 2×2 grid; cards show 2 at a time; arrows hidden; dots shown
   ================================================================ */
@media (max-width: 768px) {
  .search-input,
  .search-btn {
    max-height: 36px;
  }
  .search-input::-moz-placeholder, .search-btn::-moz-placeholder {
    font-size: 0.9rem;
  }
  .search-input::placeholder,
  .search-btn::placeholder {
    font-size: 0.9rem;
  }
  /* Stats: 2×2 grid */
  .stats-card {
    flex-wrap: wrap;
    max-width: 92%;
    padding: 16px;
    border-radius: 14px;
    gap: 0;
    top: 0;
    margin-top: 20px;
  }
  .stat-item {
    width: 50%;
    flex: none;
    padding: 20px 16px;
    justify-content: flex-start;
    gap: 12px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item:nth-of-type(1) {
    border-right: 1px solid #e8e8e8;
  }
  .stat-icon svg {
    width: 30px;
    height: 30px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
  /* Programmes title */
  .programmes-title {
    margin-top: 10px;
  }
  /* Search */
  .search-bar {
    max-width: 100%;
  }
  .search-btn {
    padding: 8px 22px;
    font-size: 0.87rem;
  }
  /* Carousel: hide arrows, show dots, 2 cards visible */
  .carousel-arrow {
    display: none;
  }
  .carousel-track {
    gap: 12px;
  }
  .programme-card {
    width: calc((100% - 12px) / 2);
    /* Show ~2 cards on mobile, second partially visible */
    min-width: calc(52vw - 16px);
  }
  .carousel-dots {
    display: flex;
  }
}
/* ================================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .programme-card {
    min-width: calc(72vw - 16px);
  }
  .explore-all-btn {
    padding: 8px 48px;
    font-size: 1rem;
    max-width: 300px;
  }
}
.why-us-section-wrapper {
  padding: 2.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .why-us-section-wrapper {
    padding: 1rem 0.5rem;
  }
}
.why-us-section-wrapper .why-us-section {
  gap: 2rem;
}
.why-us-section-wrapper .why-us-section h1 {
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  font-weight: 700;
}
.why-us-section-wrapper .why-us-section p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.why-us-section-wrapper .why-us-section .main-img-container {
  flex: 1;
}
.why-us-section-wrapper .why-us-section .main-img-container img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}
.why-us-section-wrapper .why-us-section .info-container {
  flex: 2;
}
.why-us-section-wrapper .why-us-section .info-container .side-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-us-section-wrapper .why-us-section .icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.why-us-section-wrapper .why-us-section .icon-container .icon {
  width: 64px;
  height: 64px;
  border: 2px solid #82AA31;
  border-radius: 50%;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  flex-shrink: 0;
}
.why-us-section-wrapper .why-us-section .icon-container .icon img,
.why-us-section-wrapper .why-us-section .icon-container .icon svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.why-us-section-wrapper .why-us-section .icon-text-box {
  padding: 1rem;
  background-color: #82AA31;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}
.why-us-section-wrapper .why-us-section .icon-text-box:hover {
  background-color: #8DB244;
}
.why-us-section-wrapper .why-us-section .c1,
.why-us-section-wrapper .why-us-section .c2 {
  flex: 1;
}
.why-us-section-wrapper .why-us-section .side-img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .why-us-section-wrapper .why-us-section {
    gap: 0.75rem;
  }
  .why-us-section-wrapper .why-us-section p {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .why-us-section-wrapper .why-us-section .icon-text-box {
    font-size: 0.6rem;
    padding: 0.5rem;
  }
  .why-us-section-wrapper .why-us-section .info-container {
    flex: 1;
  }
  .why-us-section-wrapper .why-us-section .main-img-container img {
    min-height: 280px;
    height: 100%;
    min-width: 160px;
    -o-object-position: calc(-50px + 50%) center;
       object-position: calc(-50px + 50%) center;
  }
  .why-us-section-wrapper .why-us-section .icon-container {
    gap: 4px;
  }
  .why-us-section-wrapper .why-us-section .icon-container .icon {
    width: 36px;
    height: 36px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .why-us-section-wrapper .why-us-section .icon-container .icon svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .why-us-section-wrapper .why-us-section .icon-container .icon-text-box {
    font-size: 0.75rem;
  }
}

.placement-section {
  width: 100%;
}

.placement-hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(84, 84, 84, 0.75) 0%, rgba(82, 82, 82, 0.75) 50%, #eef5e3 50%, #eef5e3 100%), url("../images/career-hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 5% 1rem;
  overflow: hidden;
}
.placement-hero__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.placement-hero {
  position: relative;
}
@media screen and (max-width: 768px) {
  .placement-hero {
    display: flex;
    flex-direction: row;
    padding: 3rem 5% 2.5rem;
  }
  .placement-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/career-hero-bg.png") center/cover no-repeat;
    width: 50%;
    z-index: 0;
    border-radius: 0 24px 24px 0;
  }
  .placement-hero {
    background: #fff;
  }
}

.placement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 998px) {
  .placement-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .placement-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.placement-card {
  background: rgba(55, 55, 55, 0.88);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}
.placement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
}
.placement-card__title {
  font-weight: 500;
  font-size: 1.15rem;
  color: #8cc63f;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.placement-card__desc {
  font-size: 0.88rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 22px;
}
.placement-card__img {
  width: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-top: auto;
}
@media (max-width: 768px) {
  .placement-card__img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .placement-card {
    padding: 20px 16px;
    max-width: 280px;
  }
}

.placement-logos {
  padding: 36px 0;
  background-color: #eef5e3;
}
.placement-logos__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 44px;
  margin: 0 auto;
  width: 100%;
}
.placement-logos__track .slick-list.draggable {
  width: 100%;
}
@media (max-width: 768px) {
  .placement-logos__track {
    gap: 20px 28px;
  }
}
.placement-logos .slick-track {
  display: flex !important;
}
.placement-logos .slick-slide {
  height: inherit !important;
}
.placement-logos__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  filter: grayscale(0.2);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: default;
  height: 100%;
}
.placement-logos__item img {
  max-width: 150px;
}
.placement-logos__item:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .placement-logos__item {
    font-size: 0.88rem;
  }
}
@media screen and (max-width: 768px) {
  .placement-logos {
    background-color: #fff;
  }
}

.logo--travancore {
  color: #f90;
}
.logo--travancore .logo-icon {
  background: #1a1a1a;
  color: #f90;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 0.75rem;
  font-weight: 800;
}
.logo--speridian {
  color: #1565c0;
}
.logo--speridian .logo-icon {
  color: #1565c0;
  font-size: 1.4rem;
  font-weight: 900;
}
.logo--suntech {
  color: #0077b6;
}
.logo--suntech .logo-icon {
  font-size: 1.2rem;
}
.logo--mitsogo .logo-pill {
  background: #d32f2f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo--geojit {
  color: #1b5e20;
}
.logo--geojit .logo-icon {
  background: #1b5e20;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 800;
}
.logo--inapp {
  color: #e65100;
}
.logo--inapp .logo-icon {
  color: #e65100;
  font-weight: 800;
  font-size: 1.1rem;
}
.logo--amazon {
  color: #ff9900;
}
.logo--sutherland {
  color: #333;
  font-weight: 700;
}
.logo--sutherland .logo-icon {
  color: #43a047;
  font-size: 1.2rem;
}

.custom-tab-wrapper-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.custom-tab-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.nav-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}
.nav-tabs .nav-link {
  width: 100%;
  border: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 0;
  background: none;
}
.nav-tabs .nav-link.active {
  color: #8cc63f;
}

.tab-indicator-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.tab-indicator-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #8cc63f;
  transform: translateY(-50%);
  z-index: 0;
}
.tab-indicator-wrapper .dot-hitbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}
.tab-indicator-wrapper .dot-hitbox:nth-child(2) {
  background: linear-gradient(to right, #fff 0%, #fff 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}
.tab-indicator-wrapper .dot-hitbox:last-child {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
}
.tab-indicator-wrapper .dot {
  width: 20px;
  height: 20px;
  background-color: #eef5e3;
  border: 2px solid #8cc63f;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .tab-indicator-wrapper .dot {
    width: 16px;
    height: 16px;
  }
}
.tab-indicator-wrapper .indicator-knob {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #8cc63f;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.68, -0.15, 0.265, 1.55);
  transform: translateX(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .tab-indicator-wrapper .indicator-knob {
    width: 16px;
    height: 16px;
  }
}

.facilities-section {
  padding: 3rem 5% 3rem;
}
@media screen and (max-width: 768px) {
  .facilities-section {
    padding: 0rem 5% 2rem;
  }
}

.slick-slider-wrapper,
.slick-slider-outer {
  position: relative;
  padding: 20px 50px;
}
.slick-slider-wrapper .custom-slick-carousel-cards,
.slick-slider-outer .custom-slick-carousel-cards {
  margin: 0 -10px;
}
.slick-slider-wrapper .slide-item,
.slick-slider-outer .slide-item {
  padding: 0 10px;
  text-align: center;
  outline: none;
}
.slick-slider-wrapper .slide-item .image-box,
.slick-slider-outer .slide-item .image-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
.slick-slider-wrapper .slide-item .image-box img,
.slick-slider-outer .slide-item .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
}
.slick-slider-wrapper .slide-item:hover img,
.slick-slider-outer .slide-item:hover img {
  transform: scale(1.05);
}
.slick-slider-wrapper .slide-item .caption,
.slick-slider-outer .slide-item .caption {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .slick-slider-wrapper,
  .slick-slider-outer {
    padding: 20px 0 20px 16px;
  }
}
.slick-slider-wrapper .slick-prev-custom,
.slick-slider-wrapper .slick-next-custom,
.slick-slider-outer .slick-prev-custom,
.slick-slider-outer .slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #8cc63f;
  background: white;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-slider-wrapper .slick-prev-custom:hover,
.slick-slider-wrapper .slick-next-custom:hover,
.slick-slider-outer .slick-prev-custom:hover,
.slick-slider-outer .slick-next-custom:hover {
  background-color: #8cc63f;
  color: white;
}
@media screen and (max-width: 768px) {
  .slick-slider-wrapper .slick-prev-custom,
  .slick-slider-wrapper .slick-next-custom,
  .slick-slider-outer .slick-prev-custom,
  .slick-slider-outer .slick-next-custom {
    display: none !important;
  }
}
.slick-slider-wrapper .slick-prev-custom,
.slick-slider-outer .slick-prev-custom {
  left: 0;
}
.slick-slider-wrapper .slick-next-custom,
.slick-slider-outer .slick-next-custom {
  right: 0;
}
.slick-slider-wrapper .slick-dots,
.slick-slider-outer .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.slick-slider-wrapper .slick-dots li,
.slick-slider-outer .slick-dots li {
  margin: 0;
  padding: 0;
}
.slick-slider-wrapper .slick-dots li button,
.slick-slider-outer .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #c8d8b0;
  border: 1px solid #8DB244;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.slick-slider-wrapper .slick-dots li button::before,
.slick-slider-outer .slick-dots li button::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .slick-slider-wrapper .slick-dots li button,
  .slick-slider-outer .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.slick-slider-wrapper .slick-dots li.slick-active button,
.slick-slider-outer .slick-dots li.slick-active button {
  background-color: #82AA31;
  transform: scale(1.2);
}

.slick-slider-outer .slick-track {
  display: flex;
  align-items: stretch;
}
.slick-slider-outer .programme-card {
  margin: 16px 9px;
}
.slick-slider-6 .slick-slider-outer .programme-card {
  margin: 0 9px;
}

.value-added-skills-courses {
  padding: 0 5% 3rem;
}

.value-added-skills-courses h1 {
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.success-stories-section {
  background: linear-gradient(to bottom, #EFFFD0 0%, #EFFFD0 75%, #ffffff 75%, #ffffff 100%);
  padding: 3rem 5%;
  overflow: hidden;
}

.success-stories-header {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  margin-bottom: 3rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  max-width: 998px;
  padding: 1rem 5%;
}
@media (max-width: 768px) {
  .success-stories-header {
    gap: 0.85rem;
  }
}

.success-stories-title-block {
  flex: 1;
  padding-right: 2.5rem;
  border-right: 5px solid #82AA31;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .success-stories-title-block {
    padding-right: 0;
  }
}

.success-stories-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  font-family: "Kumbh Sans", sans-serif;
}

.success-stories-desc {
  flex: 1;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
  padding-top: 0.25rem;
}

.success-stories-slider-outer {
  position: relative;
}

.ss-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.8px solid #82AA31;
  background: #ffffff;
  color: #82AA31;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.ss-arrow svg {
  width: 18px;
  height: 18px;
}
.ss-arrow:hover {
  background: #82AA31;
  color: #ffffff;
}
.ss-arrow.slick-disabled {
  opacity: 0.35;
  cursor: default;
}
.ss-arrow.ss-prev {
  left: -56px;
}
@media (max-width: 1400px) {
  .ss-arrow.ss-prev {
    left: -24px;
  }
}
@media (max-width: 768px) {
  .ss-arrow.ss-prev {
    display: none;
  }
}
.ss-arrow.ss-next {
  right: -56px;
}
@media (max-width: 1400px) {
  .ss-arrow.ss-next {
    right: -24px;
  }
}
@media (max-width: 768px) {
  .ss-arrow.ss-next {
    display: none;
  }
}

.ss-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  margin: 8px 10px 16px;
  outline: none;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  transform: scale(0.75);
  opacity: 0.75;
}
.ss-card.ss-card--active, .ss-card.slick-center {
  transform: scale(1);
  opacity: 1;
}
.ss-card.slick-active {
  transform: scale(0.75);
  opacity: 0.8;
}
.ss-card.slick-active + .slick-active {
  transform: scale(1);
  opacity: 1;
}
.ss-card.slick-active + .slick-active + .slick-active {
  transform: scale(0.75);
  opacity: 0.8;
  box-shadow: none;
}
.ss-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 4px;
}
.ss-card__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  border-radius: 8px;
}
.ss-card__badge {
  position: absolute;
  bottom: 0;
  left: 6px;
  bottom: 6px;
  background: #EFFFD0;
  border-radius: 6px;
  padding: 8px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 50%;
}
.ss-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.ss-card__role {
  font-size: 0.75rem;
  font-weight: 400;
  display: inline-block;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.ss-card__body p {
  padding: 16px 16px 0;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
  margin: 0 0 16px;
}
.ss-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: #82AA31;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 0 0 14px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}
.ss-card__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.ss-card__btn:hover {
  background: rgb(99.7260273973, 130.4109589041, 37.5890410959);
  color: #ffffff;
}

.success-stories-slider-outer {
  display: flex;
  justify-content: center;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.slick-dots li {
  margin: 0;
  padding: 0;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c8d8b0;
  border: 1px solid #8DB244;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button {
  background: #82AA31;
  transform: scale(1.2);
}

.success-stories-slider {
  max-width: 998px;
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 2.5rem 0;
  }
  .ss-card.slick-active {
    transform: scale(0.85) translateX(12%);
    opacity: 0.8;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .ss-card.slick-active + .slick-active {
    transform: scale(1) translateX(0);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  }
  .ss-card.slick-active + .slick-active + .slick-active {
    transform: scale(0.85) translateX(-12%);
    opacity: 0.8;
    z-index: 1;
    box-shadow: none;
  }
}
.cta-section {
  padding: 3rem 5% 3rem;
  background: #82AA31;
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-section h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.cta-section button {
  background: #ffffff;
  color: #000;
  font-weight: 700;
  border: 2px solid #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.cta-section button:hover {
  background: transparent;
  color: #ffffff;
}

.__social_gallery h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 32px;
  letter-spacing: -0.02em;
  font-family: "Kumbh Sans", sans-serif;
}

/* ============================================================
   Social Slick Slider (card-slider template part)
   ============================================================ */
.__shc_social_slick_slider {
  --color: var(--secondary);
}
.__shc_social_slick_slider .__card_slider_item {
  padding: 0 0.5rem;
  border: none;
}
.__shc_social_slick_slider .__card_slider_item img {
  border-radius: 1rem;
  aspect-ratio: 251/200;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.__shc_social_slick_slider .__card_slider_item .__play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 25%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFBFBF;
  transition: all 0.3s ease;
}
.__shc_social_slick_slider .__card_slider_item .__play_btn:hover {
  color: #82AA31;
  animation: loading 3.3s ease-in-out forwards;
}
.__shc_social_slick_slider .slick-list {
  padding: 0 12% 0 0 !important;
}
.__shc_social_slick_slider .slick-track {
  margin-bottom: 1rem;
}
.__shc_social_slick_slider .slick-dots {
  margin-top: 1rem;
}

/* Global Keyframes */
@keyframes loading {
  to {
    color: var(--primary);
    opacity: 1;
  }
}
.twoline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sevenline {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.__sh_rvp .__main_content {
  min-height: 500px;
  background-color: #fff;
}
.__sh_rvp .__container_custom {
  max-width: 1400px;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .__sh_rvp .__container_custom {
    margin: 1rem auto;
  }
}

.__page_banner_strip {
  height: auto;
  min-height: 230px;
  max-height: 250px;
  background: linear-gradient(0deg, rgba(69, 91, 27, 0.75) 0%, rgba(69, 91, 27, 0.75) 100%), url(../images/page_header_strip.webp) lightgray -282.892px -1399.033px/133.809% 858.15% no-repeat;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__page_banner_strip h1 {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.__page_banner_strip .__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}
.__page_banner_strip .__breadcrumb a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.__page_banner_strip .__breadcrumb a:hover {
  color: white !important;
}
.__page_banner_strip .__breadcrumb .__b_arw {
  opacity: 0.7;
  font-family: serif;
  color: #82AA31;
}

.__sidemenu_walker {
  list-style: none;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}
.__sidemenu_walker li {
  position: relative;
  border: 1px solid var(--primary);
  border-radius: 0.9585rem;
  transition: all 0.4s ease-in-out;
}
.__sidemenu_walker li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.__sidemenu_walker li a {
  display: flex;
  padding: 0.75rem 1rem;
  color: #242424;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.__sidemenu_walker li.active, .__sidemenu_walker li:hover {
  background: var(--primary);
}
.__sidemenu_walker li.active a, .__sidemenu_walker li:hover a {
  color: white;
  font-weight: 500;
}
.__sidemenu_walker li ul {
  list-style: none;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
}
.__sidemenu_walker li ul li {
  border: none;
  margin-bottom: 0;
}
.__sidemenu_walker li ul li a {
  font-size: 0.9rem;
}
@media screen and (min-width: 992px) {
  .__sidemenu_walker.__left_menu {
    padding-right: 2rem;
    padding-left: 0;
  }
}
p {
  font-weight: 400;
  color: black;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  p {
    font-size: 1.3rem;
  }
}

.__sh_rvp .__sidemenu_walker .accordion {
  border: none;
  margin-bottom: 1rem;
}
.__sh_rvp .__sidemenu_walker .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}
.__sh_rvp .__sidemenu_walker .accordion-button {
  border: 1px solid var(--primary) !important;
  background-color: #fff !important;
  color: #000 !important;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1rem !important;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}
.__sh_rvp .__sidemenu_walker .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(202, 223, 165, 0.5333333333);
}
.__sh_rvp .__sidemenu_walker .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: #f8f9fa !important;
  box-shadow: none;
}
.__sh_rvp .__sidemenu_walker .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.__sh_rvp .__sidemenu_walker .accordion-button::after {
  filter: none;
  content: "";
  background-size: 2rem !important;
  width: 2rem !important;
  height: 2rem !important;
  transition: transform 0.4s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M34.875 18C34.875 27.3198 27.3198 34.875 18 34.875C8.68019 34.875 1.125 27.3198 1.125 18C1.125 8.68019 8.6802 1.125 18 1.125C27.3198 1.125 34.875 8.6802 34.875 18Z' fill='%2394C139' stroke='%2394C139' stroke-width='2'/%3E%3Cpath d='M11.0477 16.1777L18 23.4683L24.9523 16.1777L26.125 17.4075L18 25.9277L9.875 17.4075L11.0477 16.1777Z' fill='white'/%3E%3Cpath d='M18.8125 25.1133L17.1875 25.1133L17.1875 10.4883L18.8125 10.4883L18.8125 25.1133Z' fill='white'/%3E%3C/svg%3E");
}
.__sh_rvp .__sidemenu_walker .accordion-button[aria-expanded=true] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 1px solid #eee !important;
}
.__sh_rvp .__sidemenu_walker .accordion-body {
  background-color: #fff !important;
  color: #333;
  font-size: 1rem;
  border: 1px solid var(--primary);
  border-top: none;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 0.75rem;
}
.__sh_rvp .__sidemenu_walker .accordion-body li a {
  font-weight: 400;
}

.__page_menu {
  position: relative;
}
.__page_menu .__side_menu_sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.__sh_menu_btn {
  background-color: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 8px 15px;
}
.__sh_menu_btn:hover {
  background-color: var(--secondary);
}

.__sh_pg_offcanvas {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.__tc_content {
  line-height: 1.7;
  color: #444;
}
.__tc_content p {
  margin-bottom: 1.5rem;
}
.__tc_content {
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem var(--primary-light);
}
.__tc_content .accordion {
  border: none;
}
.__tc_content .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}
.__tc_content .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--primary-light);
}
.__tc_content .accordion-button {
  border: 1px solid var(--primary) !important;
  background-color: #fff !important;
  color: #000 !important;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.13769rem;
  border-radius: 1rem !important;
}
.__tc_content .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: #f8f9fa !important;
  box-shadow: none;
}
.__tc_content .accordion-button::after {
  filter: none;
  content: "";
  background-size: 2rem !important;
  width: 2rem !important;
  height: 2rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5rem' height='5rem' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M34.875 18C34.875 27.3198 27.3198 34.875 18 34.875C8.68019 34.875 1.125 27.3198 1.125 18C1.125 8.68019 8.6802 1.125 18 1.125C27.3198 1.125 34.875 8.6802 34.875 18Z' fill='%2394C139' stroke='%2394C139' stroke-width='2'/%3E%3Cpath d='M11.0477 16.1777L18 23.4683L24.9523 16.1777L26.125 17.4075L18 25.9277L9.875 17.4075L11.0477 16.1777Z' fill='white'/%3E%3Cpath d='M18.8125 25.1133L17.1875 25.1133L17.1875 10.4883L18.8125 10.4883L18.8125 25.1133Z' fill='white'/%3E%3C/svg%3E");
}
.__tc_content .accordion-button[aria-expanded=true] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 1px solid #eee !important;
}
.__tc_content .accordion-body {
  background-color: #fff !important;
  color: #333;
  font-size: 1rem;
}
.__tc_content .__accodion_abt_header {
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.13769rem;
}
@media screen and (max-width: 768px) {
  .__tc_content .__accodion_abt_header {
    font-size: 1.15rem;
  }
}
.__tc_content .accordion-body {
  border: 1px solid var(--primary);
  border-top: none;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.__tc_content .__admin_title {
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.06688rem;
}
.__tc_content .__designation {
  color: #000;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45963rem;
}
.__tc_content .__email {
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45963rem;
  text-decoration: none;
}
.__tc_content .__card {
  position: relative;
}
.__tc_content .__card::after {
  content: "";
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary);
  opacity: 0.5;
}
.__tc_content .__card::before {
  content: "";
  position: absolute;
  height: 60%;
  left: 0;
  bottom: 0;
  border-left: 2px solid var(--primary);
  opacity: 0.5;
}
.__tc_content .__card .__for_the_add_pseudos {
  position: relative;
}
.__tc_content .__card .__for_the_add_pseudos::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 60%;
  transform: translate(-32%, 0%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}
.__tc_content .__card .__for_the_add_pseudos::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 85%;
  transform: translate(0%, 32%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}
.__tc_content .__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.__tc_content .__cred_title {
  color: #94C139;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.73888rem;
}
.__tc_content .__desc {
  color: #313131;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.56038rem;
}
.__tc_content .__cred_para {
  margin-top: 1rem;
  font-size: 1.1rem;
}
.__tc_content .__cred_para p {
  margin-bottom: 0;
  color: #aaa;
}
.__tc_content .__cred_para a {
  color: var(--primary);
  font-size: 0.95rem;
}
.__tc_content h2:not(.accordion-header),
.__tc_content h3:not(.accordion-header),
.__tc_content h4:not(.accordion-header),
.__tc_content h5:not(.accordion-header),
.__tc_content h6:not(.accordion-header) {
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: "Kumbh Sans", sans-serif;
}
.__tc_content ol,
.__tc_content ul:not(.slick-dots) {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.__tc_content ol li,
.__tc_content ul:not(.slick-dots) li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.__tc_content ul:not(.slick-dots) {
  list-style: none;
}
.__tc_content ul:not(.slick-dots) li::before {
  content: "•";
  color: #82AA31;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.__sh_revamp_side_menu_page {
  border-left: 1px solid #f2f2f2;
  padding-left: 2rem;
}
@media screen and (max-width: 991px) {
  .__sh_revamp_side_menu_page {
    border-left: none;
    padding-left: 0.5rem;
  }
}

.__empty_state {
  border: 1px solid rgba(202, 223, 165, 0.5333333333);
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(202, 223, 165, 0.1);
  padding: 1rem 0.5rem;
}
.__empty_state svg {
  animation: floatY 3s ease-in-out infinite;
}
.__empty_state h5 {
  color: #636363;
}
.__empty_state p {
  font-size: 14px;
  color: #d5d5d5;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.__wp_custom_content {
  --primary-color: #8DB244;
  --primary-light: #cadfa588;
  --text-dark: #212529;
  font-family: "Instrument Sans", "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}
.__wp_custom_content h1,
.__wp_custom_content h2,
.__wp_custom_content h3,
.__wp_custom_content h4,
.__wp_custom_content h5,
.__wp_custom_content h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
}
.__wp_custom_content p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.__wp_custom_content ul,
.__wp_custom_content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.__wp_custom_content ul li,
.__wp_custom_content ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.__wp_custom_content ul {
  list-style: none;
}
.__wp_custom_content ul li::before {
  content: "•";
  color: #82AA31;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.__wp_custom_content .wp-block-button__link,
.__wp_custom_content .btn-custom {
  background-color: #82AA31;
  color: #fff;
  padding: 0.5rem 1.75rem;
  border-radius: 1rem !important;
  text-decoration: none !important;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #82AA31;
  font-size: 1rem;
}
.__wp_custom_content .wp-block-button__link:hover,
.__wp_custom_content .btn-custom:hover {
  background-color: #fff;
  color: #82AA31;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.__wp_custom_content blockquote {
  border-left: 4px solid #82AA31;
  padding: 1rem 2rem;
  margin: 2rem 0;
  background-color: #f8f9fa;
  font-style: italic;
}
.__wp_custom_content a {
  color: #82AA31;
  text-decoration: none;
  transition: all 0.3s ease;
}
.__wp_custom_content a:hover {
  text-decoration: underline;
}
.__wp_custom_content iframe {
  width: 100%;
  height: 500px;
  border: none;
  overflow: auto;
}
.__wp_custom_content {
  /* Modern browsers — Chrome 121+, Edge 121+, Firefox, Safari 18.2+ */
}
.__wp_custom_content * {
  scrollbar-width: thin;
  scrollbar-color: #82AA31 rgba(202, 223, 165, 0.5333333333);
}
.__wp_custom_content {
  /* WebKit (Chrome, Edge, Safari) */
}
.__wp_custom_content *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.__wp_custom_content *::-webkit-scrollbar-track {
  background-color: rgba(202, 223, 165, 0.5333333333);
  border-radius: 6px;
}
.__wp_custom_content *::-webkit-scrollbar-thumb {
  background-color: #82AA31;
  border-radius: 6px;
  min-height: 20px;
}
.__wp_custom_content {
  /* Optional hover effects */
}
.__wp_custom_content *::-webkit-scrollbar-thumb:hover {
  background-color: rgb(105.7808219178, 138.3287671233, 39.8712328767);
}
.__wp_custom_content {
  /* Remove arrows */
}
.__wp_custom_content *::-webkit-scrollbar-button {
  display: none;
}

.event-grid .event-card {
  position: relative;
}
.event-grid .event-card .event-card-inner {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}
.event-grid .event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 12px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.event-grid .event-date-badge .day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.event-grid .event-date-badge .month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.event-grid .event-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
.event-grid .event-title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}
.event-grid .event-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
}
.event-grid .event-meta .meta-item svg {
  margin-top: -3px;
  margin-right: 4px;
}
.event-grid .event-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-grid .event-read-more-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.3s;
}
.event-grid .event-read-more-btn .btn-icon {
  margin-left: 10px;
}
.event-grid .event-read-more-btn .btn-icon svg {
  width: 45px;
  height: 45px;
}
.event-grid .event-read-more-btn:hover {
  color: var(--primary);
  padding-left: 5px;
}

.__about_grid .aos-animate .__card_inner .__date_label {
  max-width: 100px;
  opacity: 1;
  padding: 0.35rem 0.85rem;
}
.__about_grid .__card_inner {
  position: relative;
}
.__about_grid .__card_inner .__date_label {
  position: absolute;
  top: 10%;
  left: 0;
  padding: 0.35rem 0;
  background-color: var(--primary);
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3125rem;
  z-index: 3;
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  max-width: 0;
  opacity: 0;
  transition: all 0.5s ease 1s;
  overflow: hidden;
}
.__about_grid .__card_inner .__event_title {
  color: #000;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.__about_grid .__card_inner .__event_desc {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 2px;
}
.__about_grid .__card_inner .__career_desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.__about_grid .__card_inner .__career_desc p {
  margin: 0;
}
.__about_grid .__card_inner .__career_desc a {
  color: inherit;
  text-decoration: none;
}
.__about_grid .__card_inner .__career_desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.__about_grid .__card_inner .__career_desc h1,
.__about_grid .__card_inner .__career_desc h2,
.__about_grid .__card_inner .__career_desc h3,
.__about_grid .__card_inner .__career_desc h4,
.__about_grid .__card_inner .__career_desc h5,
.__about_grid .__card_inner .__career_desc h6 {
  color: #333;
  font-weight: 500;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.__about_grid .__card_inner .__career_desc h1 {
  font-size: 2rem;
  font-weight: 700;
}
.__about_grid .__card_inner .__career_desc h2 {
  font-size: 1.75rem;
  font-weight: 600;
}
.__about_grid .__card_inner .__career_desc h3 {
  font-size: 1.5rem;
}
.__about_grid .__card_inner .__career_desc h4 {
  font-size: 1.25rem;
}
.__about_grid .__card_inner .__career_desc h5 {
  font-size: 1rem;
}
.__about_grid .__card_inner .__career_desc h6 {
  font-size: 0.875rem;
}
.__about_grid .__card_inner::after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1s ease-in-out;
}
.__about_grid .__card_inner.aos-animate::after {
  width: 100%;
}
.__about_grid .__card_inner::before {
  content: "";
  position: absolute;
  height: 0%;
  left: 0;
  bottom: 0;
  border-left: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1s ease-in-out;
}
.__about_grid .__card_inner.aos-animate::before {
  height: 100%;
}
.__about_grid .__card_inner .__for_the_add_pseudos {
  position: relative;
}
.__about_grid .__card_inner .__for_the_add_pseudos::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 100%;
  transform: translate(-32%, 0%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1s;
}
.__about_grid .__card_inner .__for_the_add_pseudos.aos-animate::before {
  scale: 1;
}
.__about_grid .__card_inner .__for_the_add_pseudos::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 100%;
  transform: translate(0%, 32%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1s;
}
.__about_grid .__card_inner .__for_the_add_pseudos.aos-animate::after {
  scale: 1;
}
.__about_grid .__card_inner .__abt_grid_img {
  height: 10rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.__about_grid .__card_inner .__abt_grid_img:hover {
  transform: scale(1.01);
  filter: brightness(0.8);
}
.__about_grid .__card_inner .__read_more {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.__about_grid .__card.aos-animate .__card_inner::after {
  width: 100%;
}
.__about_grid .__card.aos-animate .__card_inner::before {
  height: 100%;
}
.__about_grid .__card.aos-animate .__card_inner .__for_the_add_pseudos::before {
  scale: 1;
}
.__about_grid .__card.aos-animate .__card_inner .__for_the_add_pseudos::after {
  scale: 1;
}
.__about_grid .__read_more_wrapper svg {
  transition: all 0.3s ease-in-out;
  width: 2.5rem;
}
.__about_grid .__read_more_wrapper:hover svg {
  transform: rotate(-45deg);
}
.__about_grid .__post_info .__post_date {
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1rem;
}
.__about_grid .__post_info {
  margin-bottom: 0.5rem;
}
.__about_grid .bg-primary {
  background-color: #82AA31 !important;
}

.__faculty_content .__card {
  position: relative;
  margin-top: 5rem;
}
.__faculty_content .__card::after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1s ease-in-out;
}
.__faculty_content .__card::before {
  content: "";
  position: absolute;
  height: 0%;
  left: 0;
  bottom: 0;
  border-left: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1s ease-in-out;
}
.__faculty_content .__card.aos-animate::after {
  width: 85%;
}
.__faculty_content .__card.aos-animate::before {
  height: 60%;
}
.__faculty_content .__card .__for_the_add_pseudos {
  position: relative;
}
.__faculty_content .__card .__for_the_add_pseudos::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 60%;
  transform: translate(-32%, 0%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1s;
}
.__faculty_content .__card .__for_the_add_pseudos::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 85%;
  transform: translate(0%, 32%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1s;
}
.__faculty_content .__card.aos-animate .__for_the_add_pseudos::before, .__faculty_content .__card.aos-animate .__for_the_add_pseudos::after {
  scale: 1;
}
.__faculty_content .__card .__admin_img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.__faculty_content .__card .__admin_title {
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.06688rem;
  margin-bottom: 0.25rem;
}
.__faculty_content .__card .__designation {
  color: #000;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45963rem;
}
.__faculty_content .__card .__email {
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45963rem;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.__faculty_content .__card .__email:hover {
  color: var(--primary);
}

.__title_decoration {
  position: relative;
  margin-left: 1rem;
}
.__title_decoration .__main_title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Kumbh Sans", sans-serif;
  position: relative;
}
@media screen and (max-width: 992px) {
  .__title_decoration .__main_title {
    margin-left: 2.8rem;
    font-size: 1.8rem;
  }
}
.__title_decoration::after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1.5s ease-in-out;
}
.__title_decoration.aos-animate::after {
  width: 80%;
}
.__title_decoration::before {
  content: "";
  position: absolute;
  height: 0%;
  left: 0;
  bottom: 0;
  border-left: 2px solid var(--primary);
  opacity: 0.5;
  transition: all 1.5s ease-in-out;
}
.__title_decoration.aos-animate::before {
  height: 160%;
}
@media screen and (max-width: 768px) {
  .__title_decoration.aos-animate::before {
    height: 130%;
  }
}
.__title_decoration .__for_the_add_pseudos {
  position: relative;
  padding: 1rem;
}
.__title_decoration .__for_the_add_pseudos::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 160%;
}
@media screen and (max-width: 768px) {
  .__title_decoration .__for_the_add_pseudos::before {
    bottom: 130%;
  }
}
.__title_decoration .__for_the_add_pseudos::before {
  transform: translate(-32%, 0%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1.5s;
}
.__title_decoration .__for_the_add_pseudos.aos-animate::before {
  scale: 1;
}
.__title_decoration .__for_the_add_pseudos::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 80%;
  transform: translate(0%, 32%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  scale: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.5) 1.5s;
}
.__title_decoration .__for_the_add_pseudos.aos-animate::after {
  scale: 1;
}

.custom-post-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 6px #e1e1e1, 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.custom-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: rgba(130, 170, 49, 0.2);
}
.custom-post-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}
.custom-post-card:hover .card-image-wrapper::after {
  opacity: 1;
}
.custom-post-card:hover .card-title a {
  color: rgb(99.7260273973, 130.4109589041, 37.5890410959);
}
.custom-post-card:hover .read-more-link .arrow {
  transform: translateX(5px);
}
.custom-post-card .card-image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.custom-post-card .card-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-post-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.custom-post-card .card-image-wrapper .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(130, 170, 49, 0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.custom-post-card .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.custom-post-card .card-content .card-meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-post-card .card-content .card-meta .card-date {
  font-size: 0.8rem;
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.custom-post-card .card-content .card-title {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.custom-post-card .card-content .card-title a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom-post-card .card-content .card-excerpt {
  margin-bottom: 4px;
  flex-grow: 1;
}
.custom-post-card .card-content .card-excerpt p {
  margin: 0;
  font-size: 0.95rem;
  color: rgb(97.75, 97.75, 97.75);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom-post-card .card-content .read-more-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: #82AA31;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.custom-post-card .card-content .read-more-link .arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.__dpt_testimonials_slick {
  --color: var(--primary);
}
.__dpt_testimonials_slick .slick-track {
  display: flex !important;
}
.__dpt_testimonials_slick .slick-slide {
  height: inherit !important;
  padding: 24px 0.5rem 60px;
  margin: 0 10px;
  outline: none;
}
.__dpt_testimonials_slick .__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 68px 0.5rem 0.5rem;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 6px #e1e1e1, 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: visible;
}
.__dpt_testimonials_slick .__card::before {
  content: "";
  position: absolute;
  top: 20px;
  z-index: 1;
  width: 260px;
  height: 260px;
  background: wheat;
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle 240px, rgba(0, 0, 0, 0) 98%, #fff);
          mask: radial-gradient(circle 240px, rgba(0, 0, 0, 0) 98%, #fff);
  clip-path: circle(60px at center);
}
.__dpt_testimonials_slick .__card::after {
  content: none;
}
.__dpt_testimonials_slick .__card:hover .__testi_icon {
  animation: wiggle 0.6s ease-in-out;
}
.__dpt_testimonials_slick .__box {
  position: absolute;
  top: -50px;
  width: 120px;
  height: 120px;
  padding: 8px;
  z-index: 2;
}
.__dpt_testimonials_slick .__box::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  background: white;
  background-image: linear-gradient(to top, transparent, white 10px);
  border-radius: 50%;
  box-shadow: 3px 3px 3px #e1e1e1 inset, inset -3px -3px 3px #e1e1e1;
  clip-path: inset(50px 0 0 0);
}
.__dpt_testimonials_slick .__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all ease 0.5s;
}
.__dpt_testimonials_slick .__box img.hovered {
  transform: rotateY(180deg);
}
.__dpt_testimonials_slick .__content {
  padding-bottom: 0;
  text-align: left;
}
.__dpt_testimonials_slick .__content ::-webkit-scrollbar {
  width: 8px;
}
.__dpt_testimonials_slick .__content ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}
.__dpt_testimonials_slick .__content ::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 20px;
}
.__dpt_testimonials_slick .__content ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.__dpt_testimonials_slick .__content .p1 {
  color: #6a6a6a;
  padding: 0 0.5rem;
}
.__dpt_testimonials_slick .__content .p2,
.__dpt_testimonials_slick .__content .__testi_message {
  font-size: 15px;
  height: 3lh;
  max-height: 128px;
  margin-bottom: 0;
  padding: 0;
  overflow-y: auto;
  line-height: 1.8rem;
}
.__dpt_testimonials_slick .__content .__testi_title {
  font-size: 1.3rem;
  font-weight: 500;
  color: black;
  margin-bottom: 0.5rem;
}
.__dpt_testimonials_slick .__content .__testi_subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1rem;
}
.__dpt_testimonials_slick .__testi_icon {
  position: absolute;
  bottom: 0;
  left: 80%;
  width: 12%;
  margin-bottom: -24px;
  z-index: 3;
  transform-origin: center;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  15%, 75% {
    transform: rotate(-2deg);
  }
  30% {
    transform: rotate(-4deg);
  }
  45% {
    transform: rotate(2deg);
  }
  60% {
    transform: rotate(4deg);
  }
}
.course-card {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
  /* soft depth */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.course-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  /* subtle overlay for premium feel */
}
.course-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}
.course-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.course-card:hover .course-card__image img {
  transform: scale(1.06);
}
.course-card {
  /* TYPE BADGE (TOP RIGHT ABSOLUTE) */
}
.course-card__type {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #82AA31;
  background: #eef5e3;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.course-card__content {
  padding: 20px 18px 24px;
  text-align: center;
  background: #ffffff;
}
.course-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #82AA31;
  line-height: 1.4;
  margin: 0;
  /* nicer text balance */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-card {
  /* optional link wrapper support */
}
.course-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card Container */
.__tc_content .ui-card-v2 {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.__tc_content .ui-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.__tc_content .ui-card-v2:hover .ui-card-v2__media img {
  transform: scale(1.1);
}
.__tc_content .ui-card-v2 {
  /* Image Section */
}
.__tc_content .ui-card-v2__media {
  max-height: 300px;
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa;
}
.__tc_content .ui-card-v2__media img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.__tc_content .ui-card-v2 {
  /* Body Content */
}
.__tc_content .ui-card-v2__body {
  padding: 1.5rem;
  padding-top: 2.2rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.__tc_content .ui-card-v2 {
  /* Floating Brand Logo */
}
.__tc_content .ui-card-v2__brand {
  position: absolute;
  top: -25px;
  right: 20px;
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  z-index: 2;
}
.__tc_content .ui-card-v2__brand img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.__tc_content .ui-card-v2 {
  /* Typography */
}
.__tc_content .ui-card-v2__title {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.3rem 0;
  font-size: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.2;
}
.__tc_content .ui-card-v2__subtitle {
  color: #82AA31;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.__tc_content .ui-card-v2__info {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.__tc_content .ui-card-v2__info::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #82AA31;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.__tc_content .ui-card-v2 {
  /* Salary Badge */
}
.__tc_content .ui-card-v2__badge {
  margin-top: auto;
  background: rgba(202, 223, 165, 0.5333333333);
  color: #82AA31;
  padding: 0.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid #8cc63f;
}

.__banner_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.__sdp_banner {
  min-height: 300px;
  background: linear-gradient(0deg, rgba(69, 91, 27, 0.75) 0%, rgba(69, 91, 27, 0.75) 100%), url(../images/page_header_strip.webp) lightgray -282.892px -1399.033px/133.809% 858.15% no-repeat;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.__abt_m_title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}/*# sourceMappingURL=main.css.map */