.social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

/* Optional custom colors */
.bg-linkedin {
  background-color: #0077b5;
}
.bg-danger {
  background-color: #ff0000;
}
.bg-info {
  background-color: #1da1f2;
}

.solid-white-btn {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.solid-white-btn:hover {
  background-color: #ccc; /* Light gray */
  color: #000;
}

.initiative-banner {
  display: inline-block;
  width: 140px;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: #333;
}
.initiative-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: grayscale(40%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.initiative-banner:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.initiative-banner p {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.initiative-banner img {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.initiative-banner:hover img {
  filter: grayscale(0%);
}


.social-icons a {
  font-size: 22px;
  color: #051c79;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #01C6D4;
  transform: scale(1.2);
}

    .image-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .image-overlay img {
      max-width: 90%;
      max-height: 90%;
      border: 5px solid white;
      border-radius: 10px;
    }

    .image-overlay.active {
      display: flex;
    }

    .image-overlay:hover {
      cursor: pointer;
    }