body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .contact-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .contact-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .section-title {
      text-align: center;
      font-weight: 700;
      color: #f7941d;
      margin-bottom: 40px;
    }

    .btn-gold {
      background-color: #FFD700;
      color: #f7941d;
      border: none;
    }

    .btn-gold:hover {
      background-color: #e6c200;
    }

    .map-container {
      border-radius: 16px;
      overflow: hidden;
      height: 400px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .newsletter {
      margin-top: 40px;
    }

    .newsletter input {
      border-radius: 10px 0 0 10px;
      border: 1px solid #ccc;
      padding: 10px;
    }

    .newsletter button {
      border-radius: 0 10px 10px 0;
      background-color: #f7941d;
      color: #fff;
      border: none;
      padding: 10px 20px;
    }

    .newsletter button:hover {
      background-color: #f7941d;
    }

    @media (max-width: 768px) {
      .map-container {
        height: 300px;
      }
    }

    @media (max-width: 576px) {
      .map-container {
        height: 250px;
      }
    }

/*==========================
  FOOTER
==========================*/
.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #e0b000 !important;
  padding-left: 5px;
  text-decoration: underline;
}

.social-icon {
  background-color: #222;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #00cba9;
  color: #e0b000 !important;
  transform: scale(1.2);
}



/*** Nav Bar ***/
.navbar.bg-dark {
    background: linear-gradient(90deg, #004d40, #004d40) !important; /* Bootstrap blue to cyan gradient */
  }

  .navbar .nav-link,
  .navbar .navbar-brand span {
    color: #f8f9fa !important; /* Light text */
  }

  .navbar .nav-link:hover,
  .navbar .navbar-brand:hover {
    color: #d85011 !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
  }

  .navbar .dropdown-menu {
    background-color: #f8f9fa;
  }

  .navbar .dropdown-item {
    color: #212529;
  }

  .navbar .dropdown-item:hover {
    background-color: #e2e6ea;
    color: #0d6efd;
  }

  .donate-btn {
    background-color: #107003;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 30px;
    margin-left: 15px;
    transition: 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
  }

  .donate-btn:hover {
    background-color: #0bbbe6;
    color: #fff !important;
    text-decoration: none;
  }

  .icon-circle {
    background-color: #fff;
    color: #0dcaf0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }

  .icon-circle i {
    font-size: 12px;
  }









.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
}