/* =====================
   IMAGE GALLERY
===================== */
.gallarysection{
    background: #d8fcff;
    margin-top: 30px;
    padding: 20px;
}
.gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.gallery {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide 25s linear infinite;
  padding: 10px 40px;
}

/* STOP SLIDER ON HOVER */

.gallery:hover {
  animation-play-state: paused;
}

.gallery img {
  width: 420px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 122s;
}

.gallery img:hover {
  transform: scale(1.08);
}

/* SLIDE ANIMATION */

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =====================
LIGHTBOX
===================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;

  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* =====================
TESTIMONIAL SECTION
===================== */

.testimonial-section-About {
  padding: 90px 20px;
  background: white;
}

.testimonial-title {
  text-align: center;
  font-size: 36px;
  color: #0a2a66;
  margin-bottom: 50px;
}

.testimonial-slider-About {
  max-width: 1000px;
  margin: auto;

  display: flex;
  align-items: center;
  position: relative;
}

.testimonial-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  min-width: 100%;
  background: white;

  padding: 40px;

  border-radius: 15px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  text-align: center;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.customer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.customer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.customer h4 {
  color: #0a2a66;
}

.customer span {
  font-size: 14px;
  color: gray;
}

/* NAV BUTTONS */

.nav {
  background: #0a2a66;
  color: white;

  border: none;

  font-size: 24px;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  cursor: pointer;

  margin: 0 10px;
}

.nav:hover {
  background: #153f8a;
}

/* =====================
MOBILE
===================== */

@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .gallery img {
    width: 250px;
    height: 170px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}
