/* ========================================
   Theme Variables
======================================== */
:root {
  --primary-color: #28cd9b;
  --secondary-color: #edf3ed;
  --accent-color: #ffc107;
  --heading-color: #113b2f;
  --text-color: #445057;
  --white-color: #ffffff;
  --light-bg: #f6faf7;
  --soft-bg: #eef6ef;
  --border-color: rgba(11, 110, 79, 0.12);
  --shadow-lg: 0 25px 70px rgba(7, 63, 45, 0.14);
  --shadow-md: 0 15px 40px rgba(9, 66, 48, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s ease;
}

/* ========================================
   Base Styles
======================================== */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background: var(--white-color);
  line-height: 1.7;
  overflow-x: clip;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

.section-padding {
  padding: 110px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 18px 0 16px;
  color: var(--heading-color);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  margin-bottom: 0;
  font-size: 1rem;
  color: #62737b;
}

.bg-soft {
  background: linear-gradient(180deg, rgba(246, 250, 247, 0.95), rgba(238, 246, 239, 0.95));
}

.text-highlight {
  color: var(--accent-color);
}

.title-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.title-stack .subtitle-bn {
  color: var(--primary-color);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.meta-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ========================================
   Buttons
======================================== */
.theme-btn,
.theme-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.theme-btn {
  color: var(--heading-color);
  background: linear-gradient(135deg, var(--accent-color), #ffd24d);
  box-shadow: 0 16px 30px rgba(255, 193, 7, 0.28);
}

.theme-btn:hover {
  transform: translateY(-4px);
  color: var(--heading-color);
}

.theme-btn-outline {
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.theme-btn-outline:hover {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.btn-sm-custom {
  padding: 11px 22px;
  font-size: 0.92rem;
}

/* ========================================
   Topbar
======================================== */
.topbar-wrap {
  background: linear-gradient(90deg, var(--heading-color), var(--primary-color));
  color: var(--white-color);
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 20px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.topbar-item i {
  color: var(--accent-color);
}

.topbar-item a:hover {
  color: var(--accent-color);
}

/* ========================================
   Header
======================================== */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(17, 59, 47, 0.06);
  padding: 14px 0;
  transition: var(--transition);
}

.site-navbar.is-scrolled {
  padding: 12px 0;
  box-shadow: 0 18px 32px rgba(17, 59, 47, 0.12);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  flex-shrink: 1;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(17, 59, 47, 0.12);
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.site-brand:hover .brand-mark img {
  transform: scale(1.06);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
  gap: 3px;
}

.brand-copy strong {
  color: var(--heading-color);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}

.custom-toggler {
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
  color: var(--heading-color);
}

.navbar-nav .nav-link {
  padding: 10px 11px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-color);
}

.navbar-nav .nav-link.membersupport-nav {
 
  background: var(--accent-color);
 

}

.navbar-nav .nav-link.membersupport-nav:hover,
.navbar-nav .nav-link.membersupport-nav.active {
  color: var(--white-color);
  background: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(40, 205, 155, 0.45);
}

.navbar-nav .nav-link.membersupport-nav::after {
  display: none;
}

@media (min-width: 1200px) {
  .navbar-nav {
    flex-wrap: nowrap;
    column-gap: 2px;
  }

  .navbar-nav .nav-link {
    padding: 10px 9px;
    font-size: 0.9rem;
  }

  .navbar-collapse {
    justify-content: flex-end;
  }
}

/* Dropdown menu styling to match theme */
.navbar-nav .dropdown-menu {
  border: 1px solid rgba(17, 59, 47, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 190px;
  margin-top: 10px;
}

.navbar-nav .dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--heading-color);
  transition: var(--transition);
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: rgba(40, 205, 155, 0.1);
  color: var(--primary-color);
  padding-left: 20px;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
  padding: 0 0 80px;
  background: radial-gradient(circle at top left, rgba(76, 175, 80, 0.22), transparent 32%), linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.hero-swiper {
  border-radius: 0 0 34px 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-slide {
  position: relative;
  min-height: 85vh;
}

.hero-slide-image {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 35, 25, 0.86), rgba(4, 35, 25, 0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-content-wrap {
  max-width: 760px;
  color: var(--white-color);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 20px 0 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-slider-controls .swiper-button-next,
.hero-slider-controls .swiper-button-prev {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.16);
}

.hero-slider-controls .swiper-button-next::after,
.hero-slider-controls .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.hero-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-pagination {
  bottom: 18px !important;
  z-index: 1 !important;
  pointer-events: none;
}

.hero-pagination .swiper-pagination-bullet {
  pointer-events: auto;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* ========================================
   Notice and Intro
======================================== */
.notice-strip {
  margin-top: -40px;
  z-index: 2;
}

.notice-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--white-color);
  box-shadow: var(--shadow-md);
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.14);
  color: #946b00;
  font-weight: 600;
}

.notice-ticker {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 28px;
  white-space: nowrap;
}

.notice-track {
  position: absolute;
  top: 0;
  left: 100%;
  display: inline-block;
  animation: marquee 22s linear infinite;
  color: var(--heading-color);
  font-weight: 500;
  will-change: transform;
}





@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 100vw));
  }
}

.glass-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 247, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
}

.intro-visual {
  position: relative;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  right: -20px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--white-color);
  box-shadow: var(--shadow-lg);
}

.floating-stat strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1;
}

/* ========================================
   Content Cards
======================================== */
.info-card,
.feature-card,
.scheme-card,
.loan-card,
.service-card,
.testimonial-card,
.download-card,
.contact-card,
.map-card {
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.info-card:hover,
.feature-card:hover,
.scheme-card:hover,
.loan-card:hover,
.service-card:hover,
.testimonial-card:hover,
.download-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 45px rgba(9, 66, 48, 0.16);
}

/* ========================================
   Leadership Block
======================================== */
.leadership-block {
  border: 1px solid var(--border-color);
  background: var(--white-color);
  max-width: 980px;
  margin: 0 auto;
}

.leadership-header {
  height: 48px;
  background: var(--heading-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-family: Arial, Roboto, "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.leadership-body {
  display: flex;
  gap: 32px;
  padding: 28px;
  align-items: flex-start;
}

.leadership-image-col {
  flex: 0 0 235px;
  max-width: 235px;
}

.leadership-image-wrap {
  position: relative;
  width: 235px;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.leadership-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--heading-color);
  color: var(--white-color);
  text-align: center;
  padding: 10px 12px;
  font-family: Arial, Roboto, "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.leadership-content-col {
  flex: 1 1 auto;
  min-width: 0;
}

.leadership-content-col p {
  color: #4a4f54;
  font-family: Arial, Roboto, "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 14px;
}

.leadership-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-family: Arial, Roboto, "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 6px;
}

.leadership-read-more:hover {
  color: #0d2b22;
  gap: 12px;
}

@media (max-width: 767.98px) {
  .leadership-body {
    flex-direction: column;
    gap: 22px;
    padding: 22px;
  }

  .leadership-image-col {
    flex: 0 0 auto;
    max-width: 100%;
    align-self: center;
  }

  .leadership-image-wrap {
    width: 180px;
    height: 220px;
  }

  .leadership-content-col p {
    font-size: 15px;
    text-align: left;
  }

  .leadership-header {
    font-size: 16px;
    padding: 0 16px;
  }
}

/* ========================================
   Leadership Cards (deprecated)
======================================== */
.leadership-card {
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 45px rgba(9, 66, 48, 0.16);
}

.leadership-avatar-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid var(--white-color);
  box-shadow: 0 8px 24px rgba(11, 110, 79, 0.18);
  background: var(--soft-bg);
}

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

.leadership-card h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.leadership-position {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(40, 205, 155, 0.12);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.leadership-intro {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.leadership-responsibilities {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.leadership-responsibilities li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.5;
}

.leadership-responsibilities li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.leadership-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.leadership-card .card-link:hover {
  color: var(--heading-color);
  gap: 12px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.12), rgba(255, 193, 7, 0.14));
  color: var(--primary-color);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.feature-card h4,
.scheme-card h4,
.loan-card h4,
.service-card h4,
.download-card h4,
.contact-card h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-list i {
  margin-top: 6px;
  color: var(--primary-color);
}

.rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.14);
  color: #8b6700;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.card-link:hover {
  gap: 14px;
  color: var(--heading-color);
}

/* ========================================
   Special Home Sections
======================================== */
.message-card {
  position: relative;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.98), rgba(9, 86, 62, 0.96));
  color: var(--white-color);
  box-shadow: var(--shadow-lg);
}

.message-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.16);
}

.message-card .quote-icon {
  font-size: 2rem;
  color: rgba(255, 193, 7, 0.85);
}

.message-card h3 {
  margin-top: 18px;
  color: var(--white-color);
}

.stats-section {
  background: linear-gradient(135deg, rgba(6, 42, 30, 0.98), rgba(11, 110, 79, 0.96));
  color: var(--white-color);
}

.stat-card {
  padding: 30px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.counter-value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.testimonial-card p {
  font-size: 0.98rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-user span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(11, 110, 79, 0.12);
  color: var(--primary-color);
  font-weight: 700;
}

.download-card {
  background: linear-gradient(180deg, #ffffff, #f8fbf9);
}

.newsletter-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 193, 7, 0.16), rgba(76, 175, 80, 0.12));
  border: 1px solid rgba(11, 110, 79, 0.08);
}

.newsletter-form .form-control {
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  padding: 0 20px;
}

.newsletter-form .theme-btn {
  width: 100%;
  border: none;
}

/* ========================================
   FAQ
======================================== */
.accordion-item {
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-weight: 600;
  color: var(--heading-color);
  background: var(--white-color);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(76, 175, 80, 0.08);
}

/* ========================================
   Gallery
======================================== */
.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-copy {
  padding: 22px 24px;
}

.gallery-copy h5 {
  margin-bottom: 8px;
  color: var(--heading-color);
}

.video-card {
  overflow: hidden;
}

.video-frame {
  background: var(--heading-color);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-sample-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(40, 205, 155, 0.12);
  color: var(--primary-color);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.video-card .gallery-copy {
  padding-top: 18px;
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 22, 16, 0.92);
}

.custom-lightbox.show {
  display: flex;
  flex-direction: column;
}

.custom-lightbox img {
  max-width: min(920px, 100%);
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.custom-lightbox p {
  margin: 18px 0 0;
  color: var(--white-color);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
}

/* ========================================
   Page Banner
======================================== */
.page-banner {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(76, 175, 80, 0.24), transparent 24%),
    linear-gradient(120deg, rgba(4, 35, 25, 0.94), rgba(11, 110, 79, 0.86));
  color: var(--white-color);
}

.page-banner-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-banner .breadcrumb-text {
  color: rgba(255, 255, 255, 0.84);
}

/* ========================================
   Tables and Forms
======================================== */
.license-table-wrap {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.license-table thead th {
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.license-table td,
.license-table th {
  padding: 18px 16px;
  vertical-align: middle;
}

.staff-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.staff-avatar {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: var(--white-color);
  border: 1px solid rgba(17, 59, 47, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member-select-card .form-label {
  color: var(--heading-color);
  font-size: 1rem;
  margin-bottom: 14px;
}

.member-support-select,
.contact-form-card .form-control,
.contact-form-card .form-select {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  padding: 14px 18px;
}

.member-support-select {
  width: 100%;
  color: var(--text-color);
  font-size: 0.98rem;
  font-weight: 500;
  background-color: var(--white-color);
  cursor: pointer;
  transition: var(--transition);
}

.member-support-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(40, 205, 155, 0.15);
}

.member-panel .info-card {
  box-shadow: var(--shadow-lg);
}

.contact-form-card textarea.form-control {
  min-height: 150px;
}

.form-feedback {
  display: none;
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 600;
}

.form-feedback.show {
  display: block;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 18px;
}

.print-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  padding: 90px 0 0;
  background: linear-gradient(135deg, #06251b, #0b6e4f);
  color: rgba(255, 255, 255, 0.88);
}

.footer-widget h5 {
  margin-bottom: 20px;
  color: var(--white-color);
  font-weight: 700;
}

.footer-copy {
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ========================================
   Utility Elements
======================================== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b6e4f, #06251b);
  color: var(--white-color);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

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

.floating-action,
.back-to-top {
  position: fixed;
  right: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  color: var(--white-color);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float {
  bottom: 110px;
  background: #25d366;
}

.call-float {
  bottom: 180px;
  background: var(--primary-color);
}

.back-to-top {
  bottom: 40px;
  background: var(--accent-color);
  color: var(--heading-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================================
   Print Styles
======================================== */
@media print {
  .topbar-wrap,
  .site-navbar,
  .floating-action,
  .back-to-top,
  .hero-slider-controls,
  .hero-pagination,
  .newsletter-panel,
  .site-footer,
  .notice-strip {
    display: none !important;
  }

  .page-banner,
  .hero-section {
    color: #000000 !important;
    background: #ffffff !important;
  }

  .section-padding {
    padding: 40px 0;
  }

  .info-card,
  .feature-card,
  .scheme-card,
  .loan-card,
  .service-card,
  .license-table-wrap,
  .glass-panel {
    box-shadow: none !important;
    border: 1px solid #cccccc !important;
  }
}
