body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #F8F9FA;
    color: #212529;
}

.navbar {
    background-color: #0B5D3B;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
}
/* Ensure navbar toggler is visible on mobile */
.navbar-toggler {
    border-color: rgba(0,0,0,.1);
    z-index: 1050;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.hero {
    background: linear-gradient(rgba(11,93,59,0.8), rgba(11,93,59,0.8)),
    url("images/hero.jpg") center/cover no-repeat;
    color: white;
    padding: 90px 0;
}

.btn-donate {
    background-color: #198754;
    color: white;
    font-size: 18px;
}

.btn-donate:hover {
    background-color: #157347;
}

.section-title {
    color: #0B5D3B;
    font-weight: 700;
}

.feedback-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

footer {
  background-color: #f8f9fa; /* light bg */
  padding: 20px 0;
  text-align: center;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #198754 !important; /* green hover */
}
.text-primary {
    color: #1E3A8A !important; /* professional NGO blue */
}

.bg-light {
    background-color: #f8f9fc !important;
}
.feedback-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.feedback-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feedback-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #198754; /* NGO green */
}

.text-primary {
    color: #1E3A8A !important; /* Professional NGO blue */
}
.text-success {
    color: #198754; /* NGO green */
}
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.update-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.update-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
/* Team Section Styling */
.team-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 4px solid #e9ecef;
}

.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-top: 10px;
}
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.5s ease-in-out;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.navbar-logo {
  height: 65px;              /* keep navbar height same */
  transform: scale(2.7);     /* increase logo size only */
  transform-origin: left center;
}

.logo-icon {
    height: 60px;   /* increase the height as needed */
    width: auto;    /* maintain the aspect ratio */
}


