/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}


/* Photo Gallery Section */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.photo:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo:hover .photo-overlay {
  opacity: 1;
}

.photo-name {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}/* About Us Section */
.about-us {
  display: flex;
  align-items: center;
  padding: 50px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
}

.about-us-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
 
}

.about-us-text {
  flex: 1;
  padding-left: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    text-align: center;
  }

  .about-us-text {
    padding-left: 0;
    margin-top: 20px;
  }

  .about-us-image img {
    max-width: 100%;
  }
}
/* Button Styles */
.btn {
  padding: 10px 20px;
    background-color: #007bff;
    color: white;
   font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.perks-section {
  padding: 20px;
}

.perks-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.perk-card {
  background-color: white;
  padding: 30px;
  margin: 15px;
  text-align: center;
  transition: transform 0.3s;
  flex: 1 1 calc(20% - 40px); /* 3 cards per row */
  max-width: calc(20% - 40px);
}

.perk-card h2 {
  margin: 15px 0;
  font-size: 1.4rem;
}

.perk-card p {
  font-size: 1rem;
  color: #666;
}

.icon {
  font-size: 60px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.perk-card:hover .icon {
  transform: scale(1.2); /* Enlarge icon on hover */
}

.perk-card:hover {
  transform: translateY(-10px); /* Lift card slightly on hover */
}

@media (max-width: 768px) {
  .perk-card {
    flex: 1 1 calc(50% - 40px); /* 2 cards per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .perk-card {
    flex: 1 1 100%; /* 1 card per row on mobile screens */
  }
}
.benefits-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Evenly space the cards */
  padding: 2rem;
  gap: 0rem; /* Add some spacing between cards */
  padding-bottom: 0px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 1.5rem;
  margin: 1rem;
  
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  background-color: white;
  color: black;
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  color: #007bff;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  color: #64afff;
  font-size: 3.5rem;
}

.benefit-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #333;
}

  
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* Four columns */
      gap: 15px;
      margin: 20px;
    }

    .photo {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .photo img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .photo:hover img {
      transform: scale(1.1);
    }

    .photo-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 18px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .photo:hover .photo-info {
      opacity: 1;
    }

    /* Responsive: Adjust for smaller screens */
    @media (max-width: 768px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
      }

      .photo-info {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .gallery {
        grid-template-columns: 1fr; /* One column for very small screens */
      }
    }