.intro-review-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #000814; /* Optional: dark background */
  color: #fff;
}

.intro-content,
.review-slider {
  flex: 1 1 45%;
  min-width: 300px;
}
.intro-content p{
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.intro-content .red-text {
  color: #f9c800;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;

}

.review-slide {
  display: none;
  text-align: center;
    font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-style: normal; 
}

.review-slide.active {
  display: block;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: bold;
  color: #ccc;
}

/*ga;;ery*/
.image-gallery {
  padding: 2rem;
  margin: auto;
  max-width: 1200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;

}

.gallery-grid img {
  width: 60%;
  height: 60%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin: auto;
  
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }


/*contact*/
.contact-cta-section {
  width: 100%;
  background-color: #f9c800;
  padding: 2rem 0;
  text-align: center;
}

.contact-cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cta-button {
  background-color: #000;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.contact-cta-button:hover {
  background-color: #333;
}
