* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer */

footer {
  background: #0f3d2e;
  color: white;
  padding: 60px 50px 40px;
  position: relative;
  overflow: hidden;
}

.footer-section a {
  color: white; /* <-- Make sure this is white */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 8px #00ff66; /* Optional green glow on hover */
  color: white; /* <-- Ensure color stays white on hover too */
}

.footer-links a {
  color: white; /* <-- Make sure this is white */
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 8px #00ff66; /* Green glow */
  color: white; /* <-- Force it white on hover */
}

/* Grid layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 40px;
}

/* Headings */
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #00b44e;
  font-weight: 700;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #00ff66;
  transition: width 0.3s ease;
}

.footer-section h4:hover::after {
  width: 50px;
}

/* List items with icons */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section ul li i {
  color: #00b44e;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li:hover i {
  transform: scale(1.2);
}

/* Donate button */
.donate-btn {
  display: inline-block;
  background: #00b44e;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  margin: 10px 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.donate-btn:hover {
  background: #007a2e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 180, 78, 0.5);
}

/* Tax info */
.tax-info {
  font-size: 12px;
  color: #a2d5a1;
  margin-top: 5px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00b44e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b44e;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  background: rgba(0, 180, 78, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00b44e;
  color: white;
  transform: translateY(-5px) scale(1.2);
  box-shadow: 0 8px 20px rgba(0, 180, 78, 0.5);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 180, 78, 0.3);
  padding-top: 25px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #00b44e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-copyright {
  color: #a2d5a1;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-section {
    margin-bottom: 30px;
  }
}

/* SECTION BASE */
.contact-section {
  padding: 60px 6%;
  background: #ffffff;
  animation: fadeIn 1s ease-in-out;
}

/* FADE-IN SECTION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-header .tag {
  background: #c9f7d8;
  padding: 6px 14px;
  border-radius: 20px;
  color: #04723b;
  font-weight: 600;
  transition: 0.3s;
}

.contact-header .tag:hover {
  background: #0d9352;
  color: white;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* CARD BASE */
.custom-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  animation: floatUp 1s ease;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* GREEN GRADIENT CARD */
.green-gradient {
  background: linear-gradient(135deg, #0d9651, #067b41);
  color: white;
  position: relative;
  overflow: hidden;
}

/* ANIMATED GRADIENT EFFECT */
.green-gradient::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  top: -50%;
  left: -50%;
  transform: rotate(-25deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  from {
    transform: translateX(-200%) rotate(-25deg);
  }
  to {
    transform: translateX(200%) rotate(-25deg);
  }
}

.green-gradient p {
  color: #eafff1;
  position: relative;
  z-index: 2;
}

/* FORM */
.contact-form h3 {
  margin-bottom: 20px;
  color: #0a3d1e;
}

.contact-form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #0a3d1e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  margin-top: 6px;
  font-size: 15px;
  transition: 0.3s;
}

/* INPUT FOCUS GLOW */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0caf61;
  box-shadow: 0 0 8px rgba(13, 148, 81, 0.4);
  transform: translateY(-3px);
}

/* SEND BUTTON */
.send-btn {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, #0b8e4c, #046d36);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* BUTTON SHINE EFFECT */
.send-btn::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 150%;
  background: rgba(255, 255, 255, 0.5);
  top: -25%;
  left: -20%;
  transform: rotate(25deg);
  transition: 0.5s;
}

.send-btn:hover::after {
  left: 120%;
}

.send-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 142, 76, 0.4);
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.social-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  transform: scale(1.4) rotate(10deg);
  color: #ffffff;
}

/* EMERGENCY CARD */
.emergency {
  text-align: center;
}

.emergency-btn {
  margin-top: 10px;
  background: linear-gradient(135deg, #0ca45c, #04793d);
  padding: 12px 24px;
  border-radius: 10px;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.emergency-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(7, 112, 52, 0.4);
}

/* VISIT CARD */
.visit {
  margin-top: 25px;
  background-color: linear-gradient(135deg, #14da5d, #ffffff);
}

/* MAP */
.map {
  margin-top: 30px;
  height: 350px;
  background: linear-gradient(135deg, #e9fef2, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.map:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  text-align: center;
  color: #0a3d1e;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.map-placeholder i {
  font-size: 40px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------
   GLOBAL TEXT GLOW + SMOOTH FADE ENTRANCE
-----------------------------------------*/
.donate-section h2,
.donate-section p,
.donate-card {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------------------------------------
   GRADIENT TEXT FOR HEADINGS
-----------------------------------------*/
.donate-section h2 {
  background: linear-gradient(90deg, #00b347, #00ff8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---------------------------------------
   MAKE DESCRIPTION TEXT MORE ATTRACTIVE
-----------------------------------------*/
.donate-section p {
  font-size: 1.1rem;
  color: #eaffea;
  line-height: 1.7;
}

/* ---------------------------------------
   CARD ENHANCEMENTS — SPACIOUS + GLOW
-----------------------------------------*/
.donate-card {
  padding: 35px !important; /* More space */
  border-radius: 20px;
  background: rgba(0, 255, 120, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 120, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Card Hover Animation */
.donate-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 120, 0.5);
}

/* Card Icons Animation */
.donate-card i {
  font-size: 42px;
  color: #00ff9d;
  animation: iconBounce 1.8s infinite ease-in-out;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------------------------------------
   BUTTON — POWERFUL GRADIENT + HOVER GLOW
-----------------------------------------*/
.donate-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00b347, #00ff8f);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 255, 120, 0.3);
}

/* Hover effect */
.donate-btn:hover {
  background: linear-gradient(135deg, #00ff8f, #00b347);
  box-shadow: 0 0 35px rgba(0, 255, 120, 0.7);
  transform: translateY(-5px);
}

/* ---------------------------------------
   FLOATING ANIMATED ELEMENTS INSIDE CARDS
-----------------------------------------*/
.donate-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(0, 255, 120, 0.15);
  top: -30px;
  right: -30px;
  border-radius: 50%;
  animation: floatCircle 4s infinite linear;
}

@keyframes floatCircle {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

/* Make Sure Cards Don’t Look Conjested */
.donate-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #caffd6;
}

.donate-card p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #eaffea;
}

.contact-card {
  background: rgba(0, 255, 120, 0.12);
  padding: 40px !important;
  border-radius: 22px;
  border: 1px solid rgba(0, 150, 80, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 120, 0.25);
  backdrop-filter: blur(8px);
  transition: 0.4s ease !important;
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgba(0, 255, 120, 0.6);
}

.contact-card i {
  font-size: 55px !important;
  color: #00b347 !important;
  margin-bottom: 20px !important;
  animation: floatIcon 2.4s infinite ease-in-out;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.contact-section h2,
.contact-title {
  font-size: 3rem !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, #00b347, #00ff9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 10px #00ff9d;
  }
  to {
    text-shadow: 0 0 20px #00b347;
  }
}

.contact-section p {
  font-size: 1.2rem !important;
  color: #003d1f !important;
  line-height: 1.6;
}

.contact-form {
  padding: 40px !important;
  background: rgba(0, 255, 120, 0.12);
  border-radius: 22px;
  border: 1px solid rgba(0, 150, 80, 0.4);
  box-shadow: 0 0 25px rgba(0, 255, 120, 0.3);
  backdrop-filter: blur(10px);
}

.contact-btn {
  background: linear-gradient(135deg, #00b347, #00ff9d) !important;
  border: none !important;
  padding: 15px !important;
  width: 100%;
  border-radius: 50px;
  color: white !important;
  font-size: 1.3rem;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #00ff9d;
}

.contact-btn::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.contact-card {
  background: rgba(0, 255, 140, 0.1);
  padding: 45px !important;
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 120, 0.35);
  box-shadow: 0 0 25px rgba(0, 255, 120, 0.35);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 45px rgba(0, 255, 140, 0.6);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #00ff88, #00c460, #008c3e);
  opacity: 0.2;
  z-index: -1;
  filter: blur(25px);
  transition: 0.3s;
}

.contact-card:hover::after {
  opacity: 0.45;
  filter: blur(35px);
}

.contact-card i {
  font-size: 55px;
  margin-bottom: 20px;
  color: #00c060;
  animation: iconFloat 2.2s infinite ease-in-out,
    iconPulse 2s infinite alternate;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes iconPulse {
  0% {
    text-shadow: 0 0 5px #00ff8c;
  }
  100% {
    text-shadow: 0 0 20px #00ff8c;
  }
}

.contact-card p {
  color: #00361c !important;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact-card li:hover {
  color: #00b347;
  transform: translateX(6px);
  transition: 0.3s;
}

.contact-card {
  opacity: 0;
  transform: translateY(40px);
}

.a1 {
  color: white;
}

/* Make the Contact Information card text white */
.contact-info.card.green-gradient,
.contact-info.card.green-gradient h3,
.contact-info.card.green-gradient p,
.contact-info.card.green-gradient strong {
  color: #fff !important;
}


.location-section{
margin-top:60px;
}

.location-header{
text-align:center;
margin-bottom:30px;
}

.location-header h3{
font-size:28px;
font-weight:600;
}

.location-card{
background:#f8f9fa;
padding:25px;
border-radius:10px;
margin-bottom:30px;
}

.location-details h4{
font-size:20px;
margin-bottom:10px;
}

.location-details p{
line-height:1.6;
color:#555;
}

.direction-btn{
display:inline-block;
margin-top:15px;
padding:10px 18px;
background:#2ecc71;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:500;
}

.direction-btn:hover{
background:#27ae60;
}

.map{
height:400px;
border-radius:10px;
overflow:hidden;
}

/* Contact Info Container */

.contact-info{
display:flex;
flex-direction:column;
gap:15px;
max-width:400px;
}

/* Individual Items */

.contact-item{
font-size:16px;
line-height:1.6;
color:#333;
}

/* Links */

.contact-item a{
color:#2ecc71;
text-decoration:none;
font-weight:600;
}

.contact-item a:hover{
text-decoration:underline;
}

/* Tablet */

@media (max-width:768px){

.contact-item{
font-size:15px;
}

}

/* Mobile */

@media (max-width:480px){

.contact-info{
max-width:100%;
}

.contact-item{
font-size:14px;
}

}

.address-text{
color:white;
}

.a1{
color:white !important;
}