body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff0f5;
      color: #333;
    }

    .gallery-header {
      padding: 2rem;
      background-color: #000000;
      color: white;
      text-align: center;
    }

    .filter-bar {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }

    .filter-bar button {
      padding: 0.6rem 1.2rem;
      background: #fa8313;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-bar button:hover,
    .filter-bar button.active {
      background: #000000;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 2rem;
    }

    .gallery-item {
      perspective: 1000px;
    }

    .gallery-item-inner {
      transition: transform 0.5s;
      transform-style: preserve-3d;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .gallery-item:hover .gallery-item-inner {
      transform: rotateY(8deg) rotateX(8deg) scale(1.03);
    }

    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-radius: 12px;
      cursor: pointer;
    }

    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
      position: relative;
      border-radius: 12px;
    }

    .modal-content img {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .modal-close {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
    }

    .share-buttons {
      margin-top: 10px;
      text-align: center;
    }

    .share-buttons a {
      margin: 0 10px;
      color: white;
      font-size: 20px;
    }

    @media(max-width: 768px) {
      .gallery-item img {
        height: 180px;
      }
    }



/*** 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;
  }







/***Donate Button ***/
.donate-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.2rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
  }

  .donate-btn .icon-circle {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .donate-btn:hover {
    color: #fd7e14;
    border-color: #fd7e14;
    background-color: transparent;
  }

  .donate-btn:hover .icon-circle {
    border-color: #fd7e14;
    color: #fd7e14;
  }


/*==========================
  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);
}


.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);
}
