.snap-section {
    background: #f0f4f8;
    padding: 60px 0;
    border-top: 1px solid #dde4ec;
    border-bottom: 1px solid #dde4ec;
}

.snap-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.snap-left {
    flex: 1.3;
    padding-right: 50px;
}

.snap-heading {
    font-size: 30px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 25px 0;
}

.snap-heading strong {
    font-weight: 700;
}

.snap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
    column-gap: 40px;
}

.snap-stat h3 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1;
}

.snap-stat p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.snap-line {
    width: 1px;
    height: 180px;
    background: #c0cdd8;
    flex-shrink: 0;
    margin: 0 50px;
}

.snap-right {
    flex: 1;
}

.snap-right-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px 0;
}

.snap-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.snap-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.65;
}

.snap-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7d32;
    flex-shrink: 0;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .snap-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 36px;
    }

    .snap-left {
        padding-right: 0;
        width: 100%;
    }

    .snap-line {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .snap-right {
        width: 100%;
    }

    .snap-stat h3 {
        font-size: 30px;
    }
}/* ===== VISION & MISSION SECTION ===== */
.vm-section {
    background: #ffffff;
    padding: 70px 0;
}

.vm-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===== LEFT ===== */
.vm-left {
    flex: 1.1;
}

.vm-vision {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8edf2;
}

.vm-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    position: relative;
    padding-left: 16px;
}

.vm-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 70%;
    width: 4px;
    background: #2e7d32;
    border-radius: 2px;
}

.vm-vision-text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    padding-left: 16px;
}

.vm-sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    padding-left: 16px;
    position: relative;
}

.vm-sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 70%;
    width: 4px;
    background: #e65100;
    border-radius: 2px;
}

.vm-mission-list {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vm-mission-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vm-mission-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2e7d32;
    flex-shrink: 0;
    margin-top: 7px;
}

/* ===== RIGHT IMAGE GRID ===== */
.vm-right {
    flex: 1;
}

.vm-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vm-img-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.25s;
}

.vm-img-card:hover {
    transform: translateY(-4px);
}

.vm-img-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.vm-img-card p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .vm-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .vm-img-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vm-img-card img {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .vm-img-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vm-img-card img {
        height: 110px;
    }
}
/* ===== CSR SECTION ===== */
.csr-section {
    position: relative;
    background: url('/image/newbscs.jpg') center center / cover no-repeat;
    min-height: 330px;
}

/* ===== DARK OVERLAY ===== */
.csr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 20, 50, 0.92) 0%,
        rgba(10, 20, 50, 0.85) 60%,
        rgba(10, 20, 50, 0.80) 100%
    );
    display: flex;
    align-items: center;
}

.csr-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== LEFT ===== */
.csr-left {
    flex: 1;
}

.csr-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.csr-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* ===== LOGO ROW ===== */
.csr-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.csr-logo-item {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    transition: color 0.2s;
    cursor: default;
}

.csr-logo-item:hover {
    color: #ffffff;
}

/* Use images instead of text if you have logo images */
.csr-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.csr-logo-img:hover {
    opacity: 1;
}

/* ===== RIGHT BUTTON ===== */
.csr-right {
    flex-shrink: 0;
}

.csr-btn {
    display: inline-block;
    padding: 13px 30px;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.csr-btn:hover {
    background: #ffffff;
    color: #1a1a2e;
    border-color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .csr-inner {
        flex-direction: column;
        padding: 36px 24px;
        align-items: flex-start;
        gap: 24px;
    }

    .csr-title {
        font-size: 18px;
    }

    .csr-logos {
        gap: 20px;
    }

    .csr-logo-item {
        font-size: 13px;
    }
}

/* ===== OUR PRESENCE SECTION ===== */
.presence-section {
    background: #faf7f2;
    padding: 70px 0;
}

.presence-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER ===== */
.presence-header {
    text-align: center;
    margin-bottom: 48px;
}

.presence-title {
    font-size: 32px;
    font-weight: 700;
    color: #d4820a;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
    margin: 0 0 14px 0;
}

.presence-underline {
    width: 60px;
    height: 3px;
    background: #d4820a;
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== GRID ===== */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ===== CARD ===== */
.presence-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1.5px solid #e8e0d4;
    border-radius: 12px;
    transition: all 0.25s;
    cursor: default;
}

.presence-card:hover {
    border-color: #d4820a;
    box-shadow: 0 4px 16px rgba(212, 130, 10, 0.12);
    transform: translateY(-2px);
}

.presence-card.active {
    border-color: #d4820a;
    background: #fff8ef;
}

.presence-icon {
    color: #d4820a;
    font-size: 18px;
    flex-shrink: 0;
}

.presence-card span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .presence-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .presence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .presence-title {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .presence-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .presence-card {
        padding: 14px 12px;
    }
}
.swiper-slide{
    height: 400px;
}
.swiper-wrapper{
    height: auto;
}


.csr-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.28s ease;
}

.csr-logo-item:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.csr-logo-item img {
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(1) saturate(0.9);
  transition: filter 0.28s ease;
}

.csr-logo-item:hover img {
  filter: brightness(1.15) saturate(1.1);
}
/* ── OVERLAY ── */
.gts-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.2s ease;
}
.gts-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── MODAL ── */
.gts-modal {
  background: #fff; border-radius: 10px;
  width: 100%; max-width: 520px; max-height: 90vh;
  overflow-y: auto; position: relative;
  animation: slideUp 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── HEADER ── */
.gts-modal-header { padding: 28px 32px 20px; border-bottom: 1px solid #eee; position: relative; }
.gts-modal-header.donate    { border-top: 5px solid #1a7a6e; border-radius: 10px 10px 0 0; }
.gts-modal-header.volunteer { border-top: 5px solid #c8a020; border-radius: 10px 10px 0 0; }
.gts-modal-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.gts-modal-icon.donate    { background: #e8f7f3; color: #1a7a6e; }
.gts-modal-icon.volunteer { background: #fef9e7; color: #c8a020; }
.gts-modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: 0.5px; }
.gts-modal-title.donate    { color: #1a7a6e; }
.gts-modal-title.volunteer { color: #c8a020; }
.gts-modal-sub { font-size: 13px; color: #888; margin-top: 4px; }
.gts-close {
  position: absolute; top: 20px; right: 20px;
  background: #f5f5f5; border: none; width: 32px; height: 32px;
  border-radius: 50%; font-size: 16px; cursor: pointer; color: #555;
  display: flex; align-items: center; justify-content: center;
}
.gts-close:hover { background: #e0e0e0; }

/* ── BODY ── */
.gts-modal-body { padding: 24px 32px 32px; }
.gts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.gts-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.gts-field label { font-size: 12.5px; font-weight: 600; color: #444; letter-spacing: 0.04em; text-transform: uppercase; }
.gts-field input, .gts-field select, .gts-field textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid #ddd;
  border-radius: 6px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: #333; background: #fafafa; outline: none;
  transition: border-color 0.2s;
}
.gts-field input:focus, .gts-field select:focus, .gts-field textarea:focus { border-color: #1a7a6e; background: #fff; }
.gts-field.volunteer input:focus, .gts-field.volunteer select:focus, .gts-field.volunteer textarea:focus { border-color: #c8a020; }
.gts-field textarea { resize: vertical; min-height: 80px; }

/* Amount pills */
.amount-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.amount-pill { padding: 7px 16px; border: 1.5px solid #ddd; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; background: #fafafa; color: #555; transition: all 0.2s; }
.amount-pill:hover, .amount-pill.selected { background: #1a7a6e; color: #fff; border-color: #1a7a6e; }
.amount-label { font-size: 12.5px; font-weight: 600; color: #444; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; display: block; }

/* Checkbox */
.gts-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #666; margin-bottom: 18px; line-height: 1.5; }
.gts-check input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: #1a7a6e; }
.gts-check.volunteer input[type=checkbox] { accent-color: #c8a020; }

/* Submit */
.gts-submit { width: 100%; padding: 14px; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s; }
.gts-submit.donate    { background: #1a7a6e; color: #fff; }
.gts-submit.donate:hover    { background: #145f55; }
.gts-submit.volunteer { background: #c8a020; color: #fff; }
.gts-submit.volunteer:hover { background: #a8841a; }

.gts-divider-line { border: none; border-top: 1px solid #eee; margin: 18px 0; }
.gts-section-label { font-size: 11px; font-weight: 700; color: #aaa; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; display: block; }

.hero-content {
    background: none; /* ✅ no background */
    border: none;
    padding: 126px 2px;
    margin-left: 75px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-width: 520px;
}
.hero {
  
  padding: 100px 0px 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/image/charity_banner.webp') center/cover no-repeat;
  z-index: -1;
  background-position: center top;
  filter: grayscale(100%);
}
/* ✅ The dark effect comes from the hero overlay gradient — not the content box */
.hero-overlay {
   background: linear-gradient(to right, rgb(247 247 247 / 75%) 0%, rgb(255 248 248 / 88%) 50%, rgb(255 255 255 / 0%) 100%);
}

/* ✅ Text color dark since bg is light/white */
.hero-content h1 {
    color: #1a1a2e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-content p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-btn:first-child {
    background: #2e7d32;
    color: #fff;
    border: 2px solid #2e7d32;
}

.hero-btn:last-child {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.hero-btn:last-child:hover {
    background: #1a1a2e;
    color: #fff;
}