@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html.lenis-active,
html.lenis-active body {
  scroll-behavior: auto !important;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: color 0.2s ease-in-out;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #E8A020;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #FAF9F6;
  color: #111827;
  overflow-x: hidden;
  position: relative;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: #FAF9F6;
}
body::-webkit-scrollbar-thumb {
  background: rgba(27, 94, 32, 0.2);
  border-radius: 9999px;
  -webkit-transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(27, 94, 32, 0.4);
}

::-moz-selection {
  background-color: rgba(232, 160, 32, 0.3);
  color: #3E9D55;
}

::selection {
  background-color: rgba(232, 160, 32, 0.3);
  color: #3E9D55;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  color: #3E9D55;
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}

p {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #4B5563;
  line-height: 1.6;
}

.lang-ne {
  font-family: "Mukta", "Poppins", sans-serif;
  line-height: 1.4;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.text-center {
  text-align: center;
}

.text-teal {
  color: #14B8A6 !important;
}

.text-accent {
  color: #E8A020 !important;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.custom-cursor-dot,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.3s ease, width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
  opacity: 0;
}
@media (hover: none) {
  .custom-cursor-dot,
.custom-cursor-ring {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .custom-cursor-dot,
.custom-cursor-ring {
    -webkit-animation: none !important;
            animation: none !important;
    transition: none !important;
    transform: none !important;
    display: none !important;
  }
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #E8A020;
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(27, 94, 32, 0.4);
  background-color: rgba(27, 94, 32, 0);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: transparent;
  text-transform: uppercase;
}

body.cursor-active .custom-cursor-ring {
  width: 56px;
  height: 56px;
  background-color: rgba(27, 94, 32, 0.08);
  border-color: #1B5E20;
}

body.cursor-hover-accent .custom-cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(232, 160, 32, 0.1);
  border-color: #E8A020;
}
body.cursor-hover-accent .custom-cursor-dot {
  background-color: #1B5E20;
}

body.cursor-drag-mode .custom-cursor-ring {
  width: 64px;
  height: 64px;
  border-color: #E8A020;
  background-color: rgba(232, 160, 32, 0.9);
  color: #3E9D55;
}
body.cursor-drag-mode .custom-cursor-dot {
  opacity: 0;
}

body.cursor-view-mode .custom-cursor-ring {
  width: 64px;
  height: 64px;
  border-color: #14B8A6;
  background-color: rgba(20, 184, 166, 0.9);
  color: #FFFFFF;
}
body.cursor-view-mode .custom-cursor-dot {
  opacity: 0;
}

.announcement-bar {
  background-color: #3E9D55;
  color: #FFFFFF;
  padding: 0 2.5rem 0 1rem;
  text-align: center;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.announcement-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 94, 32, 0.16), transparent 34%, rgba(232, 160, 32, 0.2));
  pointer-events: none;
}
.announcement-bar .announcement-track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-bar .announcement-marquee {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  min-width: max-content;
  padding-right: 2.5rem;
  -webkit-animation: announcement-slide 24s linear infinite;
          animation: announcement-slide 24s linear infinite;
  will-change: transform;
}
.announcement-bar .announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.announcement-bar .announcement-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.7);
}
.announcement-bar .announcement-title {
  color: #E8A020;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.announcement-bar .announcement-title::before {
  background-color: #E8A020;
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.18);
}
.announcement-bar:hover .announcement-marquee {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.announcement-bar a {
  color: #E8A020;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.announcement-bar a:hover {
  color: #FFFFFF;
}
.announcement-bar .close-announcement {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.announcement-bar .close-announcement:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}
.announcement-bar.hidden {
  transform: translateY(-100%);
  margin-top: -34px;
}

@-webkit-keyframes announcement-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes announcement-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar .announcement-marquee {
    -webkit-animation: none;
            animation: none;
    transform: none;
  }
}

.header-nav {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.announcement-bar.hidden ~ .header-nav {
  top: 0;
}
.header-nav.scrolled {
  top: 0 !important;
  background-color: rgba(250, 249, 246, 0.85);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(22, 51, 94, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
  transition: height 0.4s ease;
}
.scrolled .nav-container {
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #3E9D55;
  z-index: 1001;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.4s ease;
}
.nav-logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-text span:first-child {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-logo .logo-text span:last-child {
  font-size: 0.7rem;
  font-weight: 500;
  color: #4B5563;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding: 6px 12px;
    border-radius: 9999px;
  }
}

.nav-link {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  padding: 8px 16px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #1B5E20;
}
.nav-link.active {
  color: #3E9D55;
}

.nav-indicator {
  position: absolute;
  height: 36px;
  background-color: rgba(27, 94, 32, 0.05);
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.nav-indicator.visible {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3E9D55;
  border-radius: 9999px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background-color 0.4s ease;
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #3E9D55;
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #3E9D55;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.mobile-overlay-nav .mobile-link {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #3E9D55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(2) {
  transition-delay: 0.16s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(3) {
  transition-delay: 0.24s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(4) {
  transition-delay: 0.32s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(5) {
  transition-delay: 0.4s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(6) {
  transition-delay: 0.48s;
}
.mobile-overlay.active .mobile-overlay-nav .mobile-link:nth-child(7) {
  transition-delay: 0.56s;
}
.mobile-overlay-nav .mobile-link:hover {
  color: #E8A020;
  padding-left: 8px;
}

.mobile-overlay-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
  border-top: 1px solid rgba(27, 94, 32, 0.1);
  padding-top: 1.5rem;
}
.mobile-overlay.active .mobile-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay-footer .contact-info {
  font-size: 0.9rem;
  color: #4B5563;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background-color: #1B5E20;
  color: #FFFFFF;
  border: 1px solid #1B5E20;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #254a7f, #3E9D55);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(27, 94, 32, 0.25);
  border-color: #254a7f;
  transform: translateY(-2px);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background-color: #E8A020;
  color: #111827;
  border: 1px solid #E8A020;
}
.btn-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #edb44e, #cf8b15);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-accent:hover {
  box-shadow: 0 10px 25px rgba(232, 160, 32, 0.35);
  border-color: #edb44e;
  transform: translateY(-2px);
}
.btn-accent:hover::before {
  opacity: 1;
}
.btn-accent:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: #3E9D55;
  border: 2px solid #1B5E20;
  box-shadow: none;
}
.btn-secondary:hover {
  background-color: #1B5E20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #1B5E20;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-link:hover {
  color: #E8A020;
}
.text-link:hover svg {
  transform: translateX(6px);
  fill: #E8A020;
}

.magnetic-btn-wrap {
  display: inline-block;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
}
.badge.badge-primary {
  background-color: rgba(27, 94, 32, 0.1);
  color: #1B5E20;
}
.badge.badge-accent {
  background-color: rgba(232, 160, 32, 0.15);
  color: #aa7312;
}
.badge.badge-teal {
  background-color: rgba(20, 184, 166, 0.1);
  color: #f0fdfa;
}
.badge.badge-teal-light {
  background-color: rgba(240, 253, 250, 0.1);
  color: #f0fdfa;
}

.card {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 32, 0.06);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
  border-color: rgba(27, 94, 32, 0.1);
}

.program-card-wrap {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  border-radius: 24px;
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  overflow: visible;
}
.program-card .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.06), rgba(37, 74, 127, 0.12));
  color: #1B5E20;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}
.program-card .card-icon svg {
  width: 24px;
  height: 24px;
}
.program-card .card-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  transform: translateZ(25px);
}
.program-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #3E9D55;
  transform: translateZ(35px);
}
.program-card .duration-text {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #14B8A6;
  margin-bottom: 1rem;
  transform: translateZ(20px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.program-card .duration-text svg {
  width: 14px;
  height: 14px;
}
.program-card .card-hook {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  transform: translateZ(15px);
}
.program-card .card-footer {
  transform: translateZ(20px);
  margin-top: auto;
  border-top: 1px solid rgba(27, 94, 32, 0.05);
  padding-top: 1rem;
}
.program-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #E8A020, #14B8A6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.program-card:hover {
  box-shadow: 0 20px 40px rgba(62, 157, 85, 0.12);
  border-color: transparent;
}
.program-card:hover::after {
  opacity: 1;
}
.program-card:hover .card-icon {
  transform: translateZ(45px) scale(1.05);
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.1), rgba(207, 139, 21, 0.2));
  color: #c18314;
}

.program-card-wrap.featured-bento {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .program-card-wrap.featured-bento {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .program-card-wrap.featured-bento {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.program-card-wrap.featured-bento .program-card {
  background: linear-gradient(135deg, #3E9D55, #1c3c6d);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.program-card-wrap.featured-bento .program-card .card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #E8A020;
}
.program-card-wrap.featured-bento .program-card h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
}
.program-card-wrap.featured-bento .program-card .duration-text {
  color: #E8A020;
}
.program-card-wrap.featured-bento .program-card .card-hook {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}
.program-card-wrap.featured-bento .program-card .text-link {
  color: #E8A020;
}
.program-card-wrap.featured-bento .program-card .text-link:hover {
  color: #FFFFFF;
}
.program-card-wrap.featured-bento .program-card .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 94, 32, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card .blog-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background-color: #3E9D55;
}
.blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card .blog-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex-grow: 1;
}
.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4B5563;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #3E9D55;
}
.blog-card h3 a:hover {
  color: #E8A020;
}
.blog-card p {
  font-size: 0.9rem;
  color: #4B5563;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.blog-card .blog-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 94, 32, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  border-color: rgba(27, 94, 32, 0.1);
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.course-left .reveal-up {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 94, 32, 0.07);
}
.course-left .third-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(22, 51, 94, 0.08);
}

.third-card {
  color: #3E9D55;
  font-weight: bold;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(22, 51, 94, 0.08);
}
.third-card a {
  color: #111827 !important;
  font-weight: normal;
}

.carousel-section-container {
  position: relative;
  overflow: visible;
}

.carousel-viewport {
  overflow: hidden;
  padding: 1.5rem 0 2.5rem;
  position: relative;
  cursor: -webkit-grab;
  cursor: grab;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.carousel-viewport::before, .carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .carousel-viewport::before, .carousel-viewport::after {
    display: block;
  }
}
.carousel-viewport::before {
  left: 0;
  background: linear-gradient(to right, #FAF9F6 0%, rgba(250, 249, 246, 0) 100%);
}
.carousel-viewport::after {
  right: 0;
  background: linear-gradient(to left, #FAF9F6 0%, rgba(250, 249, 246, 0) 100%);
}
.carousel-viewport:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .carousel-track {
    padding: 0 4rem;
    gap: 2.5rem;
  }
}

.testimonial-card {
  width: 290px;
  background-color: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(27, 94, 32, 0.06);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@media (min-width: 480px) {
  .testimonial-card {
    width: 340px;
    padding: 2.5rem;
  }
}
@media (min-width: 768px) {
  .testimonial-card {
    width: 420px;
  }
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: rgba(27, 94, 32, 0.05);
  pointer-events: none;
}
.testimonial-card .quote-icon svg {
  width: 100%;
  height: 100%;
}
.testimonial-card .testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .testimonial-card .testimonial-quote {
    font-size: 1.05rem;
  }
}
.testimonial-card .testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(27, 94, 32, 0.05);
  padding-top: 1rem;
}
.testimonial-card .profile-img-wrap {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #E8A020;
  background-color: #3E9D55;
}
.testimonial-card .profile-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.testimonial-card .profile-details {
  display: flex;
  flex-direction: column;
}
.testimonial-card .profile-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #3E9D55;
  margin-bottom: 2px;
}
.testimonial-card .profile-details .badge {
  align-self: flex-start;
  margin-top: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
  border-color: rgba(27, 94, 32, 0.1);
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .carousel-controls {
    padding: 0 4rem;
  }
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}
.carousel-indicators .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(27, 94, 32, 0.2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-indicators .indicator-dot.active {
  background-color: #E8A020;
  width: 24px;
}

.carousel-arrows {
  display: flex;
  gap: 1rem;
}
.carousel-arrows .carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(27, 94, 32, 0.15);
  background-color: #FFFFFF;
  color: #1B5E20;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-arrows .carousel-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.carousel-arrows .carousel-arrow:hover {
  background-color: #1B5E20;
  color: #FFFFFF;
  border-color: #1B5E20;
}
.carousel-arrows .carousel-arrow:hover.arrow-prev svg {
  transform: translateX(-2px);
}
.carousel-arrows .carousel-arrow:hover.arrow-next svg {
  transform: translateX(2px);
}
.carousel-arrows .carousel-arrow:active {
  transform: scale(0.95);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(62, 157, 85, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1024px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-image-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.lightbox-overlay.active .lightbox-image-wrapper img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-caption {
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.lightbox-overlay.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 2001;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.lightbox-close:hover {
  background-color: #E8A020;
  color: #3E9D55;
  border-color: #E8A020;
}
.lightbox-close:hover svg {
  transform: rotate(90deg);
}
.lightbox-close:active {
  transform: scale(0.9);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.lightbox-arrow:hover {
  background-color: #FFFFFF;
  color: #3E9D55;
  border-color: #FFFFFF;
}
.lightbox-arrow:active {
  transform: scale(0.9);
}
.lightbox-arrow.lightbox-prev {
  left: 1.5rem;
}
.lightbox-arrow.lightbox-prev:hover svg {
  transform: translateX(-4px);
}
@media (max-width: 768px) {
  .lightbox-arrow.lightbox-prev {
    left: 10px;
  }
}
.lightbox-arrow.lightbox-next {
  right: 1.5rem;
}
.lightbox-arrow.lightbox-next:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .lightbox-arrow.lightbox-next {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 157, 85, 0.85) 0%, rgba(62, 157, 85, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item .gallery-overlay h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 2px;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item .gallery-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay h4, .gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}
.gallery-item.bento-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item.bento-tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}
.gallery-item.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .gallery-item {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
    aspect-ratio: 4/3 !important;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  background-color: #3E9D55;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  visibility: visible;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-logo-wrap {
  width: 96px;
  height: 96px;
  position: relative;
}
.loader-logo-wrap .loader-svg {
  width: 100%;
  height: 100%;
}
.loader-logo-wrap .loader-svg .logo-path {
  fill: none;
  stroke: #E8A020;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  -webkit-animation: drawLogo 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: drawLogo 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loader-text {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(15px);
  -webkit-animation: fadeTextUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
          animation: fadeTextUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.loader-text span {
  color: #E8A020;
}

.loader-bar-container {
  width: 160px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease 0.6s forwards;
          animation: fadeIn 0.5s ease 0.6s forwards;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #E8A020;
  border-radius: 9999px;
  -webkit-animation: loadProgress 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: loadProgress 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes drawLogo {
  0% {
    stroke-dashoffset: 400;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLogo {
  0% {
    stroke-dashoffset: 400;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fadeTextUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeTextUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes loadProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loadProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
.floating-apply-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  transform: translateY(100px) scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.floating-apply-cta.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.floating-apply-cta .btn-floating {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-color: #E8A020;
  color: #3E9D55;
  border: none;
  box-shadow: 0 10px 30px rgba(232, 160, 32, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-apply-cta .btn-floating .cta-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-apply-cta .btn-floating .cta-icon svg {
  width: 100%;
  height: 100%;
}
.floating-apply-cta .btn-floating .cta-text {
  position: absolute;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.floating-apply-cta .btn-floating::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eeb857, #cf8b15);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.floating-apply-cta .btn-floating:hover {
  width: 160px;
  box-shadow: 0 15px 35px rgba(232, 160, 32, 0.5);
  transform: translateY(-4px);
}
.floating-apply-cta .btn-floating:hover::before {
  opacity: 1;
}
.floating-apply-cta .btn-floating:hover .cta-icon {
  transform: translateY(-30px);
  opacity: 0;
}
.floating-apply-cta .btn-floating:hover .cta-text {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.floating-apply-cta .btn-floating:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .floating-apply-cta .btn-floating {
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 25px rgba(232, 160, 32, 0.3);
  }
  .floating-apply-cta .btn-floating:hover {
    width: 52px;
  }
  .floating-apply-cta .btn-floating:hover .cta-icon {
    transform: none;
    opacity: 1;
  }
  .floating-apply-cta .btn-floating:hover .cta-text {
    display: none;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 768px) {
  .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

[class*=col-] {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  [class*=col-] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-asym-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-asym-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.grid-asym-inverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-asym-inverse {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.mb-xs {
  margin-bottom: 0.5rem !important;
}

.mb-sm {
  margin-bottom: 1rem !important;
}

.mb-md {
  margin-bottom: 1.5rem !important;
}

.mb-lg {
  margin-bottom: 2.5rem !important;
}

.mb-xl {
  margin-bottom: 4rem !important;
}

.mt-xs {
  margin-top: 0.5rem !important;
}

.mt-sm {
  margin-top: 1rem !important;
}

.mt-md {
  margin-top: 1.5rem !important;
}

.mt-lg {
  margin-top: 2.5rem !important;
}

.mt-xl {
  margin-top: 4rem !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 4rem;
  background-color: #3E9D55;
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 6rem;
  }
}

.hero-bg-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
.hero-bg-parallax img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0.4) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(62, 157, 85, 0.8) 0%, rgba(62, 157, 85, 0.4) 40%, #3E9D55 100%);
}

.hero-mesh-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  color: #FFFFFF;
  max-width: 800px;
}
.hero-content .hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #E8A020;
  margin-bottom: 1rem;
  background-color: rgba(232, 160, 32, 0.12);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(232, 160, 32, 0.25);
}
.hero-content .hero-pretitle span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #E8A020;
  border-radius: 50%;
  box-shadow: 0 0 8px #E8A020;
}
.hero-content h1 {
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-content h1 .word-reveal-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-content h1 .word-reveal-item {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.loaded .hero-content h1 .word-reveal-item {
  transform: translateY(0);
}
.hero-content .hero-subheadline {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-content .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.hero-scroll-indicator:hover {
  color: #E8A020;
}
.hero-scroll-indicator .mouse-wheel-container {
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 9999px;
  position: relative;
}
.hero-scroll-indicator .mouse-wheel-container::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 9999px;
  -webkit-animation: wheelBounce 1.5s infinite ease-in-out;
          animation: wheelBounce 1.5s infinite ease-in-out;
}

@-webkit-keyframes wheelBounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

@keyframes wheelBounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}
.site-footer {
  background-color: #3E9D55;
  color: #FFFFFF;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-footer {
    padding-top: 6rem;
  }
}

.footer-bg-glow {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.04) 0%, rgba(232, 160, 32, 0) 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo img {
  height: 44px;
}
.footer-brand .footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-brand .footer-logo .logo-text span:last-child {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer-brand .footer-socials {
  display: flex;
  gap: 12px;
}
.footer-brand .footer-socials .social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-brand .footer-socials .social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-brand .footer-socials .social-icon-btn:hover {
  background-color: #E8A020;
  color: #3E9D55;
  border-color: #E8A020;
  transform: translateY(-3px);
}

.footer-nav-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 8px;
}
.footer-nav-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #E8A020;
  border-radius: 9999px;
}
.footer-nav-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col .footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-nav-col .footer-links a:hover {
  color: #E8A020;
  padding-left: 4px;
}
.footer-nav-col .contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer-nav-col .contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav-col .contact-details li svg {
  width: 16px;
  height: 16px;
  color: #E8A020;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-nav-col .contact-details li a:hover {
  color: #E8A020;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom .footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .footer-legal-links a {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-bottom .footer-legal-links a:hover {
  color: #E8A020;
}

.trust-strip {
  background-color: #3E9D55;
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -1px;
}
.trust-strip .trust-strip-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-strip .trust-strip-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.trust-strip .stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
}
.trust-strip .stat-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .trust-strip .stat-item:nth-child(2n) {
    border-right: none;
  }
}
.trust-strip .stat-item .stat-number {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8A020;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.trust-strip .stat-item .stat-label {
  font-size: 0.8rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

.mission-photo-column {
  position: relative;
}
.mission-photo-column .mission-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  aspect-ratio: 4/5;
  background-color: #3E9D55;
}
.mission-photo-column .mission-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mission-photo-column .mission-floating-card {
  position: absolute;
  bottom: -24px;
  right: -12px;
  width: 200px;
  padding: 1.5rem;
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  border-left: 4px solid #E8A020;
  -webkit-animation: floatingCard 4s ease-in-out infinite;
          animation: floatingCard 4s ease-in-out infinite;
}
@media (max-width: 480px) {
  .mission-photo-column .mission-floating-card {
    display: none;
  }
}
.mission-photo-column .mission-floating-card h4 {
  font-size: 1.5rem;
  color: #1B5E20;
  margin-bottom: 2px;
}
.mission-photo-column .mission-floating-card span {
  font-size: 0.8rem;
  color: #4B5563;
  font-weight: 600;
  text-transform: uppercase;
}

@-webkit-keyframes floatingCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatingCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.mission-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mission-checkmarks .checkmark-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mission-checkmarks .checkmark-item .checkmark-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(20, 184, 166, 0.1);
  color: #14B8A6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.mission-checkmarks .checkmark-item .checkmark-icon svg {
  width: 14px;
  height: 14px;
}
.mission-checkmarks .checkmark-item .checkmark-text h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: #3E9D55;
}
.mission-checkmarks .checkmark-item .checkmark-text p {
  font-size: 0.95rem;
  color: #4B5563;
  margin-bottom: 0;
}

.why-choose-us-section {
  position: relative;
  background-color: #FFFFFF;
}

.sticky-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .sticky-container {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
  }
}

@media (min-width: 1024px) {
  .sticky-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.scroll-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .scroll-panel {
    gap: 6rem;
    padding-bottom: 6rem;
  }
}

.pillar-card {
  padding: 2.5rem;
  border-radius: 24px;
  background-color: #FAF9F6;
  border: 1px solid rgba(27, 94, 32, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-card .pillar-num {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(27, 94, 32, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.4s ease;
}
.pillar-card .pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(27, 94, 32, 0.06);
  color: #1B5E20;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-card .pillar-icon svg {
  width: 28px;
  height: 28px;
}
.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3E9D55;
}
.pillar-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .pillar-card {
    opacity: 0.5;
    transform: scale(0.95);
  }
  .pillar-card.active {
    opacity: 1;
    transform: scale(1);
    background-color: #FFFFFF;
    border-color: rgba(232, 160, 32, 0.3);
    box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  }
  .pillar-card.active .pillar-num {
    color: rgba(232, 160, 32, 0.3);
  }
  .pillar-card.active .pillar-icon {
    background-color: rgba(232, 160, 32, 0.1);
    color: #cf8b15;
    transform: scale(1.05) rotate(5deg);
  }
}

.principal-section {
  background: linear-gradient(135deg, #3E9D55 0%, #173259 100%);
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.principal-section .principal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .principal-section .principal-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.principal-section .principal-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  aspect-ratio: 3/4;
  background-color: #3E9D55;
}
.principal-section .principal-photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.principal-section .principal-content h2 {
  color: #FFFFFF;
}
.principal-section .principal-content .pull-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  position: relative;
}
.principal-section .principal-content .pull-quote::before {
  content: "“";
  font-size: 5rem;
  font-family: serif;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(232, 160, 32, 0.25);
  line-height: 1;
}
.principal-section .principal-content .principal-signature {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
.principal-section .principal-content .principal-signature h4 {
  color: #E8A020;
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.principal-section .principal-content .principal-signature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.admissions-tabs-container {
  max-width: 900px;
  margin: 0 auto;
}

.admissions-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  padding-bottom: 8px;
}
.admissions-tabs .tab-btn {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4B5563;
  padding: 10px 20px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.admissions-tabs .tab-btn:hover {
  color: #1B5E20;
  background-color: rgba(27, 94, 32, 0.03);
}
.admissions-tabs .tab-btn.active {
  color: #3E9D55;
  background-color: rgba(27, 94, 32, 0.06);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.tab-pane {
  display: none;
  -webkit-animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tab-pane.active {
  display: block;
}

@-webkit-keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 2px;
  height: calc(100% - 16px);
  background-color: rgba(27, 94, 32, 0.1);
}
.timeline .timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.timeline .timeline-item .timeline-dot {
  position: absolute;
  top: 4px;
  left: -32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FAF9F6;
  border: 3px solid #E8A020;
  z-index: 2;
}
.timeline .timeline-item .timeline-content h4 {
  font-size: 1.15rem;
  color: #3E9D55;
  margin-bottom: 4px;
}
.timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  color: #4B5563;
  margin-bottom: 0;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.req-grid .req-card {
  background-color: #FAF9F6;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 32, 0.05);
}
.req-grid .req-card h4 {
  color: #3E9D55;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.req-grid .req-card h4 svg {
  width: 18px;
  height: 18px;
  color: #E8A020;
}
.req-grid .req-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.req-grid .req-card ul li {
  font-size: 0.95rem;
  color: #4B5563;
  position: relative;
  padding-left: 16px;
}
.req-grid .req-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #14B8A6;
  font-weight: 900;
}

.fees-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.fees-table-wrap th, .fees-table-wrap td {
  padding: 12px 18px;
  text-align: left;
}
.fees-table-wrap th {
  background-color: #1B5E20;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.fees-table-wrap tr {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
  transition: background-color 0.2s ease;
}
.fees-table-wrap tr:last-child {
  border-bottom: none;
}
.fees-table-wrap tr:hover {
  background-color: rgba(27, 94, 32, 0.02);
}
.fees-table-wrap td {
  font-size: 0.95rem;
  color: #4B5563;
}
.fees-table-wrap td strong {
  color: #3E9D55;
}
.fees-table-wrap .badge {
  vertical-align: middle;
}

.affiliations-section {
  background-color: #FFFFFF;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(27, 94, 32, 0.06);
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
}
.affiliations-section .affil-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .affiliations-section .affil-container {
    justify-content: space-between;
  }
}
.affiliations-section .affil-micro h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4B5563;
  margin-bottom: 2px;
}
.affiliations-section .affil-micro p {
  font-size: 0.8rem;
  color: rgba(75, 85, 99, 0.7);
  margin-bottom: 0;
}
.affiliations-section .affil-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.affiliations-section .affil-logos img {
  height: 48px;
  width: auto;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.affiliations-section .affil-logos img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  color: #FFFFFF;
  border-radius: 24px;
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .final-cta-section {
    padding: 6rem 2.5rem;
  }
}
.final-cta-section::before, .final-cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}
.final-cta-section::before {
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
}
.final-cta-section::after {
  bottom: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, rgba(232, 160, 32, 0) 75%);
}
.final-cta-section .cta-badge {
  background-color: rgba(232, 160, 32, 0.15);
  color: #E8A020;
  border: 1px solid rgba(232, 160, 32, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
}
.final-cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.final-cta-section .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.loader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.loader-logo-wrap .loader-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}
.loader-logo-wrap .loader-logo-img {
  width: 60%;
  height: auto;
  z-index: 1;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo .nav-logo-img {
  width: auto;
  height: 2.5rem;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #307841 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.history-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(27, 94, 32, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 16px;
  border-top: 4px solid #E8A020;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.faculty-section {
  background-color: #FAF9F6;
}

.faculty-dept {
  margin-bottom: 4rem;
}
.faculty-dept:last-child {
  margin-bottom: 0;
}

.faculty-dept-title {
  border-left: 4px solid #E8A020;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
  color: #3E9D55;
}

.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faculty-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
  border-color: rgba(27, 94, 32, 0.1);
}

.faculty-avatar {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #254a7f;
}

.faculty-info h4 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.faculty-info .title {
  font-size: 0.85rem;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #14B8A6;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.faculty-info .qual {
  font-size: 0.85rem;
  color: #4B5563;
}

.page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1200&q=40") center/cover no-repeat;
  opacity: 0.08;
}
.page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  position: relative;
}
.page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid #E5E7EB;
  background: transparent;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-btn:hover, .filter-btn.active {
  background: #3E9D55;
  border-color: #3E9D55;
  color: #FFFFFF;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
}
.program-card[data-hidden=true] {
  display: none;
}

.program-card-banner {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.program-card-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1.5rem;
}
.program-card:hover .program-card-banner img {
  transform: scale(1.06);
  -webkit-animation: 1s ease-in 1s linear;
          animation: 1s ease-in 1s linear;
}
.program-card-banner .prog-level {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.level-degree {
  background: rgba(62, 157, 85, 0.85);
  color: #FFFFFF;
}

.level-diploma {
  background: rgba(20, 184, 166, 0.85);
  color: #FFFFFF;
}

.level-tslc {
  background: rgba(232, 160, 32, 0.92);
  color: #FFFFFF;
}

.level-coaching {
  background: rgba(110, 72, 170, 0.85);
  color: #FFFFFF;
}

.program-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #3E9D55;
}
.program-card-body p {
  font-size: 0.88rem;
  color: #4B5563;
  margin-bottom: 1rem;
  flex: 1;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.program-meta .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 8px;
  background: #FAF9F6;
  color: #3E9D55;
}
.program-meta .meta-tag svg {
  width: 12px;
  height: 12px;
}

.program-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(27, 94, 32, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.program-card-footer .prog-fee {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3E9D55;
}
.program-card-footer .prog-fee span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #4B5563;
}

.admission-cta-banner {
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  border-radius: 24px;
  padding: 4rem 2.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-top: 6rem;
}
.admission-cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.admission-cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.prog-hero {
  background: linear-gradient(135deg, #3E9D55 0%, #286637 100%);
  padding: 6rem 0 4rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.prog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=1400&q=30") center/cover;
  opacity: 0.07;
}
.prog-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .prog-hero-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}
.prog-hero h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.prog-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.prog-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.prog-quick-stats .qs-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.prog-hero-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
}
.prog-hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.prog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .prog-layout {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.semester-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sem-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 32, 0.08);
  overflow: hidden;
}
.sem-item .sem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sem-item .sem-header:hover {
  background: #f6f5ef;
}
.sem-item .sem-header h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #3E9D55;
}
.sem-item .sem-header .sem-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #14B8A6;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
}
.sem-item .sem-header .sem-arrow {
  color: #4B5563;
  font-size: 1rem;
  transition: transform 0.3s;
}
.sem-item.open .sem-arrow {
  transform: rotate(180deg);
}
.sem-item.open .sem-body {
  display: block;
}
.sem-item .sem-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.sem-subjects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sem-subjects li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4B5563;
  padding: 4px 0;
  border-bottom: 1px solid rgba(27, 94, 32, 0.04);
}
.sem-subjects li::before {
  content: "›";
  color: #E8A020;
  font-weight: 700;
  flex: 0 0 auto;
}

.sem-meta {
  color: rgba(75, 85, 99, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
}

.prog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.apply-card {
  background: #3E9D55;
  border-radius: 24px;
  padding: 2.5rem;
  color: #FFFFFF;
  text-align: center;
}
.apply-card h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.apply-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.fee-table,
.eligibility-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
}
.fee-table h4,
.eligibility-card h4 {
  margin-bottom: 1rem;
  color: #3E9D55;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
  font-size: 0.88rem;
}
.fee-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: #3E9D55;
}
.fee-row .amount {
  color: #14B8A6;
  font-weight: 700;
}

.elig-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.elig-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #4B5563;
  padding: 5px 0;
}
.elig-list li::before {
  content: "✓";
  color: #0f766e;
  font-weight: 700;
  flex-shrink: 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-chip {
  background: #FFFFFF;
  border: 1px solid rgba(27, 94, 32, 0.08);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3E9D55;
}
.outcome-chip .icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 32, 0.08);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.module-card .module-header {
  background: linear-gradient(90deg, #E8A020, #1B5E20);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.module-card .module-header .module-num {
  width: 36px;
  height: 36px;
  background: #E8A020;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.module-card .module-header h4 {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95rem;
}
.module-card .module-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-left: auto;
}
.module-card .module-body {
  padding: 1.5rem;
}

.module-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 480px) {
  .module-topics {
    grid-template-columns: repeat(2, 1fr);
  }
}
.module-topics li {
  font-size: 0.875rem;
  color: #4B5563;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.module-topics li::before {
  content: "›";
  color: #E8A020;
  font-weight: 700;
}

.pass-rate-box {
  background: linear-gradient(135deg, #E8A020, #1B5E20);
  border-radius: 24px;
  padding: 2.5rem;
  color: #FFFFFF;
  text-align: center;
}
.pass-rate-box .pass-rate-num {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #E8A020;
  display: block;
  line-height: 1;
}

.prog-hero.type-phase-based {
  background: linear-gradient(135deg, #1a1a00 0%, #4a3800 50%, #1B5E20 100%);
}

.phases-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phase-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 32, 0.08);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.phase-card .phase-header {
  background: linear-gradient(90deg, #3d2800, #1B5E20);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phase-card .phase-header .phase-num {
  width: 36px;
  height: 36px;
  background: #E8A020;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.phase-card .phase-header h4 {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95rem;
}
.phase-card .phase-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-left: auto;
  white-space: nowrap;
}
.phase-card .phase-body {
  padding: 1.5rem;
}

.phase-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 480px) {
  .phase-topics {
    grid-template-columns: repeat(2, 1fr);
  }
}
.phase-topics li {
  font-size: 0.875rem;
  color: #4B5563;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phase-topics li::before {
  content: "›";
  color: #E8A020;
  font-weight: 700;
}

.page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
}
.page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .notices-layout {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

.notice-board {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 94, 32, 0.08);
}
.notice-board .board-header {
  background: #3E9D55;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.notice-board .board-header h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 1.1rem;
}
.notice-board .board-header .board-pin {
  color: #E8A020;
  font-size: 1.4rem;
}

.notice-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.notice-list .notice-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.notice-list .notice-item:last-child {
  border-bottom: none;
}
.notice-list .notice-item:hover {
  background: #f6f5ef;
}

.notice-date-badge {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  background: #FAF9F6;
  border-radius: 8px;
  padding: 6px 4px;
}
.notice-date-badge .day {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #3E9D55;
  display: block;
  line-height: 1;
}
.notice-date-badge .month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4B5563;
  display: block;
  margin-top: 2px;
}

.notice-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  flex-shrink: 0;
  align-self: center;
}

.tag-urgent {
  background: #fee2e2;
  color: #c0392b;
}

.tag-exam {
  background: #dbeafe;
  color: #1d4ed8;
}

.tag-admission {
  background: #dcfce7;
  color: #166534;
}

.tag-event {
  background: #fef9c3;
  color: #854d0e;
}

.tag-result {
  background: #f3e8ff;
  color: #6b21a8;
}

.tag-holiday {
  background: #ffedd5;
  color: #9a3412;
}

.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.upcoming-card,
.downloads-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 94, 32, 0.08);
}
.upcoming-card .board-header,
.downloads-card .board-header {
  padding: 1rem 1.5rem;
}
.upcoming-card .event-list,
.upcoming-card .download-list,
.downloads-card .event-list,
.downloads-card .download-list {
  padding: 1rem;
}
.upcoming-card .event-list li,
.upcoming-card .download-list li,
.downloads-card .event-list li,
.downloads-card .download-list li {
  padding: 0.4rem 0;
}
.upcoming-card .event-list li span,
.upcoming-card .download-list li span,
.downloads-card .event-list li span,
.downloads-card .download-list li span {
  margin-right: 0.4rem;
}

.event-list {
  padding: 1rem 1.5rem;
  list-style: none;
  margin: 0;
}
.event-list .event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(27, 94, 32, 0.05);
  font-size: 0.88rem;
}
.event-list .event-item:last-child {
  border-bottom: none;
}
.event-list .event-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.event-list .dot-red {
  background: red;
}
.event-list .dot-blue {
  background: blue;
}
.event-list .dot-green {
  background: green;
}
.event-list .dot-yellow {
  background: orange;
}

.sub-box {
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  border-radius: 24px;
  padding: 1.5rem 2.5rem;
  color: #FFFFFF;
}
.sub-box h4 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.sub-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.sub-box .sub-form {
  display: flex;
  gap: 8px;
}
.sub-box .sub-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: none;
  border-radius: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
}
.sub-box .sub-form button {
  padding: 0.6rem 1rem;
  background: #E8A020;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #173259 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
}
.page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1.7fr 1fr;
    align-items: start;
  }
}

.featured-post {
  display: block;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
  border: 1px solid rgba(27, 94, 32, 0.08);
  margin-bottom: 2.5rem;
  transition: transform all 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(22, 51, 94, 0.1);
}
.featured-post:hover .featured-post-img img {
  transform: scale(1.04);
}
.featured-post-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-post-body {
  padding: 2.5rem;
}
.featured-post-body .cat-tag {
  color: #14B8A6;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.featured-post-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #3E9D55;
}
.featured-post-body p {
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 580px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform all 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
}
.article-card:hover .article-card-img img {
  transform: scale(1.06);
}
.article-card-img {
  height: 180px;
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body .cat-tag {
  color: #14B8A6;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.article-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #3E9D55;
  flex: 1;
}
.article-card-body p {
  font-size: 0.83rem;
  color: #4B5563;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: #4B5563;
}
.post-meta img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sidebar-widget .widget-header {
  background: #3E9D55;
  padding: 1rem 1.5rem;
}
.sidebar-widget .widget-header h4 {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
}
.sidebar-widget .widget-body {
  padding: 1.5rem;
}

.recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-list .recent-item {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
  text-decoration: none;
  color: inherit;
}
.recent-list .recent-item:last-child {
  border-bottom: none;
}
.recent-list .recent-thumb {
  width: 60px;
  height: 50px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.recent-list .recent-item-text h5 {
  font-size: 0.83rem;
  margin-bottom: 3px;
  color: #3E9D55;
}
.recent-list .recent-item-text span {
  font-size: 0.73rem;
  color: #4B5563;
}

.cat-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background: #f1f3f6;
  color: #3E9D55;
  font-size: 0.8rem;
  font-weight: 600;
}
.cat-pill:hover {
  background: #3E9D55;
  color: #fff;
}

.newsletter-widget {
  background: linear-gradient(135deg, #3E9D55, #1a3f70);
  border-radius: 24px;
  padding: 1.5rem 2.5rem;
  color: #fff;
}
.newsletter-widget h4 {
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-widget p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.newsletter-widget .nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-widget .nl-form input {
  padding: 0.6rem 0.9rem;
  border: none;
  border-radius: 8px;
}
.newsletter-widget .nl-form button {
  padding: 0.65rem;
  background: #E8A020;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sidebar-widget .widget-header {
  background: #3E9D55;
  padding: 1rem 1.5rem;
}
.sidebar-widget .widget-header h4 {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95rem;
}
.sidebar-widget .widget-body {
  padding: 1.5rem;
}

.recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-list .recent-item {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(27, 94, 32, 0.06);
  text-decoration: none;
  color: inherit;
}
.recent-list .recent-item:last-child {
  border-bottom: none;
}
.recent-list .recent-item .recent-thumb {
  width: 60px;
  height: 50px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.recent-list .recent-item h5 {
  font-size: 0.83rem;
  margin-bottom: 3px;
  color: #3E9D55;
  line-height: 1.3;
}
.recent-list .recent-item span {
  font-size: 0.73rem;
  color: #4B5563;
}

.cat-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-cloud .cat-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background: #FAF9F6;
  color: #3E9D55;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-cloud .cat-pill:hover {
  background: #3E9D55;
  color: #FFFFFF;
}

.newsletter-widget {
  background: linear-gradient(135deg, #3E9D55, #254a7f);
  border-radius: 24px;
  padding: 1.5rem 2.5rem;
  color: #FFFFFF;
}
.newsletter-widget h4 {
  color: #FFFFFF;
  margin-bottom: 6px;
}
.newsletter-widget p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.newsletter-widget .nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-widget .nl-form input {
  padding: 0.6rem 0.9rem;
  border: none;
  border-radius: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.newsletter-widget .nl-form button {
  padding: 0.65rem;
  background: #E8A020;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #173259 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
}
.page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

.contact-layout {
  display: block;
  gap: 4rem;
}
@media (min-width: 900px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-panel .info-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(22, 51, 94, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.contact-info-panel .info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-info-panel .info-card .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #3E9D55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-panel .info-card .info-icon svg {
  width: 22px;
  height: 22px;
  stroke: #E8A020;
  fill: none;
  stroke-width: 2;
}
.contact-info-panel .info-card h4 {
  font-size: 1rem;
  margin: 0;
  color: #3E9D55;
}
.contact-info-panel .info-card p,
.contact-info-panel .info-card a {
  font-size: 0.9rem;
  color: #4B5563;
  display: block;
}
.contact-info-panel .info-card a:hover {
  color: #14B8A6;
}

.admission-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(22, 51, 94, 0.08);
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
}
@media screen and (max-width: 768px) {
  .admission-form-card {
    margin-top: 1rem;
  }
}
.admission-form-card h2 {
  margin-bottom: 0.5rem;
}
.admission-form-card > p {
  color: #4B5563;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}
.admission-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .admission-form-card .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.admission-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.admission-form-card .form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3E9D55;
}
.admission-form-card .form-group input,
.admission-form-card .form-group select,
.admission-form-card .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(22, 51, 94, 0.15);
  border-radius: 16px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.admission-form-card .form-group input:focus,
.admission-form-card .form-group select:focus,
.admission-form-card .form-group textarea:focus {
  border-color: #3E9D55;
  box-shadow: 0 0 0 3px rgba(22, 51, 94, 0.1);
  background: #FFFFFF;
}
.admission-form-card .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.admission-form-card .form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
  height: 420px;
  background: #f1f3f6;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.steps-grid .step-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(22, 51, 94, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.steps-grid .step-card .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3E9D55;
  color: #E8A020;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.testimonial-box {
  /* STATS RIBBON */
  /* TESTIMONIALS MASONRY GRID */
  /* VIDEO TESTIMONIALS */
  /* CTA SECTION */
}
.testimonial-box .page-header-sub {
  background: linear-gradient(135deg, #3E9D55 0%, #254a7f 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}
.testimonial-box .page-header-sub h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.testimonial-box .page-header-sub p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
}
.testimonial-box .stats-ribbon {
  background: #E8A020;
  padding: 1.5rem 0;
}
.testimonial-box .stats-ribbon .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonial-box .stats-ribbon .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.testimonial-box .stats-ribbon .ribbon-stat {
  color: #FFFFFF;
}
.testimonial-box .stats-ribbon .ribbon-stat .num {
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.testimonial-box .stats-ribbon .ribbon-stat .lbl {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-box .testimonials-grid {
  -moz-columns: 1;
       columns: 1;
  gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media (min-width: 640px) {
  .testimonial-box .testimonials-grid {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 1024px) {
  .testimonial-box .testimonials-grid {
    -moz-columns: 3;
         columns: 3;
  }
}
.testimonial-box .testimonial-card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform all 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  width: 100%;
}
.testimonial-box .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 51, 94, 0.06);
}
.testimonial-box .testimonial-card.featured {
  border-top: 4px solid #E8A020;
  background: linear-gradient(135deg, #fffbf0 0%, #FFFFFF 100%);
}
.testimonial-box .testimonial-card .quote-icon {
  width: 36px;
  height: 36px;
  background: #3E9D55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.testimonial-box .testimonial-card .quote-icon svg {
  width: 18px;
  height: 18px;
  fill: #E8A020;
}
.testimonial-box .testimonial-card .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1B5E20;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-box .testimonial-card .star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testimonial-box .testimonial-card .star-rating svg {
  width: 16px;
  height: 16px;
  fill: #E8A020;
}
.testimonial-box .testimonial-card .reviewer-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 94, 32, 0.07);
}
.testimonial-box .testimonial-card .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #254a7f;
  flex-shrink: 0;
}
.testimonial-box .testimonial-card .reviewer-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #3E9D55;
}
.testimonial-box .testimonial-card .reviewer-info .program-tag {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Poppins", "Mukta", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  color: #14B8A6;
}
.testimonial-box .testimonial-card .reviewer-info .outcome-tag {
  font-size: 0.75rem;
  color: #4B5563;
  display: block;
  margin-top: 2px;
}
.testimonial-box .video-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .testimonial-box .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonial-box .video-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-box .video-card {
  background: #3E9D55;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.testimonial-box .video-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.testimonial-box .video-card:hover img {
  opacity: 0.45;
}
.testimonial-box .video-card .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #FFFFFF;
}
.testimonial-box .video-card .play-btn svg {
  width: 52px;
  height: 52px;
}
.testimonial-box .video-card .play-btn span {
  font-size: 0.85rem;
  font-weight: 600;
}
.testimonial-box .join-cta {
  background: linear-gradient(135deg, #3E9D55 0%, #1a3f70 100%);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  color: #FFFFFF;
}
.testimonial-box .join-cta h2 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.testimonial-box .join-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
.payment-grid .phase-body img {
  width: 100%;
  max-width: 15rem;
  border-radius: 12px;
  margin: 0 auto 2.5rem;
  display: block;
  border: 1px solid rgba(22, 51, 94, 0.08);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: ease-in-out 0.3s;
}
.payment-grid .phase-body img:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.payment-grid .phase-body p {
  color: #4B5563;
}
