  /* General Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}











  




/* gallery */

h1 {
  text-align: center;
  margin: 30px 0;
  font-size: 2.5rem;
  color: #2E7D32; /* Improved contrast */
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-title {
  text-align: center;
  margin: 20px 0;
  font-size: 1.8rem;
  color: #333; /* Or adjust color as needed */
}

.subtitle {
  font-size: 1.2em;
  font-weight: 400;
  color: #343a40; /* Maximum contrast */
  margin-bottom: 30px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 300px; /* Fixed height for uniform card size */
}

.gallery-item img {
  width: 100%;
  height: 100%; /* Ensures all images are of equal height */
  object-fit: cover; /* Maintains aspect ratio while covering the space */
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 8px;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.gallery-item:hover .overlay {
  visibility: visible;
}

.contact {
  text-align: center;
  margin-top: 40px;
}

.contact button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact button:hover {
  background-color: #45a049;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2rem;
  }

  .contact button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.5rem;
  }

  .contact button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}






  /* Master Plan Section */
  #master-plan {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
  }

  #master-plan h1 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 10px;
  }

  #master-plan .subtitle {
    font-size: 1.2em;
    font-weight: 400;
    color: #343a40;
    margin-bottom: 30px;
  }

  .master-plan-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
  }

  .master-plan-full-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .contact {
    text-align: center;
    margin-top: 40px;
  }

  .contact button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .contact button:hover {
    background-color: #45a049;
    transform: translateY(-3px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    #master-plan h1 {
      font-size: 2rem;
    }

    .contact button {
      font-size: 1rem;
      padding: 12px 25px;
    }
  }

  @media (max-width: 480px) {
    #master-plan h1 {
      font-size: 1.5rem;
    }

    .contact button {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }















 



 
