/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", Arial, sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
    color: #333;
  }
  
  .reviews-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .reviews-section h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .reviews-section .description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Review Card Styles */
  .review-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .reviewer-name {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .review-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
  }
  
  /* Star Rating */
  .star-rating span {
    font-size: 18px;
    color: #ff6347;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .review-card {
      max-width: 90%;
    }
  }

  /* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 20px 40px;
  }
  
  .header-left .logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
  }
  
  .header-right nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .header-right nav ul li {
    margin-left: 20px;
  }
  
  .header-right nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .header-right nav ul li a:hover {
    color: #ff6347;
  }

  /* Responsive Design for Cards */
@media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
  
    .header-right nav ul {
      flex-direction: column;
    }
  
    .header-right nav ul li {
      margin-left: 0;
      margin-top: 10px;
    }
  }

  /* Gallery Section */
.gallery-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.gallery-section h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-size: 18px;
  font-weight: bold;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .overlay {
    font-size: 14px;
  }
}
  