*{
      box-sizing: border-box;
    }
  :root {
  --bg-glass: rgba(10, 25, 47, 0.75);
  --text-light: rgba(255,255,255,0.85);
  --text-white: #ffffff;
  
  --primary-color: #ca0506;
  --accent-color: #001f60;
  --secondary-color: #001f60;

  --text-main: #ffffff;
  --text-sub: #cbd5ff;
  --text-muted: #aab3d6;

  --accent-glow: #ff3b47;

  --primary-color-tp: #001f6091;
  --primary-color-light: #ca0506a4;
  
  /* Core Brand */
  --color-primary: #ca0506;
  --color-accent: #001f60;
  --color-accent-soft: rgba(200, 162, 74, 0.15);

  /* Neutrals */
  --color-bg: #ffffff;
  --color-bg-soft: #f7f8fa;
  --color-text: #1f2933;
  --color-text-muted: #6b7280;

  /* Borders & Effects */
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} 

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #a50d17;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}


section {
  padding: 6.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

.section-soft {
  background: var(--color-bg-soft);
}

.section-dark {
  background: var(--color-primary);
  color: #ffffff;
}

.section-divider {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.btn-brand {
  background: var(--color-accent);
  color: #ca0506;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-brand {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background: var(--color-accent-soft);
}


.card {
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 2.25rem;
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
}


.card-accent {
  border-top: 3px solid var(--color-accent);
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

.section-eyebrow {
  color: var(--color-accent);
}

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      margin: 0px auto;
    }
    header {
      background-color: var(--primary-color);
      color: white;
      padding: 1rem 0;
    }
    footer {
      background-color: var(--primary-color);
      color: white;
      padding: 2rem 0;
      margin-top: 3rem;
      text-align: center;
    }

    /* Cusor glow */
    .cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    #ca05068c,
    transparent 60%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

    /* EYEBROW */
.wwa-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.wwa-eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
}

.wwa-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #ca0506, transparent);
}

/* ========
=================
   DONATION
========================= */

.donation-banner {
    background: #0a2c78;
    color: white;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donation-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.donation-left i {
    font-size: 55px;
}

.donation-left h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.donate-btn {
    background: white;
    color: #0a2c78;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
}

/* =========================
   DONATION RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 768px) {
    .admissions-actions {
    flex-direction: column;
    }

    #hero-content_container {
    padding-right: calc(var(--bs-gutter-x) * 1) !important;
    padding-left: calc(var(--bs-gutter-x) * 1) !important;
    }
    .why-section {
        padding: 5rem 1rem;
    }
    .donation-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 30px;
    }

    .donation-left {
        flex-direction: column;
        gap: 15px;
    }

    .donation-left h2 {
        font-size: 30px;
    }

    .donation-left i {
        font-size: 45px;
    }

    .donate-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {

    .donation-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }

    .donation-left {
        flex-direction: column;
        gap: 12px;
    }

    .donation-left i {
        font-size: 40px;
    }

    .donation-left h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .donate-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 6px;
    }
}
