    /* Style the floating button */
    .fb-share-button {
      position: fixed !important;
      right: 10px;
      bottom: 10px;
      z-index: 1000;
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background-color: #121212;
      color: white;
    }
    .navbar {
      background-color: black !important;
    }
    .navbar a {
      color: white !important;
    }
    .navbar-toggler {
      background-color: #f5a3c7;
    }
    .hero {
      background: linear-gradient(135deg, #f5a3c7, #e91e63);
      color: white;
      padding: 100px 15px;
      text-align: center;
    }
    .hero h1 {
      font-size: 3.5rem;
    }
    .hero p {
      font-size: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .section {
      padding: 60px 15px;
    }
    .section h2 {
      color: #f5a3c7;
      font-size: 2rem;
      margin-bottom: 30px;
      text-align: center;
    }
    .bg-dark:hover {
      background-color: #000 !important;
      color: black !important;
      transition: background-color 0.3s ease;
    }
    /* Key Priorities Cards */
    .priority-card {
      background-color: white;
      color: black;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .priority-card:hover {
      transform: translateY(-5px);
    }
    .priority-icon {
      font-size: 2.5rem;
      color: #f5a3c7;
      margin-bottom: 15px;
    }
    .icon {
      color: #f5a3c7;
      margin-right: 10px;
    }
    .list-unstyled li {
      margin-bottom: 15px;
    }
    /* FAQ Cards */
    .bg-dark {
      background-color: #1f1f1f !important;
    }
    .text-white-50 {
      color: rgba(255, 255, 255, 0.75) !important;
    }
    footer {
      background-color: #121212;
      color: white;
      text-align: center;
      padding: 30px;
    }
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1.2rem;
      }
    }
    html {
      scroll-behavior: smooth;
    }
    .hero-slider {
      height: 92vh;
      position: relative;
    }
    .swiper-slide {
      height: 92vh;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 80, 0, 0.5);
      z-index: 1;
    }
    .hero-content {
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }
    .scroll-down {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      z-index: 10;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(10px); }
      60% { transform: translateY(5px); }
    }
    .swiper-button-next,
    .swiper-button-prev {
      color: white !important;
    }
    .navbar-nav .nav-link:hover {
      background-color: #f5a3c7;
      color: black !important;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
    /* Chart Container for Responsiveness */
    .chart-container {
      position: relative;
      width: 100%;
      height: 400px; /* Default height, adjustable */
      max-width: 100%;
    }
    @media (max-width: 768px) {
      .chart-container {
        height: 300px; /* Smaller height for tablets */
      }
    }
    @media (max-width: 576px) {
      .chart-container {
        height: 250px; /* Even smaller for mobile */
      }
    }
	
	/* Gallery Styles */
/* Masonry Gallery Styles */
.gallery-section {
  width: 100%;
  padding: 20px 0;
  background-color: #1f1f1f;
}

.gallery-header {
  color: #f5a3c7; /* Matches other headers */
  font-size: 2rem; /* Matches other headers */
  margin-bottom: 30px; /* Matches other headers */
  text-align: center; /* Matches other headers */
}

.gallery-container {
  column-count: 4; /* Fixed 4 columns on desktop */
  column-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-item {
  break-inside: avoid; /* Prevents items from breaking across columns */
  margin-bottom: 10px; /* Space between rows */
}

.gallery-item img {
  width: 100%;
  height: auto; /* Allows natural height based on image */
  display: block;
  object-fit: cover; /* Ensures images fill their space nicely */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-container {
    column-count: 2; /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .gallery-container {
    column-count: 1; /* 1 column on small phones */
  }
}