/* Header style */
.head-bg {
  border-radius: 20px 20px 0px 0px;
}

/* hero section started */
/* Fullscreen background image */
.hero-section {
  min-height: 80vh;
  /* Full screen height for desktop and larger devices */
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Padding to ensure content doesn't touch edges */
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    /* 60% of viewport height for mobile devices */
    background-size: cover;
    /* Ensure the image still covers the section */
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
    /* Reduce the height further for very small screens */
  }
}

.hover-bg-button:hover {
  background-color: #003366;
  color: white;
}

/* hero section ended */

/* where go started */
.br-20 {
  border-radius: 20px !important;
}

.h-643 {
  height: 445px;
}

.where-go {
  width: 30px;
  height: 30px;
  background-color: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: -45deg;
}

.img-bottom-text {
  position: absolute;
  bottom: -62px;
  left: 0;
  width: 100%;
  border-radius: 0 0 20px 20px;
  opacity: 0.8;
  padding: 1rem;
}

/* Mobile (small screens below 576px) */
@media (max-width: 575.98px) {
  .img-bottom-text {
    bottom: -18px;
    /* Adjust bottom for mobile */
    padding: 0.75rem;
    /* Adjust padding on smaller screens */
  }
}

/* Tablet (medium screens, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .img-bottom-text {
    bottom: -55px;
    /* Adjust bottom for tablet screens */
    padding: 1rem;
  }
}

/* Desktop (larger screens, 768px and up) */
@media (min-width: 768px) {
  .img-bottom-text {
    bottom: -22px;
    /* Default bottom position for desktop */
    padding: 1.25rem;
  }
}

/* where go ended */

.border-top- {
  border-top: 1px solid #003366 !important;
  border-radius: 0px !important;
  padding-top: 10px;
  width: 100% !important;
}

/* healthcare needed area started */

/* Styling for buttons */
.text-button {
  font-size: 1.1rem;
  /* Adjust the text size for better readability */
  font-weight: 600;
  /* Make text bold for emphasis */
}

/* Add background color for the "Donate Now" button */
.warm-red-bg {
  background-color: #cc0000;
  color: white;
}

/* Hover effect for the other buttons */
.hover\:warm-red:hover {
  background-color: #cc0000;
  color: white;
}

/* Optional: Add some spacing and responsive adjustments */
@media (max-width: 767px) {
  .text-button {
    font-size: 1rem;
  }

  .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .text-button {
    width: 100%;
    /* Full-width on mobile */
    margin-bottom: 10px;
    /* Space between buttons */
  }
}

@media (min-width: 768px) {
  .text-button {
    width: auto;
    /* Allow buttons to be inline on larger screens */
  }
}

.healthcare-img {
  height: 240px;
  width: 400px;
  border-radius: 20px;
  background-size: contain;
}

/* healthcare needed area started */
/* Location Section Start  */
/* body {
  background-color: #003366;
  color: #333333;
  padding: 20px;
} */

.location-section {
  background: #d6e5f4;
  padding: 69px 48px;
}

.locations-title {
  color: #333333;
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}

.locations-card {
  background-color: #e6f2ff;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  margin-bottom: 20px;
}

.locations-map-container {
  width: 100%;
  max-width: 309px;
  height: 309px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #cc0000;
  /* margin: 0 auto; */
  position: relative;
}

.locations-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.locations-place-title {
  color: #003366;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.locations-description {
  color: #333333;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: roboto, sans-serif;
}

.locations-team-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.locations-member-img {
  width: 135px;
  height: 150px;
  border-radius: 20px;
  border: 1px solid gray;
  padding: 2px;
}

.locations-member-name {
  color: #2d3927;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 16px;
}

.locations-member-title {
  color: #2d3927;
  font-size: 14px;
}

.locations-banner-img {
  width: 100%;
  max-width: 370px;
  height: 280px;
  object-fit: fill;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
}

/* Location Section End  */

/* Footer Section Start   */
.footer-wrapper {
  background-color: #e8f4fc;
  /* padding: 50px 0 20px; */
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  width: 40%;
  text-align: center;
}

.footer-right {
  width: 25%;
  padding-top: 0;
}

.footer-brand {
  color: #003366;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Georgia", serif;
  text-align: center;
}

.footer-description {
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: "Roboto", serif;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 25px;
}

.footer-social a {
  color: #003366;
  font-size: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 2px solid #003366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.social-icon i {
  transition: transform 0.5s ease, color 0.5s ease;
}

.social-icon i:hover {
  transform: scale(1.2);
}

.footer-heading {
  color: #333333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a:hover {
  color: #003366;
  font-weight: bolder;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.footer-copyright {
  color: #e63946;
  text-align: center;
  /* margin-top: 40px; */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Footer Section End   */
.card-hover:hover {
  border: 1px solid #003366;
  /* Bootstrap primary color */
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
  /* Matching shadow */
  transition: all 0.3s ease;
}

.card-hover {
  border-radius: 20px !important;
}

.card-body {
  border-radius: 0px 0px 20px 20px !important;
}

.bor-20 {
  border-radius: 20px 20px 0px 0px;
}
