/* ============================================================
   Students Welfare Association – Main Stylesheet
   File: css/style.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --green:       #1a6b3c;
  --green-light: #27a85f;
  --green-pale:  #e8f7ef;
  --gold:        #c9933a;
  --gold-light:  #f5c97a;
  --dark:        #0f1f17;
  --mid:         #2d4a38;
  --muted:       #6b8070;
  --white:       #ffffff;
  --off-white:   #f7faf8;
  --border:      #d4e8dc;
  --shadow-sm:   0 4px 20px rgba(26,107,60,.10);
  --shadow-md:   0 8px 32px rgba(26,107,60,.15);
  --shadow-lg:   0 16px 48px rgba(26,107,60,.20);
  --radius:      12px;
  --radius-sm:   7px;
  --transition:  .28s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { transition: color var(--transition); }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: #aac4b0;
  font-size: .78rem;
  padding: 6px 0;
  z-index: 1100;
  position: relative;
}
.topbar a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white) !important;
  border-bottom: 3px solid var(--green-light);
  box-shadow: 0 2px 20px rgba(26,107,60,.08);
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-brand { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.brand-text { line-height: 1.2; }
.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--green);
  display: block;
}
.brand-text span { font-size: .68rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 1.15rem .9rem !important;
  font-size: .875rem;
  letter-spacing: .02em;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 3px; background: var(--green-light);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px 2px 0 0;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--green) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: .9rem; right: .9rem; }

/* Dropdown */
.dropdown-menu {
  border: none !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
  margin-top: 0 !important;
  border-top: 3px solid var(--green-light) !important;
}
.dropdown-item {
  font-size: .875rem;
  padding: .55rem 1.1rem;
  color: var(--dark);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown-item:hover { background: var(--green-pale); color: var(--green); padding-left: 1.4rem; }

/* Nav CTA Button */
.btn-nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: .42rem 1.1rem !important;
  margin-left: .5rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

/* ── HERO SLIDER ── */
#heroSlider { border-bottom: 4px solid var(--gold); }

.hero-slide {
  height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,40,22,.84) 40%, rgba(10,40,22,.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content p {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.btn-hero {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-hero:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); }

.btn-hero-outline {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white) !important;
  font-weight: 700;
  padding: .68rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }

.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  transition: background var(--transition);
}
.carousel-indicators button.active { background: var(--gold); width: 26px; border-radius: 5px; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--green);
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 60px
  );
  padding: 24px 0;
}
.stat-item { text-align: center; padding: 8px 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; color: var(--gold-light); }
.stat-lbl { font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* ── SECTION HEADING ── */
.sec-head { text-align: center; margin-bottom: 2.8rem; }
.sec-head .tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
  display: block;
}
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--dark); }
.sec-head p { color: var(--muted); max-width: 560px; margin: 10px auto 0; font-size: .92rem; }
.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── SHARED BUTTON ── */
.btn-green {
  background: var(--green);
  color: var(--white) !important;
  border: none;
  padding: .65rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
  border: none;
  padding: .65rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark) !important; transform: translateY(-2px); }

/* ── NOTICE BOARD ── */
.section-notice { background: var(--off-white); padding: 70px 0; }

.notice-board {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.notice-header {
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.notice-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.65} }

.notice-scroll { height: 320px; overflow: hidden; position: relative; }
.notice-inner { animation: scrollUp 24s linear infinite; }
.notice-inner:hover { animation-play-state: paused; }
@keyframes scrollUp { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }

.notice-item {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
  transition: background var(--transition);
}
.notice-item:hover { background: var(--green-pale); }
.notice-date {
  font-size: .7rem; color: var(--white);
  background: var(--green);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.notice-item a { color: var(--dark); text-decoration: none; font-size: .875rem; font-weight: 500; }
.notice-item a:hover { color: var(--green); }

/* ── ACTIVITIES ── */
.section-activities { padding: 70px 0; }

.act-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  background: var(--white);
}
.act-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.act-card .card-body { padding: 30px; }

.act-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.6rem;
}
.act-card h5 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.act-card p { color: var(--muted); font-size: .875rem; line-height: 1.75; margin-bottom: 18px; }

.act-card-1 .act-icon-wrap { background: #e8f4ff; color: #2563eb; }
.act-card-2 .act-icon-wrap { background: #fef3e8; color: var(--gold); }
.act-card-3 .act-icon-wrap { background: #eafbf1; color: var(--green); }
.act-card-4 .act-icon-wrap { background: #fff0f0; color: #e05555; }

.act-card-1 { border-top: 4px solid #2563eb; }
.act-card-2 { border-top: 4px solid var(--gold); }
.act-card-3 { border-top: 4px solid var(--green-light); }
.act-card-4 { border-top: 4px solid #e05555; }

/* ── ABOUT ── */
.section-about { background: var(--off-white); padding: 80px 0; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; height: 420px;
  box-shadow: var(--shadow-md);
}
.about-badge-box {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--gold); color: var(--white);
  padding: 18px 22px; border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,147,58,.4);
}
.about-badge-box strong { font-family: 'Playfair Display', serif; font-size: 2.4rem; display: block; }
.about-badge-box span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

.about-text .tag { color: var(--green-light); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.about-text h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 10px 0 18px; }
.about-text p { color: var(--muted); line-height: 1.82; font-size: .9rem; margin-bottom: 14px; }

.feature-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feature-check .icon { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }
.feature-check span { font-size: .9rem; font-weight: 500; }

/* ── BOARD MEMBERS ── */
.section-board { padding: 70px 0; }
.member-card {
  text-align: center; border: none;
  border-radius: var(--radius);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border-bottom: 4px solid transparent;
}
.member-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-bottom-color: var(--green-light); }
.member-photo {
  width: 90px; height: 90px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid var(--green-pale);
  margin: 0 auto 14px;
  transition: border-color var(--transition);
}
.member-card:hover .member-photo { border-color: var(--green-light); }
.member-role { font-size: .72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.member-name { font-size: 1.05rem; margin: 6px 0 4px; color: var(--dark); }
.member-org  { font-size: .76rem; color: var(--muted); }

/* ── NEWS CARDS ── */
.section-news { background: var(--off-white); padding: 70px 0; }
.news-card {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card-img { height: 185px; width: 100%; object-fit: cover; }
.news-card-body { padding: 18px 20px; }
.news-card-date { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.news-card h6 { font-size: .96rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: .83rem; color: var(--muted); margin-bottom: 10px; }
.news-card .read-more { color: var(--green); font-size: .82rem; font-weight: 600; text-decoration: none; }
.news-card .read-more:hover { color: var(--green-light); }

/* ── GALLERY ── */
.section-gallery { padding: 70px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
  gap: 10px;
}
.gallery-item { overflow: hidden; border-radius: 10px; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,40,22,.45);
  opacity: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
  color: var(--white); font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(130deg, var(--green) 0%, var(--mid) 100%);
  padding: 68px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.78); margin-bottom: 30px; font-size: 1rem; }

.btn-white {
  background: var(--white); color: var(--green) !important;
  font-weight: 700; padding: .75rem 2rem;
  border-radius: var(--radius-sm); text-decoration: none;
  font-size: .95rem; display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

/* ── FOOTER ── */
footer { background: var(--dark); color: #8fada0; padding: 60px 0 0; }

.footer-brand { margin-bottom: 14px; }
.footer-brand strong { font-family: 'Playfair Display', serif; font-size: 1.18rem; color: var(--white); display: block; }
.footer-brand span { font-size: .76rem; color: var(--muted); }

footer p { font-size: .875rem; line-height: 1.82; }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: #8fada0; font-size: .85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--green-light); color: var(--white); border-color: transparent; }

.footer-heading {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px; position: relative;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--gold);
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: #8fada0; text-decoration: none; font-size: .875rem;
  transition: color var(--transition), padding-left var(--transition);
}
footer ul li a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; margin-bottom: 12px; color: #8fada0; }
.footer-contact .icon { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: #8fada0; text-decoration: none; }
.footer-contact a:hover { color: var(--green-light); }

.footer-bottom {
  background: rgba(0,0,0,.32);
  text-align: center;
  padding: 15px;
  margin-top: 44px;
  font-size: .78rem;
  color: #5a7a6a;
}
.footer-bottom a { color: var(--green-light); text-decoration: none; }

/* ── BACK TO TOP ── */
#backTop {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--green); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer;
  opacity: 0; transform: translateY(22px);
  transition: opacity .35s, transform .35s, background var(--transition);
  z-index: 999; border: none;
  box-shadow: 0 4px 18px rgba(26,107,60,.38);
}
#backTop.visible { opacity: 1; transform: translateY(0); }
#backTop:hover { background: var(--green-light); }

/* ── PAGE SECTIONS (inner pages) ── */
.page-banner {
  background: linear-gradient(110deg, var(--green) 0%, var(--mid) 100%);
  padding: 52px 0;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner > * { position: relative; }
.page-banner h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 10px; }
.page-banner .breadcrumb { justify-content: center; background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.page-banner .breadcrumb-item.active { color: var(--gold-light); }

/* ── CONTACT PAGE ── */
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 4px solid var(--green-light);
  margin-bottom: 20px; transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-info-card .icon-box {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h6 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.contact-info-card p { font-size: .9rem; color: var(--dark); margin: 0; }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form .form-control, .contact-form .form-select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .65rem 1rem; font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(39,168,95,.12);
}
.contact-form label { font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

/* ── GALLERY PAGE ── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.gallery-page-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-page-item:hover img { transform: scale(1.07); }
.gallery-page-overlay {
  position: absolute; inset: 0;
  background: rgba(10,40,22,.5);
  opacity: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition); color: var(--white); font-size: 1.8rem;
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }

/* ── NOTICE PAGE ── */
.notice-table { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.notice-table table { margin: 0; }
.notice-table thead th { background: var(--green); color: var(--white); font-weight: 600; font-size: .875rem; border: none; }
.notice-table tbody td { font-size: .875rem; vertical-align: middle; border-color: var(--border); }
.notice-table tbody tr:hover { background: var(--green-pale); }
.year-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  margin: 10px 0 4px;
}

/* ── ACTIVITIES PAGE ── */
.activity-full-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 28px;
  transition: box-shadow var(--transition);
}
.activity-full-card:hover { box-shadow: var(--shadow-md); }
.activity-full-card img { width: 100%; height: 240px; object-fit: cover; }
.activity-full-card-body { padding: 28px; }
.activity-full-card h4 { margin-bottom: 10px; }
.activity-full-card p { color: var(--muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link { padding: .6rem 1rem !important; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-nav-cta { margin: 4px 0 8px !important; width: fit-content; }
}
@media (max-width: 767.98px) {
  .hero-slide { height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,155px); }
  .gallery-item:first-child { grid-column: span 2; }
  .about-badge-box { right: 0; bottom: -14px; }
  .about-img { height: 280px; }
  .stat-num { font-size: 1.7rem; }
}
@media (max-width: 575.98px) {
  .hero-slide { height: 360px; }
  .hero-content h1 { font-size: 1.45rem; }
}
