/* ===== FOOTER ===== */

.footer-main {
    background: #0a0a0a;
    color: #ffffff;
    font-size: 14px;
}

/* Top footer */
.footer-top {
    background: #3f7797;
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
}

.footer-text,
.footer-note,
.footer-address {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-col h4 {
    margin-bottom: 14px;
    font-size: 16px;
}

/* Form */
.footer-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: none;
}

.footer-form button {
    width: 100%;
    padding: 10px;
    background: #f7941d;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.footer-form button:hover {
    background: #e67605;
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Badges */
.footer-badges {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    justify-content: flex-start;
}

.footer-badges img {
    height: 60px;
}

/* Social */
.footer-social {
    text-align: center;
    padding: 20px 0;
}

.footer-social a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 18px;
}

/* Bottom bar */
.footer-bottom {
    background: #0a0a0a;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        justify-content: center;
    }
}




/* ===== SPONSORS / AS SEEN IN ===== */
.sponsors-section {
  background: #ffffff;
  padding: 80px 24px 90px;
  text-align: center;
}

.sponsors-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-quote {
  font-size: 2.2rem;
  color: #7da6b6;
  font-weight: 500;
  margin-bottom: 10px;
}

.sponsors-source {
  font-family: "Georgia", serif;
  font-size: 1.9rem;
  color: #9fbfcb;
  margin-bottom: 50px;
}

.as-seen-in {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #7da6b6;
  margin-bottom: 30px;
}

/* LOGO GRID */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 42px;
}

.sponsor-logo {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Both images stacked */
.sponsor-logo img {
  max-height: 42px;
  max-width: 100%;
  transition: opacity 0.35s ease, filter 0.35s ease;
  position: absolute;
}

/* Grey visible by default */
.sponsor-logo img.color {
  opacity: 1;
  filter: grayscale(100%) brightness(1.2);
}

.sponsor-logo:hover img.color {
  filter: grayscale(0%);
}

/* Color hidden by default */
.sponsor-logo img.color {
  opacity: 0;
}

/* Hover Effect */
.sponsor-logo:hover img.grey {
  opacity: 0;
}

.sponsor-logo:hover img.color {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .sponsors-quote {
    font-size: 1.6rem;
  }

  .sponsors-source {
    font-size: 1.4rem;
  }
}


    /* ===== AID PROVIDED GRID SLIDER ===== */

.aid-section {
    padding: 80px 20px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.aid-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 35px;
    color: #0a0a0a;
}

.aid-slider {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.aid-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
}

/* Card */
.aid-card {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.aid-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.aid-card img {
    transition: transform 0.4s ease;
}

.aid-card:hover img {
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 992px) {
    .aid-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .aid-card {
        flex: 0 0 100%;
    }

    .aid-card img {
        height: 220px;
    }
}

/* ===== AID OVERLAY CAPTION ===== */

.aid-card {
    position: relative;
}

/* Gradient overlay */
.aid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.75),
        rgba(10,10,10,0)
    );
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Subtle hover effect */
.aid-card:hover .aid-caption {
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.85),
        rgba(10,10,10,0.15)
    );
}

