.banner {  
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content { 
    position: absolute;
    bottom: 35%;
    left: 8%;
    color: var(--white);
    text-align: left;
    cursor: default;
    font-weight: bold;
    font-style: italic;
}

.banner-content h1 { 
    font-size: 6rem;
}

.banner-content p { 
    font-size: 3.8rem;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 18px;
}


.home-about { 
    background-color: var(--trans-2);
    padding: 5rem;
    text-align: justify;
}

.home-about-content { 
    color: white;
}

.home-about-content h1 { 
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
}

.jmm { 
    color: var(--orange);
}

.reviews-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background-color: var(--trans);
}

.review-author { 
  color: var(--orange);
}

.review-title {
  color: var(--white);
  margin-bottom: 2rem;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 15px;
}

.carousel-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 3rem;
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin: 0 0.5rem;
  background: var(--white);
  padding: 2rem;
  color: var(--dark-grey);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  box-sizing: border-box;
  cursor: default;
  align-content: center;
  transition: all 0.3s ease-in-out;
}

.review-card:hover { 
  transform: scale(98%);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: var(--white);
  width: 50px;
  height: auto;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 5;
}

.arrow:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 10px; 
}

.arrow.right {
  right: 10px; 
}

.reviews-wrapper::-webkit-scrollbar {
  display: none;
}
.reviews-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .arrow.left {
    left: -50px;
  }
  .arrow.right {
    right: -50px;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .arrow.left {
    left: -40px;
  }
  .arrow.right {
    right: -40px;
  }
}

.sponsors-logo { 
    padding: 3rem 0;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 3rem; 
    flex-wrap: nowrap; 
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logos img {
    display: block;
}

@media screen and (max-width: 768px) {
    .head-logo img {
        width: 60px !important;
        height: auto;
    }

    .head-container {
        padding: 0.5rem 1rem;
    }

    .banner-content h1 {
        font-size: 3rem !important; 
        line-height: 1;
    }

    .banner-content p {
        font-size: 1.5rem !important; 
    }

    .sponsors-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      gap: 4rem;
    }

    .sponsor-logos {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sponsor-logos img {
        display: block;
        width: 220px; 
        max-width: 90%;
        height: auto;
    }
}
