:root {
  --primary: #4b0d6d;
  --primary-dark: #310147;
  --primary-soft: #6b2fa0;
  --accent: #f05d9b;
  --accent-light: #ff8fbc;
  --light-bg: #f7f7f7;
  --text-dark: #1f1f1f;
  --text-muted: #6f6f6f;
  --white: #ffffff;
  --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.08);
  --shadow-purple: 0 14px 35px rgba(75, 13, 109, 0.18);
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* =========================
   REUSABLE SECTIONS
   ========================= */
.section-light {
  background: var(--light-bg);
  padding: 90px 0;
}

.section-white {
  background: #ffffff;
  padding: 90px 0;
}

.section-heading h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.heading-line {
  width: 68px;
  height: 4px;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--accent), var(--primary-soft));
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.premium-navbar {
  padding: 14px 0;
  background: transparent;
  transition: all 0.35s ease;
}

.site-header.scrolled .premium-navbar {
  padding: 8px 0;
}

.site-brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: all 0.35s ease;
}

.site-header.scrolled .site-logo {
  height: 56px;
}

.main-menu .nav-link {
  color: #000000;
  font-size: 17px;
  font-weight: 300;
  margin: 0 10px;
  position: relative;
  padding: 10px 4px !important;
}

.site-header.scrolled .main-menu .nav-link {
  color: #202020;
}

.main-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.site-header.scrolled .main-menu .nav-link::after {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.active::after {
  transform: scaleX(1);
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: #000000;
}

.site-header.scrolled .main-menu .nav-link:hover,
.site-header.scrolled .main-menu .nav-link.active {
  color: var(--primary);
}

.highlight-link {
  color: #310147 !important;
}

.header-right .nav-icon-link {
  color: #ffffff;
  font-size: 16px;
}

.site-header.scrolled .header-right .nav-icon-link {
  color: #1e1e1e;
}

.header-right .nav-icon-link:hover {
  color: var(--accent);
  transform: translateY(-2px) scale(1.08);
}

.donate-btn {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  color: #fff;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  box-shadow: var(--shadow-purple);
  letter-spacing: 0.5px;
}

.donate-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  transform: translateY(-2px);
}

.premium-dropdown {
  border: none;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 12px;
  min-width: 260px;
  margin-top: 14px;
}

.premium-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 600;
  color: #2a2a2a;
}

.premium-dropdown .dropdown-item:hover {
  background: rgba(75, 13, 109, 0.08);
  color: var(--primary);
  transform: translateX(4px);
}

/* =========================
   CUSTOM TOGGLER
   ========================= */
.custom-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0;
  width: 42px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.toggler-line {
  display: block;
  height: 3px;
  width: 28px;
  border-radius: 20px;
  background: #220049;
  margin-left: auto;
  transition: 0.3s ease;
}

.site-header.scrolled .toggler-line {
  background: #222;
}

/* =========================
   HERO
   ========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #cfe1ea;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 9, 66, 0.62) 0%, rgba(45, 9, 66, 0.36) 36%, rgba(11, 8, 26, 0.22) 100%);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
}

.min-hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero-small-text {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.hero-title {
  color: #fff;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--accent-light);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-light {
  background: #fff;
  color: #111;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
  border: none;
}

.hero-btn-light:hover {
  background: var(--accent);
  color: #fff;
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hero-right {
  padding-left: 30px;
}

.glass-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.hero-floating-card {
  padding: 26px;
  color: #fff;
  margin-bottom: 20px;
  animation: floatSoft 4s ease-in-out infinite;
}

.hero-floating-card .mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.hero-floating-card h5 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-floating-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.hero-stats-row {
  display: flex;
  gap: 18px;
}

.hero-stat {
  flex: 1;
  padding: 22px 18px;
  text-align: center;
  color: #fff;
  animation: floatSoft 5s ease-in-out infinite;
}

.hero-stat:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-stat h4 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 5px;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.84);
}

/* =========================
   PREMIUM HOVER BOX
   ========================= */
.premium-box {
  transition: all 0.35s ease;
}

.premium-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(75, 13, 109, 0.14);
}

/* =========================
   STATS SECTION
   ========================= */
.stat-box {
  text-align: center;
  background: #fff;
  padding: 38px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.stat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,93,155,0.15), rgba(75,13,109,0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.stat-box h3 {
  color: var(--accent);
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================
   FEATURE STRIP
   ========================= */
.feature-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 75px 0;
}

.feature-box {
  text-align: center;
  color: #fff;
  padding: 10px 12px;
  transition: all 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 44px;
  margin-bottom: 18px;
  color: #fff;
}

.feature-box h5 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  min-height: 105px;
}

.feature-box a {
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feature-box a:hover {
  color: #fff;
}

/* =========================
   INFO SECTION
   ========================= */
.info-left h2,
.testimonial-content h2,
.donation-content h3 {
  font-size: 46px;
  line-height: 1.08;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.info-left p,
.testimonial-content p,
.involved-action-box p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.lead-text {
  color: #333 !important;
  font-weight: 700;
}

.btn-purple-pill {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  color: #fff;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 800;
  border: none;
}

.btn-purple-pill:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}

.mini-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.mini-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mini-card-body {
  padding: 22px;
}

.mini-card-body h5 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1f1f1f;
  text-transform: uppercase;
}

.mini-card-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 13px;
}

/* =========================
   POPULAR CAUSES
   ========================= */
.causes-carousel-wrapper {
  position: relative;
  margin-top: 38px;
}

.causes-viewport {
  overflow: hidden;
  width: 100%;
}

.causes-track {
  display: flex;
  transition: transform 0.65s ease;
}

.cause-slide {
  flex: 0 0 33.333333%;
  padding: 0 14px;
}

.cause-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-bottom: 4px solid #8dd36a;
}

.cause-image-wrap {
  position: relative;
  overflow: hidden;
}

.cause-image-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cause-card:hover .cause-image-wrap img {
  transform: scale(1.08);
}

.badge-custom {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent), #ff7aa6);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 2;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  padding: 16px 18px 8px;
}

.cause-progress {
  height: 6px;
  margin: 0 18px 14px;
  background: #ececec;
}

.cause-progress .progress-bar {
  background: #8dd36a;
}

.cause-card-body {
  padding: 0 18px 22px;
}

.cause-card-body h5 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}

.cause-card-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 13px;
}

.cause-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #666;
  box-shadow: var(--shadow-soft);
  z-index: 4;
}

.cause-nav:hover {
  background: var(--primary);
  color: #fff;
}

.cause-prev {
  left: -18px;
}

.cause-next {
  right: -18px;
}

/* =========================
   TESTIMONIAL
   ========================= */
.testimonial-image img {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.testimonial-content blockquote {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.9;
  font-style: italic;
  color: #666;
  margin-bottom: 18px;
}

.testimonial-content blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -16px;
  font-size: 72px;
  line-height: 1;
  color: #d7d7d7;
}

/* =========================
   INVOLVED
   ========================= */
.involved-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.involved-image-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.involved-image-card:hover img {
  transform: scale(1.06);
}

.overlay-label {
  position: absolute;
  left: 18px;
  bottom: 22px;
  color: #fff;
}

.small-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff7fae);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.overlay-label h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.overlay-btn {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  color: #fff;
  border-radius: 30px;
  padding: 11px 18px;
  font-size: 10px;
  font-weight: 800;
}

.overlay-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.involved-action-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.involved-action-box h5 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.btn-light-outline-pill {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 800;
}

.btn-light-outline-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* =========================
   NEWS
   ========================= */
.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.08);
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent), #ff7fae);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 2;
}

.news-content {
  padding: 22px;
}

.news-content h5 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-meta {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}

/* =========================
   DONATION CTA
   ========================= */
.donation-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 55px 0;
}

.donation-content h3 {
  color: #fff;
}

.donation-content p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
}

.donation-input-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.currency-box {
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.donation-input {
  border: none;
  border-radius: 0;
  height: 45px;
  font-weight: 700;
  box-shadow: none !important;
}

.donation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amount-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.34);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-donate-main {
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 800;
  border: none;
}

.btn-donate-main:hover {
  background: #fff;
  color: var(--primary);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: #fff;
  padding: 70px 0 25px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-newsletter p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.9;
}

.footer-links h6,
.footer-newsletter h6 {
  color: #111;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form .form-control {
  min-height: 44px;
  border-radius: 30px;
  flex: 1 1 180px;
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  color: #fff;
  border-radius: 30px;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 800;
  border: none;
}

.btn-subscribe:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p,
.footer-bottom-links a {
  color: #8a8a8a;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* =========================
   REVEAL ANIMATION
   ========================= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
  }

  .section-heading h2,
  .info-left h2,
  .testimonial-content h2,
  .donation-content h3 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .premium-navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  }

  .site-logo {
    height: 58px;
  }

  .main-menu {
    padding: 20px 0 10px;
  }

  .main-menu .nav-link,
  .site-header.scrolled .main-menu .nav-link {
    color: #222;
    margin: 4px 0;
  }

  .header-right .nav-icon-link,
  .site-header.scrolled .header-right .nav-icon-link {
    color: #222;
  }

  .header-right {
    padding: 12px 0 5px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-right {
    padding-left: 0;
    margin-top: 30px;
  }

  .hero-stats-row {
    flex-direction: column;
  }

  .cause-slide {
    flex: 0 0 50%;
  }

  .cause-prev {
    left: -8px;
  }

  .cause-next {
    right: -8px;
  }

  .feature-box p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }

  .section-heading h2,
  .info-left h2,
  .testimonial-content h2,
  .donation-content h3 {
    font-size: 28px;
  }

  .site-logo {
    height: 50px;
  }

  .donate-btn {
    padding: 12px 18px;
    font-size: 12px;
  }

  .cause-slide {
    flex: 0 0 100%;
  }

  .cause-nav {
    width: 40px;
    height: 40px;
  }

  .cause-prev {
    left: -2px;
  }

  .cause-next {
    right: -2px;
  }

  .stat-box h3 {
    font-size: 40px;
  }

  .mini-card img,
  .news-img-wrap img,
  .cause-image-wrap img {
    height: 210px;
  }

  .involved-image-card img {
    height: 320px;
  }

  .donation-options {
    gap: 6px;
  }
}
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #cfe1ea;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 9, 66, 0.62) 0%,
    rgba(45, 9, 66, 0.36) 36%,
    rgba(11, 8, 26, 0.22) 100%
  );
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
}


/* =========================
   INNER PAGE HERO
   ========================= */
.inner-hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/about.jpg");
  background-size: cover;
background-position: center 35%;  background-repeat: no-repeat;
  transform: scale(1.04);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #000000;
  max-width: 900px;
  margin: 0 auto;
}

.inner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.inner-hero-content h1 {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 14px;
}

.inner-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
}

/* =========================
   ABOUT INTRO
   ========================= */
.about-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.about-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

/* =========================
   STORY SECTION
   ========================= */
.story-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.story-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240,93,155,0.14), rgba(75,13,109,0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.story-card h3 {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.story-card p {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 16px;
}

/* =========================
   VISIONARY CARD
   ========================= */
.visionary-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.visionary-image-wrap {
  position: relative;
  padding: 32px 32px 0;
}

.visionary-shape {
  position: absolute;
  border-radius: 16px;
  z-index: 1;
}

.shape-1 {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--accent), #ff4ca0);
  top: 16px;
  right: 18px;
}

.shape-2 {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  left: 18px;
  bottom: -12px;
}

.visionary-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  background: #f7f7f7;
  padding: 10px;
}

.visionary-content {
  padding: 24px 28px 30px;
}

.mini-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.visionary-content h4 {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.visionary-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}

.visionary-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visionary-meta div {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visionary-meta i {
  color: var(--accent);
}

/* =========================
   ABOUT HIGHLIGHTS
   ========================= */
.about-highlight {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  text-align: center;
}

.about-highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(240,93,155,0.15), rgba(75,13,109,0.15));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.about-highlight h5 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--primary);
}

.about-highlight p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 0;
}

/* =========================
   LEGAL TABLE
   ========================= */
.legal-table-wrap {
  margin-top: 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.legal-table {
  border-collapse: separate;
  border-spacing: 0;
}

.legal-table tr:not(:last-child) td,
.legal-table tr:not(:last-child) th {
  border-bottom: 1px solid #efefef;
}

.legal-table th,
.legal-table td {
  padding: 18px 22px;
  font-size: 14px;
  vertical-align: middle;
}

.legal-table th {
  width: 45%;
  background: #faf7fc;
  color: var(--primary);
  font-weight: 800;
}

.legal-table td {
  color: #444;
  font-weight: 600;
}

/* =========================
   ABOUT CTA BAND
   ========================= */
.about-cta-band {
  padding: 0 0 90px;
  background: #fff;
}

.about-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 24px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-purple);
}

.about-cta-box h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.about-cta-box p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255,255,255,0.84);
}

/* =========================
   RESPONSIVE INNER PAGE
   ========================= */
@media (max-width: 1199px) {
  .inner-hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .inner-hero {
    padding: 145px 0 75px;
  }

  .inner-hero-content h1 {
    font-size: 36px;
  }

  .story-card h3,
  .visionary-content h4,
  .about-cta-box h3 {
    font-size: 28px;
  }

  .visionary-image {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .inner-hero-content h1 {
    font-size: 28px;
  }

  .inner-hero-content p,
  .about-intro-card p,
  .story-card p,
  .about-highlight p {
    font-size: 14px;
  }

  .story-card,
  .about-intro-card,
  .about-highlight,
  .visionary-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .visionary-image-wrap {
    padding: 20px 20px 0;
  }

  .visionary-image {
    height: 300px;
  }

  .legal-table th,
  .legal-table td {
    padding: 14px 14px;
    font-size: 13px;
  }

  .about-cta-box {
    padding: 26px 20px;
  }

  .about-cta-box h3 {
    font-size: 24px;
  }
}
.story-card-new {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(75, 13, 109, 0.10);
  position: relative;
  overflow: hidden;
}

.story-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.story-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.story-ribbon-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(240, 93, 155, 0.14), rgba(75, 13, 109, 0.16));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: inset 0 0 0 1px rgba(75, 13, 109, 0.06);
}

.story-heading-wrap {
  flex: 1;
}

.story-mini-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.story-card-new h3 {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  line-height: 1.1;
}

.story-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 93, 155, 0.45), rgba(75, 13, 109, 0.08), transparent);
  margin: 18px 0 24px;
}

.story-text-block {
  position: relative;
}

.story-text-block p {
  font-size: 15px;
  line-height: 2;
  color: #525252;
  margin-bottom: 16px;
}

.story-text-block p strong {
  color: #1f1f1f;
}

/* optional soft hover */
.story-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(75, 13, 109, 0.14);
}

@media (max-width: 991px) {
  .story-card-new {
    padding: 26px;
  }

  .story-card-new h3 {
    font-size: 30px;
  }

  .story-ribbon-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .story-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .story-card-new {
    padding: 22px;
    border-radius: 20px;
  }

  .story-card-new h3 {
    font-size: 26px;
  }

  .story-text-block p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.visionary-card-new {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.simple-photo-panel {
  padding: 24px;
  background: transparent;
  text-align: center;
}

.simple-rounded-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-soft);
}
.visionary-title-band {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent), #ff75b5);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 14px;
}

.visionary-content-new {
  padding: 24px 28px 30px;
}

.visionary-content-new p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .visionary-image {
    max-height: 430px;
  }
}

@media (max-width: 767px) {
  .visionary-photo-panel {
    padding: 20px 20px 8px;
  }

  .visionary-image {
    max-height: 320px;
  }

  .visionary-photo-caption h4 {
    font-size: 24px;
  }

  .visionary-content-new {
    padding: 20px;
  }
}




/* =========================
   EXECUTIVE HERO
   ========================= */
.executive-hero-bg {
  background-image: url("/assets/images/executive.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* =========================
   MEMBERS INTRO
   ========================= */
.members-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.members-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

/* =========================
   MEMBER CARDS
   ========================= */
.members-grid-section {
  position: relative;
}

.member-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(75, 13, 109, 0.14);
}

.member-image-wrap {
  background: linear-gradient(135deg, #fff6fb, #f8f5ff);
  padding: 28px 28px 0;
  text-align: center;
}

.member-image {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.member-content {
  padding: 22px 24px 26px;
  text-align: center;
}

.member-content h4 {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.member-role {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240, 93, 155, 0.12), rgba(75, 13, 109, 0.10));
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.member-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================
   MEMBERS RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .member-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .member-image {
    height: 290px;
  }
}

@media (max-width: 767px) {
  .members-intro-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .members-intro-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .member-image-wrap {
    padding: 20px 20px 0;
  }

  .member-image {
    height: 250px;
  }

  .member-content {
    padding: 18px 18px 22px;
  }

  .member-content h4 {
    font-size: 22px;
  }

  .member-content p {
    font-size: 13px;
  }
}


/* =========================
   GALLERY HERO
   ========================= */
.gallery-hero-bg {
  background-image: url("/assets/images/gallery/gallery-banner.jpg");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}

/* =========================
   GALLERY INTRO
   ========================= */
.gallery-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.gallery-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

/* =========================
   EVENT GALLERY BLOCK
   ========================= */
.event-gallery-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.event-gallery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.event-gallery-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.event-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240,93,155,0.14), rgba(75,13,109,0.14));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.event-mini-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-gallery-header h3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

/* =========================
   GALLERY GRID
   ========================= */
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #f3f3f3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(75,13,109,0.10), rgba(75,13,109,0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* =========================
   LIGHTBOX
   ========================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 30px;
}

.gallery-lightbox.show {
  display: flex;
}

.gallery-lightbox img {
  max-width: 92%;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}

/* =========================
   RESPONSIVE GALLERY
   ========================= */
@media (max-width: 1199px) {
  .event-gallery-header h3 {
    font-size: 28px;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .event-gallery-card {
    padding: 26px;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .gallery-intro-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .gallery-intro-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .event-gallery-card {
    padding: 22px;
    border-radius: 20px;
  }

  .event-gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .event-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 26px;
  }

  .event-gallery-header h3 {
    font-size: 22px;
  }

  .event-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item img {
    height: 240px;
  }

  .gallery-lightbox-close {
    font-size: 40px;
    top: 14px;
    right: 18px;
  }
}

/* =========================
   WHAT WE DO HERO
   ========================= */
.whatwedo-hero-bg {
  background-image: url("/assets/images/what-we-do/whatwedo-banner.jpg");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}

/* =========================
   WHAT WE DO INTRO
   ========================= */
.whatwedo-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.whatwedo-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

/* =========================
   SERVICE CARDS
   ========================= */
.service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(75, 13, 109, 0.14);
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f6fb;
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image {
  transform: scale(1.07);
}

.service-content {
  position: relative;
  padding: 24px 24px 28px;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 93, 155, 0.14), rgba(75, 13, 109, 0.14));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-content h4 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

/* =========================
   IMPACT STRIP
   ========================= */
.whatwedo-impact-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
}

.impact-box {
  text-align: center;
  color: #fff;
  padding: 20px 18px;
}

.impact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.impact-box h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.impact-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

/* =========================
   WHAT WE DO RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .service-content h4 {
    font-size: 25px;
  }

  .impact-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .service-image {
    height: 220px;
  }

  .whatwedo-intro-card {
    padding: 24px 24px;
  }
}

@media (max-width: 767px) {
  .whatwedo-intro-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .whatwedo-intro-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-image {
    height: 210px;
  }

  .service-content {
    padding: 20px 18px 22px;
  }

  .service-content h4 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 13px;
  }

  .impact-box h3 {
    font-size: 22px;
  }

  .impact-box p {
    font-size: 13px;
  }
}

/* =========================
   VOLUNTEER HERO
   ========================= */
.volunteer-hero-bg {
  background-image: url("/assets/images/volunteer/volunteer-banner.jpg");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

/* =========================
   VOLUNTEER INTRO
   ========================= */
.volunteer-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.volunteer-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

.volunteer-benefit-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 93, 155, 0.14), rgba(75, 13, 109, 0.14));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.volunteer-benefit-card h4 {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.volunteer-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

.volunteer-note {
  margin-top: 24px;
  font-size: 13px;
  color: #7a7a7a;
  text-align: center;
  font-style: italic;
}

/* =========================
   VOLUNTEER FORM
   ========================= */
.volunteer-form-wrap {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 36px;
}

.volunteer-form-header {
  margin-bottom: 28px;
}

.form-mini-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240,93,155,0.12), rgba(75,13,109,0.12));
  color: var(--accent);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.volunteer-form-header h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.volunteer-form-header p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

.custom-form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  box-shadow: none !important;
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
}

.custom-form-control:focus {
  border-color: rgba(75, 13, 109, 0.4);
}

.custom-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.declaration-box {
  background: #faf7fc;
  border: 1px solid #efe8f5;
  border-radius: 14px;
  padding: 16px 18px;
}

.declaration-box .form-check-label {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

.volunteer-form-actions {
  text-align: center;
  margin-top: 8px;
}

.volunteer-form-footer {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #faf7fc, #fff);
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

/* =========================
   VOLUNTEER RESPONSIVE
   ========================= */
@media (max-width: 991px) {
  .volunteer-form-wrap {
    padding: 26px;
  }

  .volunteer-form-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .volunteer-intro-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .volunteer-intro-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .volunteer-benefit-card {
    padding: 22px 18px;
  }

  .volunteer-benefit-card h4 {
    font-size: 22px;
  }

  .volunteer-benefit-card p {
    font-size: 13px;
  }

  .volunteer-form-wrap {
    padding: 20px;
    border-radius: 18px;
  }

  .volunteer-form-header h2 {
    font-size: 28px;
  }

  .volunteer-form-header p,
  .volunteer-form-footer {
    font-size: 13px;
  }

  .custom-form-control {
    min-height: 50px;
    font-size: 13px;
  }
}

/* =========================
   COLLABORATE HERO
   ========================= */
.collaborate-hero-bg {
  background-image: url("/assets/images/collaborate/collaborate-banner.jpg");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

/* =========================
   MINI LABEL
   ========================= */
.section-mini-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* =========================
   COLLABORATE INTRO
   ========================= */
.collaborate-info-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  height: 100%;
}

.collaborate-info-card h2 {
  font-size: 42px;
  line-height: 1.08;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.collaborate-info-card p {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 16px;
}

.collaborate-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.collaborate-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
}

.collaborate-points i {
  color: var(--accent);
  font-size: 18px;
}

/* =========================
   COLLABORATE FORM
   ========================= */
.collaborate-form-wrap {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.collaborate-form-header {
  margin-bottom: 24px;
}

.collaborate-form-header h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0;
}

/* =========================
   CSR SECTION
   ========================= */
.csr-main-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 36px;
}

.csr-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.csr-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(240,93,155,0.14), rgba(75,13,109,0.14));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.csr-main-card h2 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

.csr-main-card p {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 16px;
}

.csr-highlight-text {
  color: #2e2e2e !important;
  font-weight: 800;
  margin-top: 10px;
}

/* =========================
   CSR CATEGORY CARD
   ========================= */
.csr-category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(75, 13, 109, 0.08);
  height: 100%;
  transition: all 0.35s ease;
}

.csr-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(75, 13, 109, 0.13);
}

.csr-category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,93,155,0.14), rgba(75,13,109,0.14));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.csr-category-card h5 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

/* =========================
   CSR CONTACT BOX
   ========================= */
.csr-contact-box {
  margin-top: 28px;
  background: linear-gradient(135deg, #faf7fc, #fff);
  border: 1px solid #efe7f5;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #4d4d4d;
  font-weight: 700;
}

.csr-contact-box i {
  color: var(--accent);
  margin-right: 10px;
}

.csr-contact-box a {
  color: var(--primary);
  font-weight: 800;
}

.csr-contact-box a:hover {
  color: var(--accent);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .collaborate-info-card h2,
  .csr-main-card h2 {
    font-size: 34px;
  }

  .collaborate-form-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .collaborate-info-card,
  .collaborate-form-wrap,
  .csr-main-card {
    padding: 26px;
  }

  .csr-header {
    align-items: flex-start;
  }

  .csr-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .collaborate-info-card,
  .collaborate-form-wrap,
  .csr-main-card {
    padding: 20px;
    border-radius: 18px;
  }

  .collaborate-info-card h2,
  .csr-main-card h2 {
    font-size: 28px;
  }

  .collaborate-form-header h3 {
    font-size: 26px;
  }

  .collaborate-info-card p,
  .csr-main-card p,
  .csr-contact-box {
    font-size: 14px;
  }

  .csr-header {
    flex-direction: column;
    gap: 14px;
  }

  .csr-category-card h5 {
    font-size: 18px;
  }
}

/* =========================
   BOARD HERO
   ========================= */
.board-hero-bg {
  background-image: url("/assets/images/board/board-banner.jpg");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}

/* =========================
   BOARD INTRO
   ========================= */
.board-intro-card {
  max-width: 980px;
  margin: 35px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  text-align: center;
}

.board-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #424242;
}

/* =========================
   BOARD CARD
   ========================= */
.board-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  height: 100%;
  position: relative;
}

.board-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(75, 13, 109, 0.14);
}

.board-card-image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff6fb, #f7f4ff);
}

.board-card-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.board-card:hover .board-card-image {
  transform: scale(1.06);
}

.board-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(75,13,109,0.08), rgba(75,13,109,0.60));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
}

.board-card:hover .board-card-overlay {
  opacity: 1;
}

.board-card-overlay span {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.board-card-content {
  padding: 22px 20px 24px;
  text-align: center;
}

.board-card-content h4 {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.board-card-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  font-weight: 700;
}

/* =========================
   BOARD MODAL
   ========================= */
.board-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.board-modal.show {
  display: block;
}

.board-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 22, 0.82);
  backdrop-filter: blur(6px);
}

.board-modal-dialog {
  position: relative;
  width: min(1100px, calc(100% - 30px));
  margin: 60px auto;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  z-index: 2;
  overflow: hidden;
}

.board-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f7f2fb;
  color: var(--primary);
  z-index: 3;
  font-size: 18px;
}

.board-modal-close:hover {
  background: var(--primary);
  color: #fff;
}

.board-modal-body {
  padding: 34px;
}

.board-modal-image-wrap {
  background: linear-gradient(135deg, #fff6fb, #f7f4ff);
  border-radius: 22px;
  overflow: hidden;
}

.board-modal-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.board-modal-content {
  padding-top: 6px;
}

.board-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240,93,155,0.14), rgba(75,13,109,0.14));
  color: var(--accent);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.board-modal-content h3 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.board-modal-content h5 {
  font-size: 22px;
  font-weight: 800;
  color: #242424;
  margin-bottom: 8px;
}

.board-modal-org {
  font-size: 15px;
  line-height: 1.8;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0;
}

.board-modal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,93,155,0.45), rgba(75,13,109,0.08), transparent);
  margin: 20px 0;
}

.board-modal-content p {
  font-size: 15px;
  line-height: 2;
  color: #555;
}

/* =========================
   BOARD RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .board-card-content h4 {
    font-size: 24px;
  }

  .board-modal-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .board-card-image {
    height: 320px;
  }

  .board-modal-dialog {
    margin: 30px auto;
  }

  .board-modal-body {
    padding: 24px;
  }

  .board-modal-image {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .board-intro-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .board-intro-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .board-card-image {
    height: 280px;
  }

  .board-card-content h4 {
    font-size: 22px;
  }

  .board-card-content p {
    font-size: 13px;
  }

  .board-modal-dialog {
    width: calc(100% - 20px);
    margin: 15px auto;
    border-radius: 20px;
  }

  .board-modal-body {
    padding: 18px;
  }

  .board-modal-image {
    height: 280px;
  }

  .board-modal-content h3 {
    font-size: 26px;
  }

  .board-modal-content h5 {
    font-size: 18px;
  }

  .board-modal-content p,
  .board-modal-org {
    font-size: 14px;
  }
}

/* =========================
   CONTACT HERO
   ========================= */
.contact-hero-bg {
  background-image: url("/assets/images/contact/contact-banner.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* =========================
   CONTACT MAIN
   ========================= */
.contact-info-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  height: 100%;
}

.contact-info-card h2 {
  font-size: 42px;
  line-height: 1.08;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-lead-text {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 22px;
}

.contact-office-block {
  margin-bottom: 24px;
}

.contact-office-block h4 {
  font-size: 28px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 12px;
}

.contact-office-block h4 i {
  color: var(--accent);
}

.contact-office-block p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #4e4e4e;
  font-weight: 600;
}

.contact-links-box {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #faf7fc, #fff);
  border: 1px solid #efe8f5;
  border-radius: 14px;
  padding: 15px 16px;
  color: #444;
  font-weight: 700;
}

.contact-link-item i {
  color: var(--accent);
  font-size: 18px;
}

.contact-link-item span {
  color: var(--primary);
}

.contact-link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(75, 13, 109, 0.08);
}

/* =========================
   CONTACT FORM
   ========================= */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h3 {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-header p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

/* =========================
   CONTACT HIGHLIGHT STRIP
   ========================= */
.contact-highlight-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
}

.contact-highlight-box {
  text-align: center;
  color: #fff;
  padding: 20px 16px;
}

.contact-highlight-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.contact-highlight-box h4 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-highlight-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

/* =========================
   CONTACT MAP
   ========================= */
.contact-map-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.contact-map-placeholder {
  margin-top: 28px;
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(135deg, #faf7fc, #f7f4ff);
  border: 1px dashed #d8c9e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.contact-map-placeholder i {
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-map-placeholder h4 {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-map-placeholder p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

/* =========================
   CONTACT RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .contact-info-card h2,
  .contact-form-header h3 {
    font-size: 32px;
  }

  .contact-office-block h4,
  .contact-highlight-box h4,
  .contact-map-placeholder h4 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .contact-info-card,
  .contact-form-wrap,
  .contact-map-card {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .contact-info-card,
  .contact-form-wrap,
  .contact-map-card {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-info-card h2,
  .contact-form-header h3 {
    font-size: 26px;
  }

  .contact-office-block h4,
  .contact-highlight-box h4,
  .contact-map-placeholder h4 {
    font-size: 22px;
  }

  .contact-lead-text,
  .contact-office-block p,
  .contact-form-header p,
  .contact-map-placeholder p {
    font-size: 14px;
  }

  .contact-link-item {
    align-items: flex-start;
  }

  .contact-highlight-box p {
    font-size: 13px;
  }

  .contact-map-placeholder {
    min-height: 240px;
    padding: 20px;
  }
}

.mega-dropdown {
  position: relative;
}

.premium-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s ease;
  pointer-events: none;
  margin-top: 0;
}

.mega-dropdown:hover .premium-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 991px) {
  .premium-dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .mega-dropdown .dropdown-menu.show {
    display: block;
  }
}

.new-clean-footer {
  background: #f7f7f7;
  padding: 65px 0 24px;
  border-top: 1px solid #ececec;
}

.new-clean-footer .footer-top {
  padding-bottom: 26px;
}

.new-clean-footer .footer-logo-img {
  height: 76px;
  width: auto;
  margin-bottom: 16px;
}

.new-clean-footer .footer-brand p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  max-width: 320px;
  margin-bottom: 18px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a5a5a;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 16px;
}

.footer-contact-item span {
  color: var(--primary);
}

.footer-contact-item:hover {
  transform: translateX(3px);
}

.new-clean-footer .footer-links h6 {
  color: #111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.new-clean-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-clean-footer .footer-links ul li {
  margin-bottom: 12px;
}

.new-clean-footer .footer-links ul li a {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.new-clean-footer .footer-links ul li a:hover {
  color: var(--primary);
}

.new-clean-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.new-clean-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ececec;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.new-clean-footer .footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.new-clean-footer .footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 14px;
}

.new-clean-footer .footer-bottom p {
  color: #7a7a7a;
  font-size: 13px;
  margin: 0;
}

.new-clean-footer .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.new-clean-footer .footer-bottom-links a {
  color: #7a7a7a;
  font-size: 13px;
  font-weight: 600;
}

.new-clean-footer .footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 767px) {
  .new-clean-footer {
    padding: 50px 0 20px;
  }

  .new-clean-footer .footer-links h6 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .new-clean-footer .footer-brand p,
  .footer-contact-item,
  .new-clean-footer .footer-links ul li a {
    font-size: 13px;
  }

  .new-clean-footer .footer-bottom {
    text-align: center;
  }

  .new-clean-footer .footer-bottom-links {
    justify-content: center;
    gap: 14px;
  }
}



/* =========================
   DONATE HERO
   ========================= */
.donate-hero-bg {
  background-image: url("/assets/images/donate/donate-banner.jpg");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

/* =========================
   ACTIVE DONATE BUTTON
   ========================= */
.active-donate-btn {
  box-shadow: 0 12px 30px rgba(75, 13, 109, 0.22);
}

/* =========================
   DONATE INTRO
   ========================= */
.donate-intro-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 38px;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}

.donate-intro-card h2 {
  font-size: 44px;
  line-height: 1.18;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.donate-intro-card p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 14px;
}

.donate-intro-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   DONATE FORM
   ========================= */
.donate-form-wrap {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.donate-form-top-note {
  background: linear-gradient(135deg, #faf7fc, #f5effa);
  border-bottom: 1px solid #ece2f2;
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  font-weight: 600;
}

.donate-form-header {
  padding: 30px 30px 10px;
}

.donate-form-header h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.donate-form-header p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

.donation-form {
  padding: 20px 30px 34px;
}

/* =========================
   HOW TO DONATE
   ========================= */
.donation-methods-card,
.donation-qr-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
  height: 100%;
}

.donation-method-block + .donation-method-block {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

.donation-method-block h4 {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
}

.donation-method-block h4 i {
  color: var(--accent);
}

.donation-method-block p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #555;
}

.donation-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.donation-detail-list li {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 6px;
}

.donation-qr-card h3 {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.donation-qr-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.qr-box {
  margin: 22px auto 16px;
  max-width: 280px;
  border-radius: 20px;
  background: linear-gradient(135deg, #faf7fc, #f7f3ff);
  padding: 18px;
  box-shadow: inset 0 0 0 1px #ece2f2;
}

.qr-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.qr-note {
  margin-bottom: 0 !important;
  font-size: 14px !important;
  color: #777 !important;
  text-align: center;
}

/* =========================
   FOREIGN NOTE
   ========================= */
.foreign-note-card {
  background: linear-gradient(135deg, #faf7fc, #fff);
  border: 1px solid #ece1f2;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  font-weight: 600;
}

/* =========================
   DONATE RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
  .donate-intro-card h2,
  .donate-form-header h2,
  .donation-qr-card h3 {
    font-size: 34px;
  }

  .donation-method-block h4 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .donate-intro-card,
  .donation-methods-card,
  .donation-qr-card {
    padding: 26px;
  }

  .donate-form-header,
  .donation-form {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .donate-intro-card,
  .donation-methods-card,
  .donation-qr-card {
    padding: 20px;
    border-radius: 18px;
  }

  .donate-intro-card h2,
  .donate-form-header h2,
  .donation-qr-card h3 {
    font-size: 26px;
  }

  .donation-method-block h4 {
    font-size: 20px;
  }

  .donate-intro-card p,
  .donation-method-block p,
  .donation-detail-list li,
  .donation-qr-card p,
  .foreign-note-card,
  .donate-form-top-note,
  .donate-form-header p {
    font-size: 14px;
  }

  .donate-form-top-note,
  .donate-form-header,
  .donation-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .qr-box {
    max-width: 220px;
    padding: 14px;
  }
}

.gallery-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img,
.gallery-lightbox video {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  z-index: 100000;
}

.sponsor-section {
  margin-top: 60px;
  padding: 35px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.sponsor-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.sponsor-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: sponsorScroll 35s linear infinite;
}

.sponsor-logo {
  width: 200px;
  height: 200px;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, z-index 0.3s ease;
  z-index: 1;
}

.sponsor-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  z-index: 999;
}

.sponsor-logo:hover img {
  transform: scale(2.4);
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}
@keyframes sponsorScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .sponsor-track {
    gap: 16px;
    animation-duration: 28s;
  }

  .sponsor-logo,
  .sponsor-logo img {
    width: 90px;
    height: 90px;
    min-width: 90px;
  }
}

/* =========================
   FINAL HOME HERO RESPONSIVE FIX
   Add this at bottom of style.css
   ========================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #cfe1ea;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
}

.min-hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 70px;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-section,
  .min-hero {
    min-height: 75vh;
  }

  .hero-image-bg {
    background-size: cover;
    background-position: center top;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section,
  .min-hero {
    min-height: 58vh;
  }

  .hero-image-bg {
    background-size: contain;
    background-position: center top;
    background-color: #cfe1ea;
  }
}

/* Mobile hero image */
@media (max-width: 767px) {
  .hero-image-bg {
    background-image: url("/assets/images/hero-mobile.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero-section,
  .min-hero {
    min-height: 100vh;
  }
}