
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-text);
}
.body-back{
    background: linear-gradient(to bottom, white 40%, var(--primary-blue) 80%);
}

.card {
  margin-bottom: 20px;
}
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: none;
}

.modal-title {
  font-weight: bold;
}


:root {
  --primary-blue: #2A5C8B;
  --accent-orange: #F4A261;
  --dark-text: #2F3640;
}



.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('https://images.unsplash.com/photo-1582213782119-d00c58de3c0f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: bold;
  animation: fadeInDown 1.5s ease-in-out;
}

.hero-section p {
  font-size: 1.5rem;
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.impact-number {
  font-size: 2.5rem;
  color: var(--primary-blue);
  font-weight: bold;
}

.cause-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cause-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 40px 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-orange);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-list {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-list a {
  display: block;
  padding: 10px;
  margin: 5px 0;
  background: white;
  border-radius: 5px;
  text-decoration: none;
  color: var(--dark-text);
  transition: background 0.3s ease;
}

.location-list a:hover {
  background: var(--primary-blue);
  color: white;
}
.hover-text-white:hover {
color: #fff !important;
transition: color 0.3s ease;
}
/* Footer Hover Animations */
.footer a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #ffffff !important; /* Change to your desired hover color */
  transform: translateY(-3px); /* Slight upward lift on hover */
}

/* Social Media Icons Hover Animation */
.footer .fa-facebook:hover {
  color: #1877f2 !important; /* Facebook blue */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.footer .fa-twitter:hover {
  color: #1da1f2 !important; /* Twitter blue */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.footer .fa-instagram:hover {
  color: #e4405f !important; /* Instagram pink */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Quick Links Hover Animation */
.footer .list-unstyled li a:hover {
  padding-left: 5px; /* Add a slight padding shift on hover */
}

/* Divider Hover Effect (optional) */
.footer hr {
  transition: opacity 0.3s ease;
}

.footer:hover hr {
  opacity: 0.8; /* Change opacity on hover */
}
