:root {
  --primary-color: #0165b7;
  --secondary-color: #a3161d;
  --text-color: #0f172a;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.section-title {
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

.section-subtitle {
  font-family: 'Oleo Script', cursive;
  color: var(--primary-color) !important;
  font-size: 1.1rem;
}

.section-subtitle-primary {
  font-family: "Oleo Script", cursive;
  color: white;
  font-size: 1.1rem;
}


/* Topbar */
.topbar {
  background-color: #0f172a;
  color: white;
  padding: 5px 0;
}

.topbar i {
  font-size: 18px;
  margin: 0 10px;
  color: white;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  transition: all 0.3s;
  margin: 0 5px;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}

.donate-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 20px;
  /*border-radius: 25px;*/
  transition: 0.4s;
}

.donate-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 0 15px var(--primary-color);
}

.donate1-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.donate1-btn:hover {
  background-color: white;
  color: var(--text-color);
}


/* Sticky Navbar */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 40px;
  padding-bottom: 0px;
}

.footer a {
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer a:hover {
  text-decoration: underline;
  padding-left: 10px;
}

.bottom-bar {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 10px 0;

}

/* Base styles */
.icon-hover {
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.heading {
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Unified hover on row */
.hover-effect:hover .icon-hover {
  color: var(--secondary-color);
  transform: scale(1.3);
}

.hover-effect:hover .heading {
  color: var(--secondary-color);
  transform: scale(1.02);
}

/*Frequently Asked Question*/
.faq-btn {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: 50rem !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-btn:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--primary-color);
}

.accordion-button::after {
  content: '\002B';
  /* Plus sign */
  font-weight: bold;
  font-size: 1.25rem;
  transform: none;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '\2212';
  /* Minus sign */
}

.faq-answer {
  /* background-color: #f8f9fa; */
  /* same as bg-light */
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  margin-top: -20px;
  /* pull up under the button */
  padding-top: 0.75rem;
  position: relative;
  z-index: 0;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

/* who we help */
.transform-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
}

.transform-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
  color: var(--primary-color)
}

/* gallery */
.gallery-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Makes it 1:1 ratio */
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* contact us form */
#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #9ca3af;
  /* Tailwind's slate-400-like */
  font-size: 0.95rem;
}

#contact-form .form-control {
  background-color: white;
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 101, 183, 0.2);
}



@media (max-width: 576px) {
  .volunteer-name {
    font-size: 0.70rem;
  }

  .volunteer-role {
    font-size: 0.55rem;
  }
}

/* .stat-title {
    font-family: 'Merriweather Sans', sans-serif;
    color: var(--primary-color);
    font-size: 1.1rem;
  }

  .stat-count {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
  }

  .stat-card {
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  } */