:root {
  --ghima-primary: #cc0000;
  --ghima-primary-dark: #7a0610;
  --ghima-accent: #f15a3b;
  --ghima-green: #0b7a55;
  --ghima-green-light: #2fbf71;
  --ghima-green-soft: #eaf9ef;
  --ghima-gold: #f8c84e;
  --ghima-plum: #7f1235;
  --ghima-ink: #17312a;
  --ghima-muted: #61756f;
  --ghima-line: rgba(11, 122, 85, 0.18);
  --ghima-shadow: 0 18px 45px rgba(11, 122, 85, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ghima-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(47, 191, 113, 0.2), transparent 28rem),
    radial-gradient(circle at top right, rgba(248, 200, 78, 0.18), transparent 30rem),
    linear-gradient(180deg, #fbfffc 0%, #effaf2 42%, #ffffff 100%);
}

a {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.card {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--ghima-shadow);
}

.top-navbar {
  border-bottom: 0;
  background: linear-gradient(120deg, #0b7a55 0%, #2fbf71 48%, #f8c84e 78%, #cc0000 100%) !important;
  box-shadow: 0 8px 28px rgba(11, 122, 85, 0.22);
}

.top-navbar a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
}

.top-navbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 4px;
  color: #ffffff !important;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.top-navbar .social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid var(--ghima-line);
  box-shadow: 0 12px 32px rgba(11, 122, 85, 0.1);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ghima-primary-dark) !important;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-brand img {
  height: 48px !important;
  padding: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(11, 122, 85, 0.16);
}

.navbar-nav {
  align-items: center;
  gap: 0.18rem;
}

.nav-link,
.navbar-nav .dropdown-toggle {
  position: relative;
  color: var(--ghima-primary-dark) !important;
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 0.95rem !important;
}

.nav-link.active,
.nav-link:hover,
.navbar-nav .dropdown-toggle.active,
.navbar-nav .dropdown-toggle:hover {
  color: var(--ghima-green) !important;
  background: transparent !important;
  box-shadow: none;
}

.nav-link.active::after,
.navbar-nav .dropdown-toggle.active::after {
  position: absolute;
  right: 0.95rem;
  bottom: 0.28rem;
  left: 0.95rem;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--ghima-primary);
}

.dropdown-menu {
  overflow: hidden;
  padding: 0.45rem;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(23, 49, 42, 0.16);
}

.dropdown-toggle:focus {
  box-shadow: none !important;
}

.dropdown-item {
  color: var(--ghima-primary-dark) !important;
  font-weight: 650;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
}

.dropdown-item.active,
.dropdown-item:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
}

.typewriter {
  min-height: 34px;
  margin: 18px 0 8px;
  color: var(--ghima-primary-dark);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}

.blog-title-marquee {
  overflow: hidden;
  min-height: 42px;
  margin: 18px 0 8px;
  border: 1px solid rgba(11, 122, 85, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.blog-title-marquee-track {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  min-width: max-content;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  animation: blog-title-marquee 28s linear infinite;
  will-change: transform;
}

.blog-title-marquee:hover .blog-title-marquee-track {
  animation-play-state: paused;
}

.blog-title-marquee a {
  color: var(--ghima-green);
  font-weight: 800;
  text-decoration: none;
}

.blog-title-marquee a:hover {
  color: var(--ghima-primary);
  text-decoration: underline;
}

.blog-title-marquee span {
  color: var(--ghima-gold);
  font-weight: 900;
}

@keyframes blog-title-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.carousel-container {
  width: min(1180px, calc(100% - 32px));
  margin: 1.2rem auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--ghima-shadow);
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-gold));
}

.carousel-inner {
  border-radius: 8px;
}

.carousel-item {
  position: relative;
}

.carousel-item::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 122, 85, 0.64), rgba(47, 191, 113, 0.2) 48%, rgba(204, 0, 0, 0.16) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(11, 122, 85, 0.18));
}

.carousel-item img {
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-gold));
}

.carousel-caption {
  right: auto;
  top: 50%;
  bottom: auto;
  left: 6%;
  z-index: 2;
  max-width: 560px;
  padding: 1rem 1.1rem;
  text-align: left;
  transform: translateY(-50%);
  border-left: 5px solid var(--ghima-gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(11, 122, 85, 0.82), rgba(204, 0, 0, 0.54));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.carousel-caption h1 {
  margin-bottom: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 3.8vw, 3.2rem);
  font-weight: 850;
  line-height: 1.08;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.carousel-caption p {
  max-width: 540px;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.34rem 0.7rem;
  color: #17312a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f7d869, #ffffff);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-link,
.btn-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.9rem;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none !important;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  box-shadow: 0 14px 30px rgba(11, 122, 85, 0.26);
}

.hero-link.secondary {
  color: var(--ghima-green) !important;
  background: linear-gradient(135deg, #ffffff, #ecfff2);
}

.hero-link:hover,
.btn-utility:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 122, 85, 0.3);
}

.carousel-indicators li {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
}

.horizontal-line {
  height: 6px;
  margin: 36px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-gold), var(--ghima-accent), var(--ghima-primary));
  box-shadow: 0 10px 22px rgba(11, 122, 85, 0.14);
}

.home-highlights {
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.6rem;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.75rem;
  color: var(--ghima-primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff3e0, #eaf9ef);
  border-radius: 999px;
}

.highlight-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 249, 239, 0.92)),
    radial-gradient(circle at top right, rgba(248, 200, 78, 0.18), transparent 14rem);
  box-shadow: 0 16px 38px rgba(11, 122, 85, 0.1);
}

.highlight-card.featured {
  border-color: rgba(204, 0, 0, 0.18);
  background:
    linear-gradient(145deg, #ffffff, #fff5e7),
    radial-gradient(circle at top right, rgba(204, 0, 0, 0.12), transparent 14rem);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  box-shadow: 0 12px 24px rgba(11, 122, 85, 0.22);
}

.highlight-card h3 {
  color: var(--ghima-primary-dark);
  font-size: 1.12rem;
  font-weight: 850;
}

.highlight-card p {
  color: #405951;
  font-size: 0.95rem;
}

.highlight-card a {
  color: var(--ghima-primary);
  font-weight: 850;
  text-decoration: none;
}

.highlight-card a:hover {
  color: var(--ghima-green);
}

.column-image {
  padding: 1.2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 249, 239, 0.98));
  box-shadow: var(--ghima-shadow);
}

.president-section:not(.message-open) {
  align-items: stretch;
}

.president-section:not(.message-open) .column-image,
.president-section:not(.message-open) .column-text > div {
  height: 100%;
}

.president-section:not(.message-open) .column-text {
  align-items: stretch;
}

.president-section:not(.message-open) .column-text > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.president-section.message-open .column-image {
  align-self: flex-start;
}

.btn.btn-utility,
button.btn-utility,
a.hero-link {
  min-height: 34px;
  padding: 0.42rem 0.82rem;
  font-size: 0.86rem;
}

.column-image img {
  width: min(360px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(11, 122, 85, 0.18);
}

.column-image h5 {
  margin-top: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--ghima-primary-dark);
  font-weight: 850;
}

.column-image p {
  color: var(--ghima-primary);
  font-weight: 800;
}

.column-text {
  display: flex;
  align-items: center;
}

.column-text > div {
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--ghima-green-light);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 242, 0.88));
  box-shadow: 0 14px 35px rgba(11, 122, 85, 0.09);
}

h2 {
  color: var(--ghima-primary-dark);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 850;
}

.column-text p {
  color: #344c45;
}

.column-text h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.15;
}

.page-hero {
  padding: 1.8rem 0 1.55rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 122, 85, 0.94), rgba(47, 191, 113, 0.78), rgba(204, 0, 0, 0.78)),
    radial-gradient(circle at top right, rgba(248, 200, 78, 0.34), transparent 28rem);
}

.page-hero h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 3.3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.16;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.58;
}

.breadcrumb-nav {
  padding: 0.8rem 0;
  background: #f4fbf6;
  border-bottom: 1px solid rgba(11, 122, 85, 0.1);
}

.breadcrumb-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  color: #49655c;
  font-size: 0.84rem;
  font-weight: 650;
}

.breadcrumb-nav a {
  color: var(--ghima-green);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: var(--ghima-primary);
}

.listing-tools {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(11, 122, 85, 0.08);
}

.listing-search {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(11, 122, 85, 0.2);
  border-radius: 8px;
  color: #17312a;
}

.listing-filter {
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(11, 122, 85, 0.2);
  border-radius: 8px;
  color: #17312a;
  background: #ffffff;
}

.listing-empty {
  display: none;
  width: 100%;
  padding: 1rem;
  color: #49655c;
  text-align: center;
  font-weight: 700;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 122, 85, 0.12);
}

.share-actions span {
  color: var(--ghima-primary-dark);
  font-weight: 850;
}

.share-button {
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  font-size: 0.84rem;
  font-weight: 800;
}

.share-button.is-copied {
  background: linear-gradient(135deg, #0b7a55, #2fbf71);
}

.blog-detail .share-actions span,
.blog-detail .share-button,
.blog-detail .page-link-cta {
  color: var(--ghima-green) !important;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
}

.blog-detail .share-actions > span {
  display: none;
}

.blog-detail .share-button,
.blog-detail .page-link-cta {
  padding-right: 0;
  padding-left: 0;
  border: 0;
  border-radius: 0;
}

.blog-detail .share-button:hover,
.blog-detail .page-link-cta:hover,
.blog-detail .share-button.is-copied {
  color: var(--ghima-primary) !important;
  background: linear-gradient(135deg, var(--ghima-primary), var(--ghima-gold), var(--ghima-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card .page-link-cta {
  padding-right: 0;
  padding-left: 0;
  color: var(--ghima-green) !important;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
}

.blog-card .page-link-cta:hover {
  color: var(--ghima-primary) !important;
  background: linear-gradient(135deg, var(--ghima-primary), var(--ghima-gold), var(--ghima-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body:has(.blog-detail) .page-hero h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

body:has(.blog-detail) .page-hero p {
  display: none;
}

body:has(.blog-detail) .page-hero + main {
  margin-top: 0.8rem;
  padding-top: 1.2rem;
}

.resource-mobile-list {
  display: none;
}

.resource-card {
  padding: 1rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 122, 85, 0.08);
}

.resource-card + .resource-card {
  margin-top: 0.8rem;
}

.resource-card strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ghima-primary-dark);
}

.resource-number {
  display: block;
  margin-bottom: 0.35rem;
  color: #60736c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-primary));
  box-shadow: 0 12px 30px rgba(11, 122, 85, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.content-band {
  padding: 1.75rem 0 3rem;
}

.page-hero + .container,
.page-hero + section,
.page-hero + main {
  margin-top: 0.75rem;
}

.page-hero + .page-main-about {
  margin-top: 0;
  padding-top: 1rem;
}

.page-hero + .page-main-history {
  margin-top: 0;
  padding-top: 1rem;
}

.page-content-about > .container.mt-5 {
  margin-top: 0 !important;
}

.page-content-history > .container.mt-5 {
  margin-top: 0 !important;
}

.page-hero + .container h2,
.page-hero + .container h3 {
  color: var(--ghima-primary-dark);
  font-weight: 850;
}

.blog-card,
.event-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefaf2);
  box-shadow: var(--ghima-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover,
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.16);
  box-shadow: 0 20px 44px rgba(11, 122, 85, 0.16);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #e9f4ed;
}

.blog-card-body,
.event-card {
  padding: 1.25rem;
}

.blog-meta,
.event-date {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.62rem;
  color: var(--ghima-primary);
  font-size: 0.76rem;
  font-weight: 850;
  background: linear-gradient(135deg, #fff3df, #eaf9ef);
  border-radius: 999px;
}

.blog-card h2,
.event-card h2 {
  color: var(--ghima-primary-dark);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.28;
}

.blog-card p,
.event-card p {
  color: #405951;
}

.event-card {
  position: relative;
  border-left: 5px solid var(--ghima-green-light);
}

.event-info-list {
  display: grid;
  gap: 0.42rem;
  margin: 0.8rem 0 1rem;
  color: #405951;
  font-size: 0.88rem;
}

.event-info-list span {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.event-info-list i {
  width: 16px;
  color: var(--ghima-green);
}

.event-card.featured {
  border-left-color: var(--ghima-primary);
  background: linear-gradient(145deg, #ffffff, #fff4e7);
}

.latest-updates {
  padding-top: 2.5rem;
  padding-bottom: 2.4rem;
  background: linear-gradient(135deg, rgba(234, 249, 239, 0.92), rgba(255, 249, 229, 0.74));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.section-heading h2 {
  color: var(--ghima-primary-dark);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 850;
  line-height: 1.18;
}

.update-card {
  height: 100%;
  padding: 1.3rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 251, 244, 0.96));
  box-shadow: 0 14px 34px rgba(11, 122, 85, 0.1);
}

.update-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 8px;
  background: #e9f4ed;
}

.update-card-accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 232, 0.96));
}

.update-card h3 {
  margin: 0.75rem 0 0.55rem;
  color: var(--ghima-primary-dark);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.28;
}

.update-card p {
  color: #405951;
  font-size: 0.94rem;
}

.page-link-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  box-shadow: 0 10px 22px rgba(11, 122, 85, 0.14);
}

.page-link-cta:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.latest-updates .page-link-cta {
  padding-right: 0;
  padding-left: 0;
  color: var(--ghima-green) !important;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
}

.latest-updates .page-link-cta:hover {
  color: var(--ghima-primary) !important;
  background: linear-gradient(135deg, var(--ghima-primary), var(--ghima-gold), var(--ghima-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.blog-pagination a {
  min-width: 38px;
  padding: 0.45rem 0.75rem;
  color: var(--ghima-primary-dark);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eaf9ef);
  box-shadow: 0 10px 24px rgba(11, 122, 85, 0.1);
}

.blog-pagination a.active,
.blog-pagination a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
}

.blog-detail {
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ghima-shadow);
}

.blog-detail-body {
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff, #f3fbf5),
    radial-gradient(circle at top right, rgba(248, 200, 78, 0.16), transparent 18rem);
  box-shadow: var(--ghima-shadow);
}

.blog-detail-body h2 {
  margin-top: 1.4rem;
  color: var(--ghima-primary-dark);
  font-size: 1.35rem;
  font-weight: 850;
}

.blog-detail-body p {
  color: #344c45;
  font-size: 1rem;
  line-height: 1.78;
}

.resource-section,
.page-hero + .container.resource-section,
.container.mt-3,
.container.mt-4,
.container.mt-5 {
  max-width: 1140px;
}

.resource-section {
  padding: 1.5rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefaf2);
  box-shadow: var(--ghima-shadow);
}

.resource-table {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.resource-table thead th {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-primary));
  border-color: transparent;
}

.resource-table a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
}

.contact-item {
  height: 100%;
  padding: 1.1rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefaf2);
  box-shadow: 0 12px 30px rgba(11, 122, 85, 0.09);
}

.contact-icon {
  color: var(--ghima-primary);
}

.contact-content h4 {
  color: var(--ghima-primary-dark);
  font-size: 1rem;
  font-weight: 850;
}

.contact-page {
  background:
    linear-gradient(180deg, #f5fff8 0%, #ffffff 46%, #eefaf2 100%),
    radial-gradient(circle at top right, rgba(248, 200, 78, 0.22), transparent 28rem);
}

.contact-intro {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.75rem;
  color: var(--ghima-primary-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47, 191, 113, 0.18), rgba(248, 200, 78, 0.34));
}

.contact-intro h2 {
  color: var(--ghima-primary-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 850;
}

.contact-intro p {
  color: #405951;
  font-size: 1.02rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-panel,
.contact-map-card {
  height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ghima-shadow);
}

.contact-panel h3,
.contact-map-card h3 {
  color: var(--ghima-primary-dark);
  font-size: 1.45rem;
  font-weight: 850;
}

.contact-panel-copy {
  margin-bottom: 1.3rem;
  color: #405951;
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
}

.contact-method-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 82px;
  padding: 0.9rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f3fbf5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-method-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(204, 0, 0, 0.2);
  box-shadow: 0 16px 34px rgba(11, 122, 85, 0.12);
}

.contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-green-light), var(--ghima-primary));
}

.contact-method-card strong {
  display: block;
  color: var(--ghima-primary-dark);
  font-weight: 850;
}

.contact-method-card small {
  display: block;
  color: #405951;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-map-frame {
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  background: #e9f4ed;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.contact-response-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-response-card {
  padding: 1.1rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefaf2);
  box-shadow: 0 12px 30px rgba(11, 122, 85, 0.09);
}

.contact-response-card i {
  color: var(--ghima-primary);
  font-size: 1.35rem;
}

.contact-response-card h4 {
  margin: 0.65rem 0 0.35rem;
  color: var(--ghima-primary-dark);
  font-size: 1rem;
  font-weight: 850;
}

.contact-response-card p {
  margin: 0;
  color: #405951;
  font-size: 0.92rem;
}

.gallery-item {
  margin-bottom: 1.4rem;
}

.loading-spinner {
  display: none;
  margin: 20px auto;
}

.gallery-item img,
.gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 5px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(11, 122, 85, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img:hover,
.gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(11, 122, 85, 0.18);
}

.logo-carousel {
  margin: 48px auto;
  padding: 1.6rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eaf9ef);
  box-shadow: var(--ghima-shadow);
}

.logo-carousel h4 {
  color: var(--ghima-primary-dark) !important;
  font-weight: 850;
}

.logo-carousel .d-flex {
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-carousel {
  padding: 0 3rem 2rem;
}

.partner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 170px;
  padding: 1rem;
  text-align: center;
}

.logo-carousel img {
  width: 150px;
  height: 82px;
  max-height: 82px;
  padding: 0.75rem;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(11, 122, 85, 0.1);
}

.partner-slide img {
  width: min(220px, 70vw);
  height: 110px;
  max-height: 110px;
}

.partner-slide h5 {
  margin: 0.9rem 0 0;
  color: var(--ghima-primary-dark);
  font-size: 1rem;
  font-weight: 850;
}

.partner-carousel .carousel-control-prev,
.partner-carousel .carousel-control-next {
  width: 42px;
  opacity: 1;
}

.partner-carousel .carousel-control-prev-icon,
.partner-carousel .carousel-control-next-icon {
  width: 34px;
  height: 34px;
  padding: 1rem;
  border-radius: 50%;
  background-color: var(--ghima-green);
  background-size: 55%;
}

.partner-indicators {
  bottom: -8px;
}

.partner-indicators li {
  background-color: rgba(11, 122, 85, 0.35);
}

.partner-indicators .active {
  background-color: var(--ghima-primary);
}

.btn-utility {
  animation: none;
}

.btn-utility:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(11, 122, 85, 0.24);
}

.footer {
  padding: 34px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--ghima-green), #12613f, var(--ghima-primary-dark));
}

.footer .footer-col {
  margin-bottom: 18px;
}

.footer .footer-col h4 {
  color: #ffffff;
  font-weight: 850;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p,
.footer-contact li {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-contact i {
  width: 18px;
  margin-top: 0.18rem;
  color: #f8d86a;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  color: var(--ghima-primary-dark);
  text-decoration: none;
  background: #f8d86a;
}

.footer .footer-col ul {
  padding: 0;
  list-style: none;
}

.footer .footer-col ul li {
  margin-bottom: 7px;
}

.footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer .footer-col ul li a:hover {
  color: #f7d869;
}

.copyright-footer {
  padding: 12px;
  color: #17312a;
  text-align: center;
  background: linear-gradient(90deg, #2fbf71, #f8c84e, #cc0000);
}

.copyright-footer p {
  margin: 0;
}

.team-member {
  margin-bottom: 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(11, 122, 85, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefaf2);
  box-shadow: 0 14px 34px rgba(11, 122, 85, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(11, 122, 85, 0.16);
}

.team-member a {
  display: block;
}

.team-member img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: top center;
  border: 5px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 122, 85, 0.12);
  cursor: pointer;
}

.team-member h4 {
  margin: 0.9rem 0 0.35rem;
  color: var(--ghima-primary-dark);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.team-member p {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  color: var(--ghima-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.35;
}

.table-bordered {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--ghima-shadow);
}

.table-bordered thead th,
.table-bordered tr:first-child th {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ghima-green), var(--ghima-primary));
}

@media (max-width: 991px) {
  .navbar-nav {
    align-items: stretch;
    padding-top: 0.8rem;
  }

  .nav-link,
  .navbar-nav .dropdown-toggle {
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .top-navbar .row {
    gap: 0.45rem;
  }

  .carousel-container {
    width: calc(100% - 20px);
  }

  .carousel-caption {
    right: 6%;
    left: 6%;
    width: auto;
    max-width: none;
    padding: 0.8rem;
  }

  .carousel-caption h1 {
    font-size: 1.55rem;
  }

  .carousel-caption p {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
  }

  .column-text {
    margin-top: 1rem;
  }

  .logo-carousel img {
    width: 130px;
  }

  .partner-carousel {
    padding: 0 2.2rem 1.8rem;
  }

  .partner-slide {
    min-height: 150px;
  }

  .partner-slide img {
    width: min(190px, 72vw);
    height: 92px;
  }
}

@media only screen and (max-width: 576px) {
  .notitle {
    font-size: 25px;
  }

  .navbar {
    padding: 0.65rem 0.9rem;
  }

  .hero-actions {
    display: flex;
    gap: 0.45rem;
  }

  .hero-link {
    min-height: 38px;
    padding: 0.5rem 0.68rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 991px) {
  .contact-response-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .top-navbar {
    font-size: 0.82rem;
  }

  .navbar {
    padding: 0.55rem 0.9rem;
  }

  .navbar-brand {
    font-size: 1.05rem;
  }

  .navbar-brand img {
    height: 42px !important;
  }

  .nav-link,
  .navbar-nav .dropdown-toggle,
  .dropdown-item {
    font-size: 0.86rem;
    padding: 0.48rem 0.68rem;
  }

  .carousel-item img {
    height: clamp(220px, 42vw, 340px);
  }

  .carousel-caption h1 {
    font-size: clamp(1.45rem, 4.8vw, 2.25rem);
    line-height: 1.1;
  }

  .carousel-caption p {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .hero-badge,
  .blog-meta,
  .event-date,
  .section-kicker {
    font-size: 0.68rem;
  }

  h2,
  .contact-intro h2,
  .page-hero + .container h2,
  .page-hero + .container h3 {
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .column-text h2,
  .blog-detail-body h2 {
    font-size: 1.18rem;
  }

  .page-hero {
    padding: 1.5rem 0 1.3rem;
  }

  .page-hero h1 {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .page-hero p {
    max-width: 620px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .content-band {
    padding: 1.35rem 0 2.1rem;
  }

  .listing-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-card img {
    height: 190px;
  }

  .blog-card-body,
  .event-card,
  .blog-detail-body,
  .contact-panel,
  .contact-map-card,
  .contact-response-card,
  .team-member {
    padding: 1rem;
  }

  .blog-card h2,
  .event-card h2 {
    font-size: 1.02rem;
  }

  .blog-card p,
  .event-card p,
  .blog-detail-body p,
  .contact-intro p,
  .contact-panel-copy,
  .contact-response-card p {
    font-size: 0.9rem;
  }

  .team-member img {
    height: 220px;
  }

  .team-member h4 {
    font-size: 0.88rem;
  }

  .team-member p {
    font-size: 0.74rem;
  }

  .contact-panel h3,
  .contact-map-card h3 {
    font-size: 1.2rem;
  }

  .contact-method-card {
    min-height: 74px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }

  .resource-table,
  .table {
    font-size: 0.86rem;
  }

  .resource-section {
    width: calc(100% - 30px);
    padding: 1rem;
  }

  .resource-table-wrap {
    display: none;
  }

  .resource-mobile-list {
    display: block;
  }

  .page-link-cta,
  .btn.btn-utility,
  button.btn-utility,
  a.hero-link {
    min-height: 32px;
    padding: 0.36rem 0.7rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }

  .top-navbar {
    font-size: 0.76rem;
  }

  .top-navbar .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .navbar-brand {
    font-size: 0.98rem;
  }

  .navbar-brand img {
    height: 38px !important;
  }

  .carousel-container {
    border-radius: 8px;
  }

  .carousel-item img {
    height: 260px;
  }

  .carousel-caption {
    top: 50%;
    padding: 0.7rem;
  }

  .carousel-caption h1 {
    font-size: 1.32rem;
  }

  .carousel-caption p {
    font-size: 0.78rem;
  }

  .hero-badge {
    padding: 0.26rem 0.55rem;
  }

  .hero-actions {
    gap: 0.35rem;
  }

  .page-hero {
    padding: 1.2rem 0 1.05rem;
  }

  .page-hero h1 {
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .page-hero p {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  h2,
  .contact-intro h2,
  .page-hero + .container h2,
  .page-hero + .container h3,
  .notitle,
  .gtitle {
    font-size: 1.25rem !important;
    line-height: 1.2;
  }

  .content-band {
    padding: 1rem 0 1.65rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }

  .blog-card img {
    height: 170px;
  }

  .blog-detail img {
    height: 210px;
  }

  .blog-card h2,
  .event-card h2,
  .blog-detail-body h2 {
    font-size: 1rem;
  }

  .blog-card p,
  .event-card p,
  .blog-detail-body p,
  .contact-intro p,
  .contact-method-card small,
  .contact-response-card p {
    font-size: 0.84rem;
  }

  .team-member img {
    height: 205px;
  }

  .team-member h4 {
    font-size: 0.82rem;
  }

  .contact-method-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 260px;
  }

  .gallery-item img,
  .gallery img {
    height: 170px;
  }

  .footer {
    padding: 26px 0 18px;
    font-size: 0.86rem;
  }

  .partner-carousel {
    padding: 0 1.85rem 1.7rem;
  }

  .partner-slide h5 {
    font-size: 0.88rem;
  }

  .partner-carousel .carousel-control-prev,
  .partner-carousel .carousel-control-next {
    width: 30px;
  }

  .partner-carousel .carousel-control-prev-icon,
  .partner-carousel .carousel-control-next-icon {
    width: 28px;
    height: 28px;
  }
}
