/* ============================================================
   GBLBS — Redesigned Stylesheet
   All original class names preserved. New classes added below.
   ============================================================ */

:root {
  --green-dark:    #0f5c35;
  --green-mid:     #1a6e45;
  --green-main:    #2d9e6b;
  --green-light:   #3CB371;
  --green-pale:    #eaf7f0;
  --green-border:  #a8dfc1;
  --text-dark:     #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --white:         #ffffff;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f7faf8;
  color: var(--text-dark);
}

/* ============================================================
   POPUP
   ============================================================ */
.popUp {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popUpContent {
  width: 38%;
  max-height: 88vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popUpContent img {
  width: 100%;
  height: auto;
  display: block;
}

.shut {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 42px;
  transform: rotate(45deg);
  cursor: pointer;
  color: #fff;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 10000;
}

.shut:hover {
  color: #ff6b6b;
  transform: rotate(135deg);
}

/* ============================================================
   QUICK ACCESS FLOATING BUTTON
   ============================================================ */

/* Wrapper */
.webmail {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Action items — hidden by default */
.webmail-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.webmail:hover .webmail-actions,
.webmail.open .webmail-actions {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Each action pill */
.webmail-action {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid var(--green-border);
  border-radius: 24px;
  padding: 7px 14px 7px 10px;
  text-decoration: none;
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(15,92,53,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.webmail-action:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateX(-4px);
  text-decoration: none;
}

.webmail-action i {
  width: 26px;
  height: 26px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.webmail-action:hover i {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Main toggle button */
.webmail-toggle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(45,158,107,0.55);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  animation: wm-pulse 2.5s infinite;
}

@keyframes wm-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,158,107,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(45,158,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,158,107,0); }
}

.webmail:hover .webmail-toggle,
.webmail.open .webmail-toggle {
  transform: rotate(15deg) scale(1.08);
  box-shadow: 0 6px 24px rgba(15,92,53,0.5);
  animation: none;
}

.webmail-toggle i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topBar {
  width: 90%;
  margin: 0 auto;
  background: var(--green-dark);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.topBar i {
  color: var(--green-border);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  width: 90%;
  height: 18vh;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

header > a {
  display: contents;
}

.logo {
  width: 420px;
  height: 85px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
}

.flag {
  width: 52px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  header {
    height: auto;
    padding: 10px 0;
  }
  .logo {
    width: 200px;
    height: auto;
  }
  .flag {
    width: 32px;
    height: 40px;
  }
  .topBar {
    display: none;
  }
}

/* ============================================================
   NOTICE TICKER — Stepped Notice Board
   ============================================================ */
.updateContainer {
  width: 90%;
  margin: 0 auto 0.5em auto;
  height: 38px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #eaf7f0 0%, #fff 40%, #f0faf5 100%);
  border-radius: 20px;
  border: 1px solid var(--green-border);
  box-shadow: 0 2px 10px rgba(15,92,53,0.1);
  overflow: hidden;
  position: relative;
  gap: 0;
}

.ticker-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
  border-radius: 20px 0 0 20px;
  box-shadow: 4px 0 10px rgba(15,92,53,0.15);
}

.ticker-viewport {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.ticker-slide {
  position: absolute;
  left: 12px; right: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  cursor: pointer;
}

.ticker-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.ticker-slide:hover {
  color: var(--green-main);
  text-decoration: underline;
}

.ticker-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px 0 8px;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.ticker-dot.active {
  background: var(--green-main);
  transform: scale(1.3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav:not(.navbar) {
  width: 90%;
  margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 2px 12px rgba(15,92,53,0.15);
}

/* Bootstrap navbar full width */
.navbar.gblbsNav {
  width: 90%;
  margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 2px 12px rgba(15,92,53,0.15);
  padding: 4px 1rem;
}

.nav-link,
.dropdown-item {
  color: rgba(255,255,255,0.92) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

/* Desktop: padding on link, hover on the li */
.gblbsNav .navbar-nav .nav-item {
  border-radius: var(--radius-sm);
  margin: 4px 2px;
}

.gblbsNav .navbar-nav .nav-link {
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.92) !important;
}

.gblbsNav .navbar-nav .nav-item:hover,
.gblbsNav .navbar-nav .nav-item.active {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
}

.gblbsNav .navbar-nav .nav-item:hover > .nav-link,
.gblbsNav .navbar-nav .nav-item.active > .nav-link {
  color: #ffffff !important;
  background: transparent !important;
}

/* Keep old rule but limit to non-gblbsNav elements */
.active .nav-link:not(.gblbsNav .nav-link) {
  color: #ffffff !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm);
}

/* Mobile collapsed menu */
@media screen and (max-width: 991px) {
  .navbar.gblbsNav {
    width: 90%;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .gblbsNav .navbar-nav .nav-item {
    margin: 2px 8px;
    border-radius: var(--radius-sm);
  }

  .gblbsNav .navbar-nav .nav-link {
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius-sm);
  }

  .gblbsNav .navbar-collapse {
    padding: 8px 4px 14px;
  }
}

/* Hamburger / toggler button */
.gblbsNav .navbar-toggler {
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  border-radius: var(--radius-sm) !important;
  padding: 5px 9px !important;
  margin: 6px 0 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background 0.2s, border-color 0.2s;
}

.gblbsNav .navbar-toggler:hover,
.gblbsNav .navbar-toggler:focus {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.85) !important;
  outline: none !important;
  box-shadow: none !important;
}

.gblbsNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  width: 22px;
  height: 22px;
}

.dropdown-menu {
  background: #1a6e45 !important;
  border: none !important;
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
  padding: 6px 0 !important;
}

.dropdown-item {
  font-size: 13px !important;
  padding: 8px 20px !important;
  border-left: 3px solid transparent;
  transition: all 0.2s !important;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  border-left-color: var(--green-border) !important;
}


/* ============================================================
   CAROUSEL / IMAGE CONTAINER
   ============================================================ */
.imageContainer {
  width: 90%;
  margin: 0 auto;
  border-radius: 0 0 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Critical: fixed height on carousel chain so images don't stack */
.imageContainer .carousel,
.imageContainer .carousel-inner,
.imageContainer .carousel-item {
  height: 440px;
}

.imageContainer .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   STATS BAR — flush below carousel, visually connected
   ============================================================ */
.statsBar {
  width: 90%;
  margin: 0 auto 0.75rem auto;
  background: rgba(15, 92, 53, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
}

.statItem {
  text-align: center;
  padding: 4px 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.statNum {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.statLabel {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.statDivider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   INTRODUCTION
   ============================================================ */
.introduction {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 2rem auto;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-border);
}

.introText {
  padding: 0;
  flex: 1;
}

.introText h2,
.mission h2,
.vision h2,
.service h2 {
  color: var(--green-dark);
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.introText h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--green-main);
  border-radius: 2px;
}

.introText p,
.mission p,
.vision p {
  text-align: justify;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.introLink {
  text-align: left;
  margin-top: 1.5rem;
}

.introText a {
  color: var(--white);
  background: var(--green-main);
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.introText a:hover {
  background: var(--green-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.introImage {
  height: 280px;
  width: 340px;
  flex-shrink: 0;
}

.introImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   MISSION & VISION — beautiful cards
   ============================================================ */
.target {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 90%;
  margin: 2rem auto;
  gap: 2rem;
}

.mvCard {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mvCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Mission — green gradient */
.mission.mvCard {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
}

/* Vision — deep teal gradient */
.vision.mvCard {
  background: linear-gradient(160deg, #0d4f6e 0%, #1a7fa0 100%);
}

.mvIcon {
  margin-top: 2.5rem;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.25);
}

.mvIcon i {
  font-size: 28px;
  color: #fff;
}

.mvLabel {
  margin-top: 0.9rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.mvCard h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0.6rem 2rem 1rem 2rem;
}

.mvCard p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  padding: 0 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.mvNepali {
  font-size: 12px !important;
  color: rgba(255,255,255,0.6) !important;
  padding-bottom: 2.25rem !important;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem !important;
  margin-top: 0.25rem;
}

/* Keep app.js dummy classes harmless */
.missionDummy,
.visionDummy {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SERVICES — compact, attractive, side by side
   ============================================================ */
.service {
  width: 90%;
  margin: 2rem auto 2.5rem auto;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: stretch;
}

/* Shared card shell */
.svcCard {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
}

.svcCard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Card header strip */
.svcCardHeader {
  background: linear-gradient(135deg, #e8f8ee 0%, #c6edd8 100%);
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
  border-bottom: 3px solid var(--green-main);
}

.svcIcon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.svcHeading {
  font-family: 'Quicksand', sans-serif;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Card body */
.svcCardBody {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  align-items: center;
  text-align: center;
}

/* Grouped sub-sections */
.svcGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.svcGroupTitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green-pale);
  width: 100%;
}

.svcGroupTitle i {
  color: var(--green-main);
  font-size: 14px;
}

/* Tag rows & grids */
.svcTagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

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

.svcTag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--green-border);
  white-space: normal;
  word-break: break-word;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.svcTag:hover {
  background: var(--green-main);
  color: #fff;
  border-color: var(--green-main);
}

.svcTagAccent {
  background: #fff7e6;
  border-color: #f0c070;
  color: #7a4f00;
}

.svcTagAccent:hover {
  background: #e6a817;
  color: #fff;
  border-color: #e6a817;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.underline {
  width: 90%;
  margin: 2rem auto;
  border-bottom: 2px solid var(--green-border);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  width: 90%;
  margin: 0 auto 1.5em auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Top band — dark background with 4 columns */
.footerTop {
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  padding: 2.5rem 2rem;
}

/* Brand column */
.footerBrand {
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footerLogo {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footerBrand .footerBadge {
  font-size: 10px;
  color: var(--green-border);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 500;
  display: inline-block;
  margin-right: 4px;
}

/* Link columns */
.footerCol {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.footerCol:last-child {
  border-right: none;
}

.footerColTitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footerColTitle i {
  margin-right: 4px;
}

.footerContactList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footerContactList li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}

.footerContactList li i {
  color: var(--green-border);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footerLinkList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footerLinkList li a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  padding: 2px 0;
}

.footerLinkList li a:hover {
  color: #fff;
  padding-left: 4px;
  text-decoration: none;
}

/* IO strip — lighter band */
.footerIoStrip {
  background: var(--green-pale);
  border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--green-border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.io2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ioImg img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 3px solid var(--green-main);
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(45,158,107,0.2);
}

.ioDetails h5 {
  font-size: 13px;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.ioDetails p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.ioLinks {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ioLinks a {
  font-size: 12.5px;
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--green-border);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--white);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ioLinks a:hover {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
  text-decoration: none;
}

/* Map — inside footer now */
#googleMap {
  display: none;
  width: 100%;
}

#googleMap iframe {
  width: 100%;
  display: block;
}

/* Bottom bar */
.footerBar {
  background: var(--green-dark);
  padding: 12px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footerBar p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

#locationLink {
  cursor: pointer;
  font-size: 12.5px;
  color: var(--green-border);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  text-decoration: underline dotted;
}

#locationLink:hover {
  color: #fff;
}

/* Legacy classes still referenced by other pages */
.ioContainer {
  display: none; /* replaced by footerIoStrip in new design */
}

.addressLink {
  display: none; /* replaced by footerTop columns */
}

.optional { display: none; }
.address  { display: none; }
.links    { display: none; }

/* ============================================================
   GOOGLE MAP
   ============================================================ */
#googleMap {
  width: 90%;
  margin: 0 auto 1.5em auto;
  display: none;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   COPYRIGHT
   ============================================================ */
.copyright {
  background: var(--green-dark);
}

.copyright p {
  text-align: center;
  padding: 0.6em;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ============================================================
   OTHER PAGES (unchanged class names, kept working)
   ============================================================ */
.outerContainer {
  width: 90%;
  height: 100%;
  margin: auto;
  background: linear-gradient(180deg, rgba(144,238,144,1), rgba(144,238,144,0.9)), url(Black.png) center no-repeat;
}

.gblbs {
  width: 85%;
  margin: auto;
  font-size: 15px;
  color: black;
  padding: 2px;
}

.gblbs h1 {
  font-weight: 200;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}

.structure {
  width: 90%;
  margin: 8em auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.structure ul { color: #3CB371; }

.bod, .mgmt {
  width: 90%;
  margin: auto;
  height: 100vh;
}

.mgmt { height: 150vh; }

.bodDetails, .mgmtDetails {
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  font-size: 13px;
}

.bodDetails h3,.mgmtDetails h3,.mgmtDetails h4,.position,.htContainer h4 {
  color: #3CB371;
}

.profile img,.ioImg img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  border: 3px solid #3CB371;
  margin: 2em;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.ioImg img {
  height: 110px;
  width: 100px;
  margin: 0em;
}

.ntsList li,.downList li,.nsList li,.arList li,.afrList li,.prList li,.qfhList li,.fdList li,.mdList li {
  background-image: linear-gradient(-225deg, #90F9C4 0%, #FFFEFF 100%);
  border-radius: 0.5em;
  margin: 0.4em;
  padding: 0.4em;
}

.ntsList li span,.downList li span,.nsList li span {
  font-size: 11px;
  color: rgba(0,0,0,1);
}

.my-gallery { width: 90%; margin: auto; }
.my-gallery h3 { margin-top: 1em; color: #3CB371; }
.my-gallery .crease { width: 7em; height: 2px; background: #3CB371; margin: auto; }

.gallery { padding: 1.5em; text-align: center; }
.gallery img {
  transition: all 1s ease-in-out;
  margin: 0.5rem;
  width: 10rem;
  height: 6.5rem;
  border-radius: 0.7em;
}
.gallery img:hover { transform: scale(1.2); border: 1px solid #3CB371; }

.table100 {
  position: relative;
  padding-top: 55px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 40px 0px rgba(0,0,0,0.15);
}
.table100-head th { padding: 15px 0; }
.table100-body td { padding: 12px 0; }
.table100-head { position: absolute; width: 100%; top: 0; left: 0; }
.table100-body { max-height: 585px; overflow: auto; }
.table100 th { font-size: 18px; color: #000; line-height: 1.4; background-color: rgba(152,251,152,0.9); }
.table100 td { font-size: 15px; color: #808080; line-height: 1.4; }
.table100-body tr:nth-child(even) { background-color: rgba(152,251,152,0.4); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media screen and (max-width: 1024px) {
  .popUpContent { width: 65%; }
  .logo { width: 360px; height: 70px; }
  .flag { width: 40px; height: 50px; }

  .imageContainer .carousel,
  .imageContainer .carousel-inner,
  .imageContainer .carousel-item { height: 340px; }
  .statsBar { padding: 10px 0; }
  .statNum { font-size: 18px; }
  .statItem { padding: 4px 18px; }

  .introText p, .service li { font-size: 12px; }
  .mvCard h2 { font-size: 17px; }
  .mvCard p { font-size: 12.5px; padding: 0 1.25rem; }

  .service .imgf, .service .imgnf { width: 60px; height: 60px; }
  .introduction { padding: 1.5rem; gap: 1.5rem; }
  .introImage { height: 200px; width: 220px; }

  .footerTop { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem; }
  .footerBrand { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
  .footerCol { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0.5rem 1rem 0.5rem; }
  .footerCol:last-child { border-bottom: none; }

  .table100 th { font-size: 15px; }
  .table100 td { font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media screen and (max-width: 768px) {
  .topBar { flex-direction: column; gap: 4px; text-align: center; }

  .imageContainer .carousel,
  .imageContainer .carousel-inner,
  .imageContainer .carousel-item { height: 280px; }

  .statsBar { flex-wrap: wrap; }
  .statItem { width: 50%; }
  .statDivider { display: none; }

  .introduction { flex-direction: column; }
  .introImage { width: 100%; height: 200px; }

  .target { flex-direction: column; }

  .service { flex-direction: column; }
  .svcTagGrid { grid-template-columns: repeat(2, 1fr); }
  .svcCard { overflow: visible; height: auto; }

  .profile img, .ioImg img { height: 70px; width: 70px; }
  .bodDetails, .mgmtDetails { font-size: 10px; }

  .popUpContent { width: 88%; }

  .footerTop { grid-template-columns: 1fr; padding: 1.5rem; }
  .footerBrand { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
  .footerCol { border-right: none; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footerLogo { width: 160px; }
  .footerIoStrip { flex-direction: column; align-items: flex-start; }
  .footerBar { flex-direction: column; text-align: center; gap: 4px; }

  .table100 th, .table100 td { line-height: 1; }
}

/* ============================================================
   RESPONSIVE — 425px
   ============================================================ */
@media screen and (max-width: 425px) {
  .imageContainer .carousel,
  .imageContainer .carousel-inner,
  .imageContainer .carousel-item { height: 200px; }

  .logo { width: 200px; height: 40px; }
  .flag { width: 28px; height: 34px; margin-top: 4px; }

  .introduction { margin: 1em auto; padding: 1rem; }
  .introImage { display: none; }

  .target { flex-direction: column; gap: 0.75rem; margin: 0.75rem auto; }
  .mission, .vision { padding: 1rem; width: 100%; }

  .service { width: 95%; margin: 1em auto; }
  .svcTagGrid { grid-template-columns: 1fr 1fr; }
  .svcTag { font-size: 11px; padding: 4px 8px; }
  .statsBar { display: none; }

  footer { width: 100%; border-radius: 0; }

  .structure { flex-direction: column; margin: 2em auto; width: 100%; }

  .table100 th { font-size: 9px; line-height: 0.9; }
  .table100 td { font-size: 9px; }
}
