:root {
  --gndu-green: #07a698;
  --gndu-green-dark: #1f2c30;
  --gndu-green-light: rgba(7, 166, 152, 0.12);
  --gndu-accent: #f97316;
  --gndu-dark: #111827;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --g: #07a698;
  --gd: #1f2c30;
  --gl: rgba(7, 166, 152, 0.12);
  --acc: #f97316;
  --dark: #111827;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  /*--ease:cubic-bezier(.25,.46,.45,.94);*/
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #1f2937;
  overflow-x: hidden;
}

p,
span {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #4b5563;
}

img {
  max-width: 100%;
  height: auto;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.93);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

.rd5 {
  transition-delay: 0.5s;
}

.rd6 {
  transition-delay: 0.6s;
}

/* TOP BAR */
.top-bar {
  background: var(--gndu-green);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar span {
  color: #fff !important;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 14px;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* HEADER */
.main-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1049;
  transition: box-shadow 0.3s;
}

.logo-text h6 {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 11.5px;
  color: #555;
}

/* Nav links */
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 14px;
  padding: 22px 14px;
  position: relative;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 10px;
  width: 0;
  height: 2px;
  background: var(--gndu-green);
  transition: width 0.3s;
  border: none;
}

.navbar-nav .nav-link:hover::after,
.mega-open > .nav-link::after {
  width: calc(100% - 28px);
}

.navbar-nav .nav-link:hover,
.mega-open > .nav-link {
  color: var(--gndu-green);
}

.nav-link .arrow {
  font-size: 11px;
  transition: transform 0.3s;
  margin-left: 2px;
}

.mega-open > .nav-link .arrow {
  transform: rotate(180deg);
}

/* Regular dropdown */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  border-top: 3px solid var(--gndu-green);
  border-radius: 0 0 12px 12px;
  padding: 8px;
  min-width: 210px;
  margin-top: 0 !important;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 14px;
  font-weight: 500;
  border-radius: 8px;
  color: #374151;
  transition:
    background 0.18s,
    color 0.18s;
}

.dropdown-item:hover {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeDown 0.22s ease;
  }

  .navbar .dropdown:hover > .nav-link .arrow {
    transform: rotate(180deg);
  }
}

/* ── Mega Panel (fixed, JS-positioned) ── */
.mega-panel {
  position: fixed;
  top: -999px;
  left: 0;
  width: 860px;
  /* JS overrides at runtime */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 16px 16px;
  border-top: 4px solid var(--gndu-green);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s;
  z-index: 2000;
}

.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-inner {
  display: flex;
  flex: 1;
}

/* Left sidebar */
.mega-side {
  width: 200px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1f2c30, #1a3a38);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-side-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(7, 166, 152, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gndu-green);
  margin-bottom: 8px;
}

.mega-side-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.mega-side-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 4px;
}

.mega-side-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--gndu-green);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(7, 166, 152, 0.15);
  width: fit-content;
  transition: background 0.2s;
}

.mega-side-link:hover {
  background: rgba(7, 166, 152, 0.3);
}

/* Right body */
.mega-body {
  flex: 1;
  padding: 22px 24px;
}

.mega-group-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gndu-green);
  margin-bottom: 14px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

/* Each program link */
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1f2937;
  transition:
    background 0.18s,
    transform 0.18s;
}

.mega-link:hover {
  background: rgba(7, 166, 152, 0.08);
  transform: translateX(3px);
}

.mega-link-ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gndu-green);
  transition: background 0.18s;
}

.mega-link:hover .mega-link-ic {
  background: rgba(7, 166, 152, 0.15);
}

.mega-link span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mega-link span:last-child small {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 1px;
}

/* Footer bar */
.mega-foot {
  padding: 10px 24px;
  background: #f8f9fb;
  border-top: 1px solid #f0f2f4;
  font-size: 12px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-foot i {
  color: var(--gndu-green);
}

/* Active trigger styling */
.mega-item.mega-open > .mega-trigger .arrow {
  transform: rotate(180deg);
}

.mega-item.mega-open > .mega-trigger {
  color: var(--gndu-green);
}

.btn-apply {
  background: var(--gndu-green);
  color: #fff;
  border-radius: 30px;
  padding: 7px 20px;
  font-weight: 500;
  border: none;
  transition: background 0.2s;
  font-size: 14px;
}

.btn-apply:hover {
  background: var(--gndu-green-dark);
  color: #fff;
}

.btn-outline-secondary {
  border-radius: 30px;
  padding: 7px 20px;
  font-weight: 500;
  font-size: 14px;
}

/* MOBILE MENU */
.offcanvas-start {
  width: 300px;
  z-index: 1050;
}

.mobile-menu .menu-level {
  display: none;
}

.mobile-menu .menu-level.active {
  display: block;
  animation: slideIn 0.28s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(24px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.mobile-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
}

.back-btn {
  cursor: pointer;
  font-weight: 700;
  color: var(--gndu-green);
  padding: 10px 0 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #e8f6f4 0%, #f0faf9 40%, #fffbf0 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── Slider: fixed-height container, all slides stacked absolutely ── */
.hero-slider {
  position: relative;
}

/* The track holds ALL slides at the same position */
.hero-slides {
  position: relative;
  /* Height comes from the tallest slide rendered normally once on init */
}

/* Every slide: absolutely stacked, invisible by default */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}

/* Active slide: visible, on top, pointer events on */
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* A dummy spacer slide stays in-flow to give the container height */
.hero-slide-spacer {
  position: relative;
  visibility: hidden;
  pointer-events: none;
}

.hero-wrapper {
  padding: 70px 0 60px;
  min-height: 560px;
}

.hero-left {
  position: relative;
  z-index: 2;
}

/* Child items start hidden – slide in when parent gains is-active */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gndu-green);
  box-shadow: 0 4px 20px rgba(7, 166, 152, 0.2);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s 0.08s ease,
    transform 0.45s 0.08s ease;
}

.hero-badge i {
  font-size: 16px;
  color: var(--gndu-accent);
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gndu-green-dark);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s 0.18s ease,
    transform 0.45s 0.18s ease;
}

.hero-left h1 span {
  color: var(--gndu-green);
}

.hero-left > p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  /*max-width: 460px;*/
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s 0.28s ease,
    transform 0.45s 0.28s ease;
}

.hero-search {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  max-width: 460px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s 0.36s ease,
    transform 0.45s 0.36s ease;
}

.hero-search input {
  border: none;
  flex: 1;
  padding: 12px 18px;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.hero-search button {
  background: var(--gndu-green);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-search button:hover {
  background: var(--gndu-green-dark);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s 0.44s ease,
    transform 0.45s 0.44s ease;
}

.hero-stats .stat h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gndu-green-dark);
  margin: 0;
}

.hero-stats .stat span {
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
}

.hero-right {
  position: relative;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.55s 0.15s ease,
    transform 0.55s 0.15s ease;
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
  /*border-radius: 28px;*/
  overflow: hidden;
  /*box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);*/
}

.hero-img-wrap img {
  width: 100%;
  max-width: 600px;
  /*border-radius: 28px;*/
  display: block;
}

.hero-deco {
  position: absolute;
  top: 9%;
  right: 5%;
  width: 80%;
  height: 90%;
  border-radius: 28px;
  background: var(--gndu-green-light);
  z-index: -1;
}

/* When slide is active → animate children in */
.hero-slide.is-active .hero-badge,
.hero-slide.is-active h1,
.hero-slide.is-active .hero-left > p,
.hero-slide.is-active .hero-search,
.hero-slide.is-active .hero-stats,
.hero-slide.is-active .hero-right {
  opacity: 1;
  transform: none;
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 3s ease-in-out infinite;
  z-index: 10;
}

.float-card.top {
  top: 18%;
  left: -20px;
}

.float-card.bottom {
  bottom: 18%;
  right: -20px;
  animation-delay: 1.5s;
}

.float-card .fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card.top .fc-icon {
  background: rgba(7, 166, 152, 0.12);
  color: var(--gndu-green);
}

.float-card.bottom .fc-icon {
  background: rgba(249, 115, 22, 0.12);
  color: var(--gndu-accent);
}

.float-card div span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #4b5563;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 8px;
  position: relative;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(7, 166, 152, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.hero-dot.is-active {
  background: var(--gndu-green);
  width: 26px;
  border-radius: 10px;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gndu-green);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(7, 166, 152, 0.35);
}

.hero-arrow:hover {
  background: var(--gndu-green-dark);
}

.hero-arrow.prev {
  left: 16px;
}

.hero-arrow.next {
  right: 16px;
}

/* SHARED SECTION STYLES */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1faf9;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gndu-green);
  border: 1px solid rgba(7, 166, 152, 0.2);
}

.section-badge i {
  color: var(--gndu-accent);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.view-all {
  color: var(--gndu-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid var(--gndu-green);
  padding: 9px 20px;
  border-radius: 30px;
  transition: all 0.2s;
  white-space: nowrap;
}

.view-all:hover {
  background: var(--gndu-green);
  color: #fff;
}

/* PROGRAMS */
.programs-section {
  background: #f9fafb;
  padding: 80px 0;
}

.program-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.13);
}

.program-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.program-body {
  padding: 20px;
}

.program-body .meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.program-body h5 {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 8px;
}

.program-body .author {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.program-body .price {
  display: inline-block;
  background: rgba(7, 166, 152, 0.1);
  color: var(--gndu-green);
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.program-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gndu-green);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px;
}

.swiper-pagination-bullet-active {
  background: var(--gndu-green) !important;
}

/* CATEGORIES (dark) */
.categories-section {
  background: #111827;
  padding: 80px 0;
}

.categories-section .section-badge {
  background: rgba(7, 166, 152, 0.1);
  border-color: rgba(7, 166, 152, 0.3);
}

.cat-card {
  background: #1f2937;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    background 0.3s;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(7, 166, 152, 0.2);
  background: #1a3332;
  border-color: rgba(7, 166, 152, 0.3);
}

.cat-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(7, 166, 152, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.cat-card:hover .cat-icon-wrap {
  background: rgba(7, 166, 152, 0.25);
}

.cat-icon-wrap i {
  font-size: 28px;
  color: var(--gndu-green);
}

.cat-card h6 {
  color: #f3f4f6;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.cat-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.cat-card:hover .cat-arrow {
  background: var(--gndu-green);
  border-color: var(--gndu-green);
}

.btn-browse {
  background: var(--gndu-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-browse:hover {
  background: #05857a;
  color: #fff;
}

/* OFFER BANNER */
.offer-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.offer-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.offer-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(0.4);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 28, 26, 0.97) 55%,
    rgba(10, 28, 26, 0.5) 100%
  );
  z-index: 1;
}

.offer-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  z-index: 2;
  pointer-events: none;
}

.offer-content {
  position: relative;
  z-index: 3;
}

.offer-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.offer-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.offer-deco {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--gndu-green);
  opacity: 0.35;
  z-index: 2;
}

.offer-deco2 {
  position: absolute;
  bottom: -30px;
  right: 120px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gndu-green);
  opacity: 0.2;
  z-index: 2;
}

.btn-student {
  background: var(--gndu-green);
  color: #fff;
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-student:hover {
  background: #05857a;
  color: #fff;
}

.btn-teacher {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-teacher:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* FAQ */
.faq-section {
  background: #fff;
  padding: 80px 0;
}

.faq-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.faq-img-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.faq-img-grid img:first-child {
  /*height: 280px;*/
  /*grid-row: span 2;*/
}

.faq-img-grid img:not(:first-child) {
  /*height: 132px;*/
}

.instructor-float {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.instructor-avatars {
  display: flex;
}

.instructor-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}

.instructor-avatars img:first-child {
  margin-left: 0;
}

.instructor-count {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gndu-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid #fff;
}

.instructor-info h6 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.instructor-info span {
  font-size: 12px;
  color: var(--gndu-green);
  font-weight: 600;
}

.accordion-button {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--gndu-green);
  background: var(--gndu-green-light);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(46%) sepia(80%) saturate(500%) hue-rotate(140deg)
    brightness(90%);
}

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

.accordion-num {
  color: var(--gndu-green);
  font-weight: 800;
  margin-right: 6px;
}

.accordion-body {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== RECOGNITION / APPROVAL SECTION ===== */
.recognition-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid #f0f2f5;
}

.rec-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eef0f3;
  padding: 36px 28px;
  text-align: center;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.rec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(7, 166, 152, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.rec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.25);
}

.rec-card:hover::before {
  opacity: 1;
}

.rec-logo-wrap {
  width: 120px;
  height: 100px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rec-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s;
}

.rec-divider {
  width: 40px;
  height: 3px;
  background: var(--gndu-green);
  border-radius: 10px;
  margin: 0 auto 16px;
  opacity: 0.35;
  transition:
    opacity 0.3s,
    width 0.3s;
}

.rec-card:hover .rec-divider {
  opacity: 1;
  width: 60px;
}

.rec-card h5 {
  font-weight: 700;
  font-size: 15.5px;
  color: #111827;
  margin-bottom: 8px;
}

.rec-card p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(7, 166, 152, 0.08);
  color: var(--gndu-green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 14px;
}

/* ===== ADMISSION PROCESS TIMELINE ===== */
.timeline-section {
  background: linear-gradient(180deg, #f8fffe 0%, #f0faf9 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.timeline-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Desktop: horizontal zig-zag timeline */
.tl-track {
  position: relative;
  padding: 60px 0 30px;
}

.tl-track::before {
  content: "";
  position: absolute;
  top: 125px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gndu-green) 0%,
    var(--gndu-green) 100%
  );
  border-radius: 10px;
  z-index: 0;
}

.tl-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 8px;
}

/* Alternating: odd steps = card above line, even = card below */
.tl-step:nth-child(odd) .tl-connector {
  height: 30px;
  width: 2px;
  background: var(--gndu-green);
  opacity: 0.4;
  order: 2;
}

.tl-step:nth-child(odd) .tl-card {
  order: 1;
  margin-bottom: 0;
}

.tl-step:nth-child(odd) .tl-dot-wrap {
  order: 3;
}

.tl-step:nth-child(odd) .tl-name {
  order: 4;
  margin-top: 8px;
}

.tl-step:nth-child(even) .tl-dot-wrap {
  order: 1;
}

.tl-step:nth-child(even) .tl-connector {
  height: 30px;
  width: 2px;
  background: var(--gndu-accent);
  opacity: 0.4;
  order: 2;
}

.tl-step:nth-child(even) .tl-card {
  order: 3;
  margin-top: 0;
}

.tl-step:nth-child(even) .tl-name {
  order: 0;
  margin-bottom: 8px;
}

.tl-dot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tl-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gndu-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(7, 166, 152, 0.2);
  transition:
    transform 0.35s,
    background 0.3s,
    box-shadow 0.3s;
  cursor: default;
}

.tl-step:hover .tl-dot {
  transform: scale(1.15);
  background: var(--gndu-green);
  box-shadow: 0 10px 32px rgba(7, 166, 152, 0.38);
}

.tl-dot i {
  font-size: 24px;
  color: var(--gndu-green);
  transition: color 0.3s;
}

.tl-step:hover .tl-dot i {
  color: #fff;
}

.tl-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gndu-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.45);
}

.tl-step:nth-child(even) .tl-num {
  background: var(--gndu-green);
}

.tl-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border: 1px solid #eef0f3;
  width: 130px;
  text-align: center;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}

.tl-step:hover .tl-card {
  box-shadow: 0 10px 28px rgba(7, 166, 152, 0.15);
  border-color: rgba(7, 166, 152, 0.25);
}

.tl-card-icon {
  font-size: 22px;
  color: var(--gndu-green);
  margin-bottom: 6px;
  opacity: 0.7;
}

.tl-card p {
  font-size: 11px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.tl-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gndu-green-dark);
  text-align: center;
  line-height: 1.3;
}

/* ---- Mobile: vertical timeline ---- */
.tl-card-title {
  display: none;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .tl-card-title {
    display: block;
  }

  .tl-track::before {
    display: none;
  }

  .tl-steps {
    flex-direction: column;
    gap: 0;
  }

  .tl-step {
    flex-direction: row !important;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 0 0;
    margin-bottom: 28px;
  }

  .tl-step:nth-child(odd) .tl-card,
  .tl-step:nth-child(even) .tl-card {
    order: 3;
    width: auto;
    flex: 1;
    margin: 0;
  }

  .tl-step:nth-child(odd) .tl-dot-wrap,
  .tl-step:nth-child(even) .tl-dot-wrap {
    order: 1;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .tl-step:nth-child(odd) .tl-connector,
  .tl-step:nth-child(even) .tl-connector {
    display: none;
  }

  .tl-step:nth-child(odd) .tl-name,
  .tl-step:nth-child(even) .tl-name {
    display: none;
  }

  .tl-card {
    width: auto;
    text-align: left;
    padding: 14px 16px;
  }

  .tl-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
  }

  .tl-card p {
    font-size: 12.5px;
  }

  .tl-dot {
    width: 54px;
    height: 54px;
  }

  .tl-dot i {
    font-size: 20px;
  }

  /* Vertical connecting line via pseudo on parent */
  .tl-steps {
    position: relative;
  }

  .tl-steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 8px;
    bottom: 30px;
    width: 1px;
    background: linear-gradient(180deg, var(--gndu-green), var(--gndu-green));
    border-radius: 10px;
    z-index: 0;
  }
}

@media (max-width: 575px) {
  .tl-dot {
    width: 60px;
    height: 60px;
  }

  .tl-dot i {
    font-size: 17px;
  }

  .tl-num {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .tl-steps::before {
    left: 30px;
  }
}

/* TESTIMONIALS – CAROUSEL */
.testimonials-section {
  background: #111827;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testi-arc {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.testi-arc2 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.testi-ring {
  position: absolute;
  top: 10%;
  right: -60px;
  width: 260px;
  height: 260px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.testi-ring2 {
  position: absolute;
  top: 5%;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section .section-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.testi-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testi-card p {
  color: #ced0d3;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author h6 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: #ababab;
}

.testi-author span {
  font-size: 12px;
  color: var(--gndu-green);
  font-weight: 600;
}

.testi-stars {
  color: #fbbf24;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Swiper nav inside testi */
.testi-swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.testi-swiper-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-swiper-nav button:hover {
  background: #fff;
  color: var(--gndu-green);
}

.testi-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testi-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 10px;
}

/* LEAD FORM – floating right side */
.lead-section {
  background: linear-gradient(135deg, #f0fdf9 0%, #e8f6f4 50%, #fffbf0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.lead-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.lead-left h2 span {
  color: var(--gndu-green);
}

.lead-left p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lead-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  margin-bottom: 12px;
}

.lead-benefits li i {
  color: var(--gndu-green);
  font-size: 18px;
}

.lead-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.lead-form-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  /*background: linear-gradient(90deg, var(--gndu-green), var(--gndu-accent));*/
}

.lead-form-card h4 {
  font-weight: 800;
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 4px;
}

.lead-form-card .subtitle {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 24px;
}

.lead-form-card .form-control,
.lead-form-card .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: var(--font-body);
}

.lead-form-card .form-control:focus,
.lead-form-card .form-select:focus {
  border-color: var(--gndu-green);
  box-shadow: 0 0 0 3px rgba(7, 166, 152, 0.12);
  outline: none;
}

.lead-form-card .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.lead-form-card .input-group-text {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: var(--gndu-green);
}

.lead-form-card .input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.btn-lead {
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: var(--font-body);
}

.btn-lead:hover {
  background: var(--gndu-green-dark);
  transform: translateY(-1px);
}

.lead-privacy {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
}

.lead-privacy i {
  color: var(--gndu-green);
}

/* BLOG */
.blog-section {
  background: #f9fafb;
  padding: 80px 0;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gndu-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
  align-items: center;
}

.blog-meta i {
  color: var(--gndu-green);
}

.blog-body h5 {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body h5 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.blog-body h5 a:hover {
  color: var(--gndu-green);
}

.blog-body p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--gndu-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 10px;
  color: var(--gndu-green);
}

.btn-view-more {
  border: 2px solid var(--gndu-green);
  color: var(--gndu-green);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-view-more:hover {
  background: var(--gndu-green);
  color: #fff;
}

/* VC MESSAGE */
.vc-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vc-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.vc-img-wrap {
  position: relative;
  display: inline-block;
}

.vc-img-wrap img {
  width: 340px;
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.vc-img-deco {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 3px solid var(--gndu-green);
  z-index: -1;
  opacity: 0.5;
}

.vc-quote-icon {
  font-size: 80px;
  line-height: 1;
  color: var(--gndu-green);
  opacity: 0.12;
  font-family: "Playfair Display", serif;
  position: absolute;
  top: -20px;
  left: 0;
  pointer-events: none;
  user-select: none;
}

.vc-content {
  position: relative;
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gndu-green-light);
  border: 1px solid rgba(7, 166, 152, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gndu-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vc-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  margin-bottom: 6px;
}

.vc-designation {
  font-size: 14px;
  font-weight: 600;
  color: var(--gndu-green);
  margin-bottom: 20px;
}

.vc-content blockquote {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  border-left: 4px solid var(--gndu-green);
  padding-left: 20px;
  margin: 0 0 20px;
  font-style: italic;
}

.vc-content p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 20px;
}

.btn-vc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gndu-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-vc:hover {
  background: var(--gndu-green-dark);
  color: #fff;
}

.btn-vc-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gndu-green);
  border: 2px solid var(--gndu-green);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-vc-outline:hover {
  background: var(--gndu-green);
  color: #fff;
}

/* ABOUT + ANNOUNCEMENTS */
.about-announcements {
  padding: 80px 0;
  background: #fff;
}

.about-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gndu-accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-content p {
  color: #4b5563;
  line-height: 1.75;
  font-size: 15px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-stat-box {
  background: #f9fafb;
  border-radius: 14px;
  padding: 18px;
  /*border-left: 4px solid var(--gndu-green);*/
}

.about-stat-box h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gndu-green);
  margin: 0;
}

.about-stat-box span {
  font-size: 13px;
  color: #4b5563;
}

.btn-about {
  background: var(--gndu-green);
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-about:hover {
  background: var(--gndu-green-dark);
  color: #fff;
}

.btn-about-outline {
  background: transparent;
  color: var(--gndu-green);
  border: 2px solid var(--gndu-green);
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-about-outline:hover {
  background: var(--gndu-green);
  color: #fff;
}

.announcements-panel {
  background: var(--gndu-green-dark);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.ann-header {
  background: var(--gndu-green);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ann-header h5 {
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ann-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  display: inline-block;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.ann-scroll-wrap {
  height: 528px;
  overflow: hidden;
  position: relative;
}

.ann-scroll-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, var(--gndu-green-dark), transparent);
  z-index: 5;
  pointer-events: none;
}

.ann-scroll-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--gndu-green-dark), transparent);
  z-index: 5;
  pointer-events: none;
}

.ann-scroll-inner {
  padding: 16px 20px;
  animation: scrollUp 36s linear infinite;
}

.ann-scroll-inner:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.ann-item {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  /*border-left: 3px solid var(--gndu-green);*/
}

.ann-item:hover {
  background: rgba(255, 255, 255, 0.13);
}

.ann-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gndu-green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ann-item h6 {
  color: #f0fdf4;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.ann-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.ann-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--gndu-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* NEWSLETTER */
.newsletter-section {
  background: #1f2c30;
  padding: 50px 0;
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-card h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  max-width: 300px;
}

.newsletter-form {
  display: flex;
  flex: 1;
  gap: 12px;
  max-width: 560px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 22px;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.newsletter-form button:hover {
  background: #05857a;
}

/* CTA Content */
.cta-content {
  max-width: 520px;
}

.cta-content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* CTA Button */
.btn-consult {
  background: var(--gndu-green);
  color: #fff;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-consult:hover {
  background: #05857a;
  color: #fff;
}

/* FOOTER */
.site-footer {
  background: #0f1e1d;
  padding: 60px 0 30px;
}

.footer-col h6 {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gndu-green);
}

.footer-col a i {
  font-size: 12px;
  color: var(--gndu-green);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  margin: 0;
  padding: 0;
}

.footer-social a:hover {
  background: var(--gndu-green);
  color: #fff;
}

.footer-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-post img {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-post h6 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-post:hover h6 {
  color: var(--gndu-green);
}

.footer-post span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: var(--gndu-green);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(7, 166, 152, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: none;
}

.back-to-top:hover {
  background: var(--gndu-green-dark);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-wrapper {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero-right {
    margin-top: 36px;
  }

  .float-card.top {
    left: 0;
  }

  .float-card.bottom {
    right: 0;
  }

  #heroCarousel .carousel-control-prev {
    left: 8px;
  }

  #heroCarousel .carousel-control-next {
    right: 8px;
  }

  .offer-content h2 {
    font-size: 1.8rem;
  }

  .newsletter-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }

  .newsletter-card h3 {
    max-width: 100%;
  }

  .vc-img-wrap img {
    width: 280px;
  }

  .lead-left h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .faq-img-grid {
    grid-template-columns: 1fr;
  }

  .faq-img-grid img:first-child {
    height: 200px;
  }

  .instructor-float {
    bottom: auto;
    top: 10px;
    left: 10px;
  }

  .vc-img-wrap img {
    width: 220px;
  }
}

@media (max-width: 575px) {
  .hero-left h1 {
    font-size: 1.65rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats .stat h4 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .ann-scroll-wrap {
    height: 380px;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-card {
    padding: 24px;
  }

  .testi-swiper-nav {
    gap: 10px;
  }
}

/* ══════════════════════════════════════
   PROGRAM PAGE – SPECIFIC STYLES
══════════════════════════════════════ */

/* Breadcrumb */
.pg-breadcrumb {
  background: linear-gradient(90deg, var(--gndu-green-dark) 0%, #1a3a38 100%);
  padding: 14px 0;
}

.pg-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pg-breadcrumb li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-breadcrumb li::after {
  content: "/";
  opacity: 0.4;
}

.pg-breadcrumb li:last-child::after {
  display: none;
}

.pg-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.pg-breadcrumb a:hover {
  color: #fff;
}

.pg-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* ── HERO / PROGRAM HEADER ── */
.pg-hero {
  background: linear-gradient(135deg, #e8f6f4 0%, #f0faf9 50%, #fffbf0 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.pg-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.pg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gndu-green);
  box-shadow: 0 4px 18px rgba(7, 166, 152, 0.18);
  margin-bottom: 16px;
}

.pg-hero-badge i {
  color: var(--gndu-accent);
}

.pg-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gndu-green-dark);
  margin-bottom: 14px;
}

.pg-hero h1 span {
  color: var(--gndu-green);
}

.pg-hero-desc {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 530px;
  margin-bottom: 28px;
}

/* Quick info pills */
.pg-quick-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pg-info-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pg-info-pill i {
  color: var(--gndu-green);
  font-size: 15px;
}

/* CTA buttons row */
.pg-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-pg-primary {
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(7, 166, 152, 0.35);
}

.btn-pg-primary:hover {
  background: var(--gndu-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(7, 166, 152, 0.4);
}

.btn-pg-outline {
  background: transparent;
  color: var(--gndu-green);
  border: 2px solid var(--gndu-green);
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-pg-outline:hover {
  background: var(--gndu-green);
  color: #fff;
}

/* Accreditation logos row */
.pg-accred {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 8px;
  margin-bottom: 40px;
}

.pg-accred-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-right: 4px;
}

.pg-accred-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.pg-accred-badge i {
  color: var(--gndu-green);
  font-size: 14px;
}

/* Hero right: program card */
.pg-hero-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  position: relative;
}

.pg-hero-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.pg-hero-card-body {
  padding: 24px;
}

.pg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.pg-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pg-detail-item span:first-child {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gndu-green);
}

.pg-detail-item span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.pg-enroll-btn {
  width: 100%;
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pg-enroll-btn:hover {
  background: var(--gndu-green-dark);
}

/* Sticky nav tabs */
.pg-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 72px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pg-tabs {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}

.pg-tabs::-webkit-scrollbar {
  display: none;
}

.pg-tab {
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.pg-tab:hover {
  color: var(--gndu-green);
}

.pg-tab.active {
  color: var(--gndu-green);
  border-bottom-color: var(--gndu-green);
}

/* Shared section header */
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1faf9;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gndu-green);
  border: 1px solid rgba(7, 166, 152, 0.2);
  margin-bottom: 10px;
}

.sec-badge i {
  color: var(--gndu-accent);
}

.sec-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.sec-sub {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}

/* ── WHY BCA ONLINE – Icon feature cards ── */
.why-section {
  padding: 80px 0;
  background: #fff;
}

.why-card {
  background: #f8fffe;
  border: 1px solid rgba(7, 166, 152, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gndu-green);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.3);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gndu-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gndu-green);
  margin-bottom: 16px;
  transition: background 0.3s;
}

.why-card:hover .why-icon {
  background: var(--gndu-green);
  color: #fff;
}

.why-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ── BENEFITS ── */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0faf9 100%);
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f2f4;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gndu-green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.benefit-item p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Stats */
.stat-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f2f4;
}

.stat-highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gndu-green);
  margin-bottom: 4px;
}

.stat-highlight p {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

/* ── FEES & ELIGIBILITY ── */
.fees-section {
  padding: 80px 0;
  background: #fff;
}

.fee-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
  border: 1px solid #f0f2f4;
  height: 100%;
}

.fee-card-head {
  background: linear-gradient(135deg, var(--gndu-green-dark), #1a3a38);
  padding: 28px 28px 24px;
  color: #fff;
}

.fee-card-head h4 {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.fee-card-head p {
  opacity: 0.7;
  font-size: 13px;
  margin: 0;
  color: #fff;
}

.fee-price {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 14px 0 6px;
}

.fee-price span {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.7;
  color: #fff;
}

.fee-card-body {
  padding: 24px 28px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-row strong {
  color: #111827;
}

.fee-row span {
  color: var(--gndu-green);
  font-weight: 600;
}

.eligibility-card {
  background: linear-gradient(135deg, #f1faf9, #fffbf0);
  border: 1px solid rgba(7, 166, 152, 0.2);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}

.eligibility-card h4 {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-card h4 i {
  color: var(--gndu-green);
}

.elig-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.elig-item i {
  color: var(--gndu-green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.payment-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 166, 152, 0.1);
  color: var(--gndu-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ── SYLLABUS ── */
.syllabus-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fffe, #fff);
}

.sem-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.sem-accordion .accordion-button {
  font-weight: 700;
  font-size: 15px;
  background: #fff;
  color: #111827;
  border-radius: 14px !important;
  padding: 18px 22px;
}

.sem-accordion .accordion-button:not(.collapsed) {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  box-shadow: none;
}

.sem-accordion .accordion-button::after {
  filter: none;
}

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

.sem-accordion .accordion-body {
  padding: 16px 22px 20px;
  background: #fafafa;
}

.subject-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 4px;
  transition: all 0.2s;
}

.subject-chip:hover {
  border-color: var(--gndu-green);
  color: var(--gndu-green);
  background: var(--gndu-green-light);
}

.subject-chip i {
  font-size: 12px;
  color: var(--gndu-green);
}

/* ── LMS ── */
.lms-section {
  padding: 80px 0;
  background: #fff;
}

.lms-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: #f8fffe;
  border: 1px solid rgba(7, 166, 152, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.lms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 166, 152, 0.12);
}

.lms-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--gndu-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 18px;
  transition: transform 0.3s;
}

.lms-card:hover .lms-icon {
  transform: scale(1.1);
}

.lms-card h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.lms-card p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ── ADMISSION PROCESS ── */
.admission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe, #f0faf9);
}

.adm-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.adm-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 70px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--gndu-green), transparent);
  opacity: 0.3;
}

.adm-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gndu-green);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(7, 166, 152, 0.3);
}

.adm-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.adm-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.adm-cta-card {
  background: linear-gradient(135deg, var(--gndu-green-dark), #1a3a38);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  color: #fff;
}

.adm-cta-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.adm-cta-card p {
  opacity: 0.75;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: 80px 0;
  background: #111827;
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.testi-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testi-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gndu-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testi-swiper2-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testi-swiper2-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-swiper2-nav button:hover {
  background: #fff;
  color: var(--gndu-green);
}

/* ── FAQ ── */
.faq-section-pg {
  padding: 80px 0;
  background: #fff;
}

.pg-faq .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.pg-faq .accordion-button {
  font-weight: 600;
  font-size: 15px;
  background: #fff;
  color: #111827;
  padding: 18px 22px;
  border-radius: 14px !important;
}

.pg-faq .accordion-button:not(.collapsed) {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  box-shadow: none;
}

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

.pg-faq .accordion-body {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.75;
  padding: 16px 22px 22px;
}

/* ── JOBS ── */
.jobs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe, #f0faf9);
}

.job-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  border: 1px solid #f0f2f4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 166, 152, 0.12);
}

.job-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gndu-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gndu-green);
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.job-card:hover .job-icon {
  background: var(--gndu-green);
  color: #fff;
}

.job-card h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.job-salary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(7, 166, 152, 0.1);
  color: var(--gndu-green);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
}

.job-card p {
  font-size: 13px;
  color: #4b5563;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ── FLOATING ENQUIRY BTN (mobile) ── */
.float-enquire {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gndu-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(7, 166, 152, 0.45);
  cursor: pointer;
  z-index: 800;
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s;
}

.float-enquire:hover {
  background: var(--gndu-green-dark);
  color: #fff;
}

@media (max-width: 767px) {
  .float-enquire {
    display: flex;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .pg-hero h1 {
    font-size: 2rem;
  }

  .pg-hero-card {
    margin-top: 0px;
  }

  .newsletter-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .pg-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-highlight {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .pg-hero h1 {
    font-size: 1.7rem;
  }

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

  .fee-price {
    font-size: 2rem;
  }

  .adm-cta-card {
    padding: 28px 20px;
  }
}

.swiper-pagination.mt-4.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}

.swiper-pagination.testi-pagination.mt-4.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT US – PAGE-SPECIFIC STYLES
══════════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.au-hero {
  background: var(--gd);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

/* Diagonal split – bottom-right green wedge */
.au-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(7, 166, 152, 0.07) 45%
  );
  pointer-events: none;
}

/* Dot-grid overlay */
.au-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.au-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 166, 152, 0.18);
  border: 1px solid rgba(7, 166, 152, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.au-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.au-hero h1 em {
  color: var(--g);
  font-style: italic;
}

.au-hero-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.au-hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.au-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.au-chip i {
  color: var(--g);
}

/* hero stats bar */
.au-hero-stats {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.au-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.au-stat:last-child {
  border-right: none;
}

.au-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.au-stat-num span {
  color: var(--g);
}

.au-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* hero image panel */
.au-hero-img-wrap {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  /*height: 100%;
  min-height: 380px;
  box-shadow: -30px 0 80px rgba(0, 0, 0, .3);*/
}

.au-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.au-hero-img-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--g);
}

.au-hero-img-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.au-hero-img-badge span {
  font-size: 11.5px;
  color: #4b5563;
}

/* ── BREADCRUMB ── */
.au-breadcrumb {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.au-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.au-breadcrumb li {
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
}

.au-breadcrumb li::after {
  content: "/";
  opacity: 0.5;
}

.au-breadcrumb li:last-child::after {
  display: none;
}

.au-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.au-breadcrumb a:hover {
  color: var(--g);
}

.au-breadcrumb .current {
  color: var(--g);
  font-weight: 600;
}

/* ── SHARED SECTION HEADER ── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1faf9;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g);
  border: 1px solid rgba(7, 166, 152, 0.2);
  margin-bottom: 12px;
}

.sec-tag i {
  color: var(--acc);
}

.sec-h {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.sec-p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
}

/* ── MISSION / VISION / VALUES ── */
.mvv-section {
  padding: 90px 0;
  background: #fff;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

.mvv-card {
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.mvv-card:hover {
  transform: translateY(-4px);
}

.mvv-card:nth-child(1) {
  background: var(--gd);
  color: #fff;
}

.mvv-card:nth-child(2) {
  background: var(--g);
  color: #fff;
}

.mvv-card:nth-child(3) {
  background: #111827;
  color: #fff;
}

.mvv-card::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.mvv-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.mvv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin: 0;
}

/* ── STORY TIMELINE ── */
.story-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fffe, #fff);
}

.story-section .timeline {
  position: relative;
  padding-left: 0;
}

.story-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--g), transparent);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .story-section .timeline::before {
    left: 24px;
    transform: none;
  }
}

.story-section .tl-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
}

.story-section .tl-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .story-section .tl-item,
  .story-section .tl-item:nth-child(even) {
    flex-direction: row;
    padding-left: 56px;
  }
}

.story-section .tl-content {
  width: calc(50% - 40px);
  background: #fff;
  border-radius: 18px;
  padding: 28px 28px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f2f4;
  position: relative;
  transition: box-shadow 0.3s;
}

.story-section .tl-content:hover {
  box-shadow: 0 12px 40px rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.2);
}

@media (max-width: 767px) {
  .story-section .tl-content {
    width: 100%;
  }
}

.story-section .tl-year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gl);
  color: var(--g);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-section .tl-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.story-section .tl-content p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

.story-section .tl-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(7, 166, 152, 0.35);
  flex-shrink: 0;
  z-index: 2;
}

@media (max-width: 767px) {
  .story-section .tl-dot {
    position: absolute;
    left: 0;
    top: 20px;
    transform: none;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

.story-section .tl-dot i {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s;
}

.story-section .tl-spacer {
  width: calc(50% - 40px);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .story-section .tl-spacer {
    display: none;
  }
}

/* ── LEADERSHIP ── */
.team-section {
  padding: 90px 0;
  background: #fff;
}

.leader-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f2f4;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(7, 166, 152, 0.14);
}

.leader-img {
  position: relative;
  overflow: hidden;
  /* height: 260px; */
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

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

.leader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 44, 48, 0.85) 0%,
    transparent 55%
  );
}

.leader-social {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.leader-card:hover .leader-social {
  opacity: 1;
  transform: none;
}

.leader-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gd);
  text-decoration: none;
  transition: background 0.2s;
}

.leader-social a:hover {
  background: var(--g);
  color: #fff;
}

.leader-body {
  padding: 22px 22px 24px;
}

.leader-name {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.leader-body p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ── ACCREDITATION & RECOGNITION ── */
.accred-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fffe, #f0faf9);
}

.accred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.accred-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f2f4;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  min-width: 200px;
}

.accred-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.25);
}

.accred-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.accred-badge-icon.green {
  background: rgba(7, 166, 152, 0.12);
  color: var(--g);
}

.accred-badge-icon.dark {
  background: rgba(31, 44, 48, 0.1);
  color: var(--gd);
}

.accred-badge-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--acc);
}

.accred-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.accred-badge span {
  font-size: 12px;
  color: #4b5563;
}

/* Progress bar accreditation visual */
.grade-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f2f4;
}

.grade-item {
  margin-bottom: 20px;
}

.grade-item:last-child {
  margin-bottom: 0;
}

.grade-label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.grade-label span {
  color: var(--g);
  font-weight: 700;
}

.grade-bar {
  height: 8px;
  background: #f3f4f6;
  border-radius: 50px;
  overflow: hidden;
}

.grade-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--g), #05c4b5);
  transition: width 1.4s var(--ease);
}

/* ── WHY US – SPLIT FEATURE ── */
.why-section {
  padding: 90px 0;
  background: #fff;
}

.why-img-stack {
  position: relative;
  padding: 20px 0 60px 0;
}

.why-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.why-img-main img {
  width: 100%;
  /*height: 360px;*/
  object-fit: cover;
  display: block;
}

.why-img-float {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  border: 4px solid #fff;
}

.why-img-float img {
  width: 100%;
  /*height: 160px;*/
  object-fit: cover;
  display: block;
}

.why-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 14px;
  transition: background 0.2s;
  cursor: default;
}

.why-feature:hover {
  background: #f8fffe;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--g);
  transition: all 0.3s;
}

.why-feature:hover .why-feature-icon {
  background: var(--g);
  color: #fff;
}

.why-feature h5 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.why-feature p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ── NUMBERS / IMPACT ── */
.impact-section {
  padding: 90px 0;
  background: var(--gd);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(7, 166, 152, 0.15);
}

.impact-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(7, 166, 152, 0.1);
}

.impact-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.3s,
    border-color 0.3s;
}

.impact-card:hover {
  background: rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.3);
}

.impact-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.impact-num span {
  color: var(--g);
}

.impact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.impact-icon {
  font-size: 28px;
  color: var(--g);
  margin-bottom: 12px;
  display: block;
}

/* ── CAMPUS & ONLINE EXPERIENCE ── */
.experience-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fffe, #fff);
}

.exp-tab-nav {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #f0f2f4;
  margin-bottom: 40px;
}

.exp-tab {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.exp-tab.active {
  color: var(--g);
  border-bottom-color: var(--g);
}

.exp-tab-panel {
  display: none;
}

.exp-tab-panel.active {
  display: block;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 575px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}

.exp-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #f0f2f4;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(7, 166, 152, 0.1);
}

.exp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--g);
  flex-shrink: 0;
}

.exp-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.exp-card p {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi-section-about {
  padding: 90px 0;
  background: #111827;
  position: relative;
  overflow: hidden;
}

.testi-section-about::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.testi-quote {
  font-size: 80px;
  line-height: 1;
  color: var(--g);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testi-slide-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.testi-stars2 {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 14px;
}

.testi-text2 {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-meta2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--g);
}

.testi-av-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}

.testi-name2 {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.testi-role2 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testi2-nav {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.testi2-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.testi2-nav button:hover {
  background: var(--g);
  border-color: var(--g);
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--g) 0%, #05857a 60%, var(--gd) 100%);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-white {
  background: #fff;
  color: var(--g);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--gd);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--g);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .au-hero-img-wrap {
    display: none;
  }

  .au-hero {
    padding-bottom: 0;
  }

  .timeline::before {
    left: 20px;
    transform: none;
  }

  .tl-item,
  .tl-item:nth-child(even) {
    flex-direction: row;
    padding-left: 52px;
  }

  .tl-content {
    width: 100%;
  }

  .tl-dot {
    position: absolute;
    left: 0;
    /* top: 20px; */
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .tl-spacer {
    display: none;
  }

  .why-img-float {
    right: 0;
  }

  .newsletter-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .au-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .au-stat {
    min-width: 45%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 575px) {
  .au-hero h1 {
    font-size: 2rem;
  }

  .sec-h {
    font-size: 1.5rem;
  }

  .impact-num {
    font-size: 2.2rem;
  }
}

.page-hero-inner {
  background: linear-gradient(
    135deg,
    var(--gndu-green-dark) 0%,
    #0d3b38 60%,
    #07a698 100%
  );
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-inner h1 span {
  color: var(--gndu-accent);
}

.page-hero-inner .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.page-breadcrumb {
  background: none;
  padding: 0;
}

.page-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.page-breadcrumb .breadcrumb-item.active {
  color: var(--gndu-accent);
  font-weight: 600;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Hero Badge Cards */
.contact-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 8px;
}

.chb-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  transition:
    background 0.3s,
    transform 0.3s;
}

.chb-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-4px);
}

.chb-card .chb-icon {
  width: 44px;
  height: 44px;
  background: var(--gndu-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.chb-card strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.chb-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   CONTACT INFO CARDS
============================================= */
.contact-cards-section {
  padding: 60px 0 20px;
  background: #f8fafc;
}

.contact-info-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e9eff5;
  padding: 32px 24px;
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 166, 152, 0.12);
  border-color: var(--gndu-green);
}

.contact-info-card.accent-card {
  background: var(--gndu-green);
  border-color: var(--gndu-green);
  color: #fff;
}

.contact-info-card.accent-card h6,
.contact-info-card.accent-card p {
  color: #fff;
}

.contact-info-card.accent-card .cic-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-info-card.accent-card .cic-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-info-card.accent-card .cic-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cic-icon {
  width: 52px;
  height: 52px;
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.contact-info-card h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gndu-dark);
}

.contact-info-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cic-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gndu-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid var(--gndu-green-light);
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}

.cic-link:hover {
  background: var(--gndu-green);
  color: #fff;
}

.cic-social {
  display: flex;
  gap: 10px;
}

.cic-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.cic-social a:hover {
  background: var(--gndu-green);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   CONTACT MAIN SECTION
============================================= */
.contact-main-section {
  padding: 80px 0;
}

.contact-form-card {
  position: relative;
}

.contact-textarea {
  resize: vertical;
  min-height: 100px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: var(--font-body);
}

.contact-textarea:focus {
  border-color: var(--gndu-green);
  box-shadow: 0 0 0 3px rgba(7, 166, 152, 0.12);
  outline: none;
}

/* FAQ Accordion */
.contact-faq .accordion-item {
  border: 1.5px solid #e9eff5;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.contact-faq .accordion-button {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gndu-dark);
  background: #fff;
  padding: 16px 18px;
}

.contact-faq .accordion-button:not(.collapsed) {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  box-shadow: none;
}

.contact-faq .accordion-button::after {
  filter: none;
}

.contact-faq .accordion-button:not(.collapsed)::after {
  filter: hue-rotate(0deg) saturate(2);
}

.contact-faq .accordion-body {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  padding: 14px 18px 18px;
  background: #fafcfc;
}

/* Success State */
.contact-success-state {
  text-align: center;
  padding: 40px 20px;
}

.css-icon {
  font-size: 3.5rem;
  color: var(--gndu-green);
  margin-bottom: 16px;
}

.contact-success-state h5 {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gndu-dark);
}

.contact-success-state p {
  color: #4b5563;
  max-width: 360px;
  margin: 10px auto 0;
}

/* =============================================
   MAP SECTION
============================================= */
.contact-map-section {
  padding: 20px 0 80px;
  background: #f8fafc;
}

.contact-map-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
}

.contact-map-section h2 span {
  color: var(--gndu-green);
}

.contact-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1.5px solid #e9eff5;
}

.contact-map-wrap iframe {
  display: block;
}

.map-overlay-card {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 280px;
  border: 1.5px solid #e9eff5;
}

.moc-icon {
  width: 40px;
  height: 40px;
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.map-overlay-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gndu-dark);
  margin-bottom: 6px;
}

.map-overlay-card p {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  .map-overlay-card {
    position: static;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: 1.5px solid #e9eff5;
    box-shadow: none;
  }

  .contact-hero-badges {
    display: none;
  }
}

/* =====================================================
   PROGRAMS PAGE
   ===================================================== */
.prg-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prg-stat {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(7, 166, 152, 0.06);
}

.prg-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gndu-green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.prg-stat-lbl {
  font-size: 12px;
  color: #4b5563;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prg-page-section {
  background: #f8fffe;
  padding: 60px 0 80px;
}

/* Filter tabs */
.prg-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eef0f3;
}

.prg-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.prg-filter i {
  font-size: 13px;
}

.prg-filter:hover {
  border-color: var(--gndu-green);
  color: var(--gndu-green);
  background: #f1faf9;
}

.prg-filter.active {
  background: var(--gndu-green);
  border-color: var(--gndu-green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(7, 166, 152, 0.28);
}

/* Group headers */
.prg-group {
  margin-bottom: 60px;
}

.prg-group-header {
  margin-bottom: 28px;
}

.prg-group-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin: 10px 0 6px;
}

.prg-group-header p {
  font-size: 14.5px;
  color: #4b5563;
  margin: 0;
}

.prg-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 50px;
}

.prg-group-badge.ug {
  background: rgba(7, 166, 152, 0.1);
  color: var(--gndu-green);
}
.prg-group-badge.pg {
  background: rgba(249, 115, 22, 0.1);
  color: var(--gndu-accent);
}
.prg-group-badge.cert {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* Program Cards */
.prg-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef0f3;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(7, 166, 152, 0.12);
  border-color: rgba(7, 166, 152, 0.25);
}

.prg-card-img {
  position: relative;
  overflow: hidden;
}

.prg-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.prg-cat-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.prg-cat-pill.cert {
  background: rgba(59, 130, 246, 0.75);
}

.prg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prg-badge.green {
  background: var(--gndu-green);
  color: #fff;
}
.prg-badge.accent {
  background: var(--gndu-accent);
  color: #fff;
}

.cert-icon-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gndu-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.prg-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prg-card-body h4 {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
}

.prg-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #9ca3af;
  margin-bottom: 14px;
}

.prg-meta-row i {
  color: var(--gndu-green);
}

.prg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.prg-hl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gndu-green-dark);
  background: rgba(7, 166, 152, 0.07);
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prg-hl i {
  color: var(--gndu-green);
  font-size: 11px;
}

.prg-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.prg-fee-elig {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prg-fee {
  font-size: 15px;
  font-weight: 800;
  color: var(--gndu-green-dark);
}

.prg-elig {
  font-size: 11.5px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 4px;
}

.prg-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gndu-green);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

.prg-card-btn:hover {
  background: var(--gndu-green-dark);
  color: #fff;
  transform: translateX(2px);
}

/* CTA Band */
.prg-cta-band {
  background: linear-gradient(135deg, var(--gndu-green-dark) 0%, #1a3a38 100%);
  padding: 60px 0;
}

.prg-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.prg-cta-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 8px;
}

.prg-cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  margin: 0;
}

/* =====================================================
   BLOG LISTING PAGE
   ===================================================== */
.blog-page-section {
  background: #f8fffe;
  padding: 60px 0 90px;
}

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 40px rgba(7, 166, 152, 0.08);
  margin-bottom: 24px;
}

.blog-featured-img {
  position: relative;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: 42px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--gndu-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.blog-featured-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-featured-body h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.blog-featured-body h2 a:hover {
  color: var(--gndu-green);
}

.blog-featured-body p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
}

/* Category filter pills */
.blog-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-cat-btn {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-cat-btn:hover {
  border-color: var(--gndu-green);
  color: var(--gndu-green);
}

.blog-cat-btn.active {
  background: var(--gndu-green);
  border-color: var(--gndu-green);
  color: #fff;
}

/* Blog tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.blog-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(7, 166, 152, 0.08);
  color: var(--gndu-green);
  border-radius: 20px;
  padding: 3px 10px;
}

/* =====================================================
   BLOG POST PAGE
   ===================================================== */
.blog-post-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.blog-post-hero-img {
  position: absolute;
  inset: 0;
}

.blog-post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.blog-post-hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: 40px;
  padding-top: 20px;
}

.blog-post-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 12px 0 14px;
  max-width: 820px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.bpm-sep {
  color: rgba(255, 255, 255, 0.4);
}

.blog-post-section {
  background: #f8fffe;
  padding: 60px 0 90px;
}

/* Blog post body */
.blog-post-body {
  background: #fff;
  border-radius: 20px;
  padding: 44px 48px;
  border: 1px solid #eef0f3;
  box-shadow: 0 4px 24px rgba(7, 166, 152, 0.06);
}

.blog-intro-text {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.8;
  font-weight: 500;
  border-left: 4px solid var(--gndu-green);
  padding-left: 20px;
  margin-bottom: 28px;
}

.blog-post-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 12px;
  padding-top: 8px;
}

.blog-post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin: 24px 0 10px;
}

.blog-post-body p {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 18px;
}

.blog-figure {
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
}

.blog-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-figure figcaption {
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  padding: 10px 0 0;
  font-style: italic;
}

.blog-quote {
  background: linear-gradient(135deg, #f0faf9, #e8f6f4);
  border-left: 4px solid var(--gndu-green);
  border-radius: 0 14px 14px 0;
  padding: 22px 28px;
  margin: 28px 0;
}

.blog-quote p {
  font-size: 16px;
  font-style: italic;
  color: #374151;
  margin: 0 0 8px;
}

.blog-quote cite {
  font-size: 13px;
  color: #4b5563;
  font-style: normal;
  font-weight: 600;
}

.blog-cta-box {
  background: linear-gradient(135deg, var(--gndu-green-dark), #1a5c56);
  border-radius: 18px;
  padding: 32px 36px;
  margin: 36px 0;
}

.blog-cta-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.blog-cta-box .btn-about {
  background: #fff;
  color: var(--gndu-green-dark);
  border-color: #fff;
}

/* Tags */
.blog-post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 28px;
  padding-top: 24px;
  border-top: 1px solid #f0f2f5;
}

.bpt-label {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  margin-right: 4px;
}

/* Author card */
.blog-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fffe;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
}

.blog-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(7, 166, 152, 0.2);
}

.blog-author-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 6px;
}

.blog-author-card p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Post nav */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #f0f2f5;
}

.bpn-item {
  background: #f8fffe;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 14px 16px;
}

.bpn-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gndu-green);
  margin-bottom: 6px;
}

.bpn-link {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.bpn-link:hover {
  color: var(--gndu-green);
}

/* =====================================================
   BLOG SIDEBAR
   ===================================================== */
.blog-sidebar {
  position: sticky;
  top: 90px;
}

.bs-widget {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  padding: 24px 22px;
  margin-bottom: 24px;
}

.bs-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-widget-title i {
  color: var(--gndu-green);
}

/* Sidebar posts */
.bs-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs-post-item {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f5;
  transition: background 0.2s;
}

.bs-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bs-post-item:first-child {
  padding-top: 0;
}

.bs-post-item:hover .bs-post-info h6 {
  color: var(--gndu-green);
}

.bs-post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.bs-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.bs-post-item:hover .bs-post-thumb img {
  transform: scale(1.06);
}

.bs-post-info {
  flex: 1;
  min-width: 0;
}

.bs-post-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gndu-green);
  background: rgba(7, 166, 152, 0.08);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 5px;
}

.bs-post-info h6 {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.4;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-post-info p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-post-date {
  font-size: 11px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Categories */
.bs-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bs-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}

.bs-cat-item:hover {
  background: rgba(7, 166, 152, 0.07);
  color: var(--gndu-green);
}

.bs-cat-count {
  background: rgba(7, 166, 152, 0.1);
  color: var(--gndu-green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* CTA Widget */
.bs-cta-widget {
  background: linear-gradient(135deg, #f0faf9, #e8f6f4);
  border-color: rgba(7, 166, 152, 0.2);
  text-align: center;
}

.bs-cta-icon {
  width: 56px;
  height: 56px;
  background: var(--gndu-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 14px;
}

.bs-cta-widget h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.bs-cta-widget p {
  font-size: 13.5px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-img img {
    min-height: 260px;
    height: 260px;
  }
  .blog-post-hero {
    height: 360px;
  }
  .blog-post-hero-content h1 {
    font-size: 1.6rem;
  }
  .blog-post-body {
    padding: 28px 24px;
  }
  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }
  .prg-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-featured-body {
    padding: 26px 22px;
  }
  .blog-featured-body h2 {
    font-size: 1.25rem;
  }
  .blog-post-hero {
    height: 300px;
  }
  .blog-post-hero-content h1 {
    font-size: 1.3rem;
  }
  .blog-post-nav {
    grid-template-columns: 1fr;
  }
  .prg-filter {
    padding: 8px 16px;
    font-size: 13px;
  }
  .prg-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .prg-group-header h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .blog-post-body {
    padding: 20px 16px;
  }
  .blog-intro-text {
    font-size: 15px;
  }
  .prg-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .prg-card-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║   MANDATORY DISCLOSURES  —  Redesigned Cards                    ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════════════════════
   MANDATORY DISCLOSURES + SYLLABUS — Cards & Tabs
   ═══════════════════════════════════════════════════════════════════ */

/* Card grid — 2 columns on desktop, 1 on mobile */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 14px;
}

/* Each card: number | title | view-pdf link */
a.disc-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.24s;
  box-shadow: 0 2px 10px rgba(7, 166, 152, 0.04);
}

/* Left green accent bar slides in on hover */
a.disc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gndu-green), #07c4b4);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

a.disc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(7, 166, 152, 0.13);
  border-color: rgba(7, 166, 152, 0.3);
}

a.disc-card:hover::before {
  transform: scaleY(1);
}

/* Serial number badge */
.disc-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gndu-green-light), #d4f5f2);
  color: var(--gndu-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
}

a.disc-card:hover .disc-num {
  background: var(--gndu-green);
  color: #fff;
}

/* Hide the icon entirely — not needed */
.disc-icon {
  display: none;
}

/* Title area */
.disc-body {
  min-width: 0;
}

/* Hide category pill on disclosures page too */
.disc-cat {
  display: none;
}

.disc-body h6 {
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.48;
  margin: 0;
  transition: color 0.2s;
}

a.disc-card:hover .disc-body h6 {
  color: var(--gndu-green-dark);
}

/* Right: green "View PDF" button + external icon stacked */
.disc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.disc-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gndu-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(7, 166, 152, 0.25);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

a.disc-card:hover .disc-pdf-btn {
  background: var(--gndu-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 166, 152, 0.32);
}

/* Remove the PDF icon from button — text only */
.disc-pdf-btn i {
  display: none;
}

.disc-ext-icon {
  font-size: 13px;
  color: #c4cdd6;
  transition:
    color 0.2s,
    transform 0.2s;
}

a.disc-card:hover .disc-ext-icon {
  color: var(--gndu-green);
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════════════
   SYLLABUS — Year tabs (pill group, centred)
   ═══════════════════════════════════════════════════════════════════ */

.syl-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 48px;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 18px;
  padding: 8px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 14px rgba(7, 166, 152, 0.07);
}

.syl-tab {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.syl-tab:hover {
  background: var(--gndu-green-light);
  color: var(--gndu-green);
}

.syl-tab.active {
  background: var(--gndu-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(7, 166, 152, 0.3);
}

/* Panel visibility */
.syl-panel {
  display: none;
}
.syl-panel.active {
  display: block;
}

/* Group heading */
.syl-group {
  margin-bottom: 44px;
}

.syl-group-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  margin-bottom: 20px;
  padding: 10px 20px 10px 16px;
  background: linear-gradient(90deg, var(--gndu-green-light), transparent);
  border-left: 4px solid var(--gndu-green);
  border-radius: 0 10px 10px 0;
}

.syl-group-title i {
  color: var(--gndu-green);
}

/* Syllabus: hide cat pill, keep disc-icon hidden */
.syl-group .disc-cat {
  display: none;
}
.syl-group .disc-icon {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .disc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  a.disc-card {
    grid-template-columns: 38px 1fr auto;
    gap: 14px;
    padding: 15px 16px;
  }
  .disc-num {
    width: 38px;
    height: 38px;
    font-size: 13px;
    border-radius: 10px;
  }
  .syl-tabs {
    width: 100%;
    border-radius: 14px;
  }
  .syl-tab {
    padding: 9px 18px;
    font-size: 13px;
  }
  .syl-group-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  a.disc-card {
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    padding: 13px 14px;
  }
  .disc-num {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .disc-pdf-btn {
    font-size: 11.5px;
    padding: 7px 13px;
  }
  .syl-tab {
    padding: 8px 14px;
    font-size: 12.5px;
  }
}

/* ================================================================
   PRIVACY POLICY PAGE
   ================================================================ */

/* Intro banner */
.policy-intro-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #0f3a37 0%, #1a5c56 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.policy-intro-card::after {
  content: "\F5CF";
  font-family: "Bootstrap-icons";
  position: absolute;
  right: -10px;
  top: -20px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.policy-intro-card > i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  margin-top: 3px;
}

.policy-intro-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.78;
  margin: 0;
}

/* Section blocks */
.policy-section {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e8f5f4;
  background: #fff;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.policy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(7, 166, 152, 0.1);
  border-color: rgba(7, 166, 152, 0.3);
}

/* Coloured left strip + icon */
.policy-section-icon {
  flex-shrink: 0;
  width: 70px;
  background: linear-gradient(160deg, var(--gndu-green-light), #d4f5f2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
  font-size: 22px;
  color: var(--gndu-green);
  transition:
    background 0.25s,
    color 0.25s;
}

.policy-section:hover .policy-section-icon {
  background: linear-gradient(160deg, var(--gndu-green), #07c4b4);
  color: #fff;
}

.policy-section-body {
  flex: 1;
  padding: 26px 30px;
}

.policy-section-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-section-body p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section-body p:last-child {
  margin-bottom: 0;
}

/* ================================================================
   TERMS & CONDITIONS PAGE
   ================================================================ */

/* Numbered term rows */
.terms-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.terms-item {
  display: grid;
  grid-template-columns: 40px 48px 1fr;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.25s;
}

/* Accent bar on left */
.terms-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gndu-green), #07c4b4);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.terms-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 32px rgba(7, 166, 152, 0.11);
  border-color: rgba(7, 166, 152, 0.3);
}

.terms-item:hover::before {
  transform: scaleY(1);
}

/* Number badge */
.terms-num {
  width: 40px;
  height: 40px;
  background: var(--gndu-green);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(7, 166, 152, 0.3);
  transition: transform 0.25s;
}

.terms-item:hover .terms-num {
  transform: rotate(-6deg) scale(1.08);
}

/* Icon */
.terms-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gndu-green-light), #d4f5f2);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--gndu-green);
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
}

.terms-item:hover .terms-icon {
  background: var(--gndu-green);
  color: #fff;
}

/* Text */
.terms-text {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
}

/* CTA box at bottom */
.policy-cta-box {
  background: linear-gradient(135deg, #f0faf9 0%, #e4f7f5 100%);
  border: 1.5px solid rgba(7, 166, 152, 0.2);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
}

.policy-cta-box h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  margin-bottom: 10px;
}

.policy-cta-box p {
  font-size: 14.5px;
  color: #4b5563;
  margin-bottom: 22px;
  line-height: 1.65;
}

/* ================================================================
   REGULATIONS & APPROVALS PAGE
   ================================================================ */

.reg-group-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  padding: 14px 20px;
  background: linear-gradient(90deg, var(--gndu-green-light), transparent);
  border-left: 4px solid var(--gndu-green);
  border-radius: 0 12px 12px 0;
  margin-bottom: 22px;
}

.reg-group-heading i {
  color: var(--gndu-green);
}

/* Accordion wrapper */
.reg-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single item */
.reg-acc-item {
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 16px;
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    border-color 0.28s;
}

.reg-acc-item:has(.reg-acc-body.show) {
  border-color: rgba(7, 166, 152, 0.35);
  box-shadow: 0 8px 32px rgba(7, 166, 152, 0.1);
}

/* Trigger button */
.reg-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background 0.2s;
}

.reg-acc-btn:hover {
  background: #f5fffe;
}

.reg-acc-btn:not(.collapsed) {
  background: linear-gradient(90deg, #f0faf9, #fff);
}

/* Icon pill */
.reg-acc-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gndu-green-light), #d4f5f2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gndu-green);
  transition:
    background 0.25s,
    color 0.25s;
}

.reg-acc-btn:not(.collapsed) .reg-acc-icon {
  background: var(--gndu-green);
  color: #fff;
}

/* Title */
.reg-acc-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.reg-acc-btn:not(.collapsed) .reg-acc-title {
  color: var(--gndu-green-dark);
}

/* Chevron */
.reg-acc-chevron {
  font-size: 17px;
  color: #9ca3af;
  transition:
    transform 0.32s var(--ease),
    color 0.2s;
  flex-shrink: 0;
}

.reg-acc-btn:not(.collapsed) .reg-acc-chevron {
  transform: rotate(180deg);
  color: var(--gndu-green);
}

/* Collapsible body */
.reg-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
  border-top: 0 solid transparent;
}

.reg-acc-body.show {
  max-height: 620px;
  border-top: 1px solid #e8f5f4;
}

/* iframe embed */
.reg-iframe-wrap {
  padding: 20px 22px 22px;
}

.reg-iframe-wrap iframe {
  width: 100%;
  height: 500px;
  border: 1.5px solid #e8f5f4;
  border-radius: 12px;
  display: block;
}

/* External link body */
.reg-link-body {
  padding: 20px 22px 22px;
}

.reg-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gndu-green);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 14px rgba(7, 166, 152, 0.25);
}

.reg-ext-link:hover {
  background: var(--gndu-green-dark);
  color: #fff;
  transform: translateX(4px);
}

/* ================================================================
   VICE CHANCELLOR PAGE
   ================================================================ */

/* Profile card */
.vc-page-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 52px;
  box-shadow: 0 6px 36px rgba(7, 166, 152, 0.08);
  position: relative;
  overflow: hidden;
}

/* Decorative corner arc */
.vc-page-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(7, 166, 152, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Photo */
.vc-page-photo {
  flex-shrink: 0;
}

.vc-page-photo img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  border: 3px solid var(--gndu-green-light);
  box-shadow: 0 12px 36px rgba(7, 166, 152, 0.14);
  display: block;
}

/* Info side */
.vc-page-info {
  flex: 1;
}

.vc-quote-icon {
  font-size: 72px;
  line-height: 1;
  color: var(--gndu-green);
  opacity: 0.12;
  font-family: "Playfair Display", serif;
  display: block;
  margin-bottom: -20px;
  user-select: none;
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gndu-green-light);
  border: 1px solid rgba(7, 166, 152, 0.25);
  color: var(--gndu-green);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.vc-page-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gndu-green-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.vc-designation {
  font-size: 14px;
  font-weight: 600;
  color: var(--gndu-green);
  margin-bottom: 20px;
  display: block;
}

.vc-page-quote {
  font-size: 15.5px;
  font-style: italic;
  color: #374151;
  line-height: 1.78;
  border-left: 4px solid var(--gndu-green);
  padding-left: 18px;
  margin: 0;
  background: linear-gradient(90deg, #f0faf9, transparent);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
}

/* Message text sections */
.vc-message-body {
  margin-bottom: 52px;
}

.vc-msg-section {
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 18px;
  padding: 30px 34px;
  margin-bottom: 20px;
  transition:
    box-shadow 0.28s,
    border-color 0.28s;
}

.vc-msg-section:hover {
  box-shadow: 0 8px 28px rgba(7, 166, 152, 0.08);
  border-color: rgba(7, 166, 152, 0.25);
}

.vc-msg-section p {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.88;
  margin-bottom: 16px;
}

.vc-msg-section p:last-child {
  margin-bottom: 0;
}

/* Stats row */
.vc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.vc-stat-box {
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 18px;
  padding: 26px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.vc-stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gndu-green), #07c4b4);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.vc-stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(7, 166, 152, 0.13);
}

.vc-stat-box:hover::after {
  transform: scaleX(1);
}

.vc-stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gndu-green-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.vc-stat-num sup {
  font-size: 1rem;
  font-weight: 700;
}

.vc-stat-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.45;
}

.vc-stat-lbl small {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

/* Achievements grid */
.vc-achievements-grid {
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 20px;
  padding: 32px 36px;
}

.vc-achievements-grid > h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.vc-achieve-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vc-achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fffe;
  border: 1.5px solid #e8f5f4;
  border-radius: 13px;
  padding: 15px 16px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
  transition:
    border-color 0.22s,
    background 0.22s,
    transform 0.22s;
}

.vc-achievement-item:hover {
  border-color: rgba(7, 166, 152, 0.3);
  background: #f0faf9;
  transform: translateX(4px);
}

.vc-achievement-item i {
  font-size: 16px;
  color: var(--gndu-green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE — all four pages
   ================================================================ */
@media (max-width: 991px) {
  .vc-page-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vc-page-photo img {
    width: 160px;
    height: 200px;
  }
  .vc-page-quote {
    text-align: left;
  }
  .vc-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc-achieve-items {
    grid-template-columns: 1fr;
  }
  .policy-intro-card {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .policy-section {
    flex-direction: column;
  }
  .policy-section-icon {
    width: 100%;
    height: 54px;
    align-items: center;
    padding-top: 0;
  }
  .terms-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .terms-icon {
    display: none;
  }
  .terms-text {
    grid-column: 1 / 3;
    grid-row: 2;
  }
  .vc-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc-achieve-items {
    grid-template-columns: 1fr;
  }
  .reg-acc-title {
    font-size: 14px;
  }
  .vc-page-card {
    padding: 28px 22px;
  }
  .policy-intro-card {
    padding: 24px 22px;
  }
  .vc-msg-section {
    padding: 22px 20px;
  }
  .vc-achievements-grid {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .vc-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .vc-stat-box {
    padding: 20px 12px;
  }
  .vc-stat-num {
    font-size: 1.7rem;
  }
  .policy-cta-box {
    padding: 24px 20px;
  }
  .reg-acc-btn {
    padding: 15px 16px;
    gap: 12px;
  }
  .reg-acc-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .reg-iframe-wrap iframe {
    height: 360px;
  }
  .terms-item {
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   WITHDRAWAL & REFUND POLICY PAGE
   ═══════════════════════════════════════════════════════════════════ */

.withdrawal-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  counter-reset: wstep-counter;
}

.wstep {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.24s;
}

.wstep:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 36px rgba(7, 166, 152, 0.11);
  border-color: rgba(7, 166, 152, 0.3);
}

/* Left colour strip with the icon */
.wstep-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 24px 0;
  background: linear-gradient(160deg, var(--gndu-green-light), #d4f5f2);
  transition: background 0.25s;
  min-width: 60px;
}

.wstep:hover .wstep-icon {
  background: linear-gradient(160deg, var(--gndu-green), #07c4b4);
}

.wstep:hover .wstep-icon i {
  color: #fff !important;
}

/* Text side */
.wstep-body {
  padding: 22px 26px;
  border-left: 1.5px solid #e8f5f4;
}

.wstep-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 7px;
  line-height: 1.35;
}

.wstep-body p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.76;
  margin: 0;
}

/* The "no refund" step — red icon stays red but strip turns red on hover */
.wstep:last-child .wstep-icon {
  background: linear-gradient(
    160deg,
    rgba(220, 38, 38, 0.08),
    rgba(220, 38, 38, 0.14)
  );
}

.wstep:last-child:hover .wstep-icon {
  background: linear-gradient(160deg, #dc2626, #b91c1c);
}

.wstep:last-child {
  border-color: rgba(220, 38, 38, 0.2);
}

.wstep:last-child:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 10px 36px rgba(220, 38, 38, 0.1);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .wstep {
    grid-template-columns: 52px 1fr;
  }
  .wstep-icon {
    font-size: 20px;
  }
  .wstep-body {
    padding: 18px 20px;
  }
  .wstep-body h5 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .wstep {
    grid-template-columns: 48px 1fr;
  }
  .wstep-icon {
    font-size: 18px;
  }
  .wstep-body {
    padding: 16px 16px;
  }
  .wstep-body p {
    font-size: 13.5px;
  }
}
/* Tablet — 768px and below */
@media (max-width: 768px) {
  section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
  section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
.abc-offcanvas {
  width: 440px !important;
  max-width: 100vw;
}

/* Header */
.abc-oc-header {
  background: linear-gradient(135deg, var(--gndu-green-dark), #1a5c56);
  padding: 20px 24px;
  border-bottom: none;
}

.abc-oc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.abc-oc-header .offcanvas-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.abc-oc-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Body */
.abc-oc-body {
  padding: 24px 24px 36px;
  background: #f8fffe;
  overflow-y: auto;
}

/* UGC badge */
.abc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gndu-green-light);
  color: var(--gndu-green);
  border: 1px solid rgba(7, 166, 152, 0.25);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Section titles */
.abc-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gndu-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.abc-section-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--gndu-green);
  border-radius: 3px;
}

/* Intro paragraph */
.abc-para {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Info highlight box */
.abc-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(7, 166, 152, 0.07);
  border: 1px solid rgba(7, 166, 152, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.abc-info-box i {
  color: var(--gndu-green);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.abc-info-box p {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

/* Steps */
.abc-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abc-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e8f5f4;
  border-radius: 14px;
  padding: 14px 16px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.abc-step:hover {
  border-color: rgba(7, 166, 152, 0.3);
  box-shadow: 0 4px 16px rgba(7, 166, 152, 0.08);
}

.abc-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--gndu-green);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.abc-step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.abc-step-body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
}

.abc-step-body span {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}

.abc-step-body a {
  color: var(--gndu-green);
  font-weight: 600;
  text-decoration: none;
}

.abc-step-body a:hover {
  text-decoration: underline;
}

/* Video embed */
.abc-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin-bottom: 24px;
}

.abc-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* CTA row */
.abc-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .abc-offcanvas {
    width: 100vw !important;
  }
  .abc-cta {
    flex-direction: column;
  }
  .abc-cta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
