/* Awards Slider Styles */

.awards-section {
  position: relative;
 
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease;
}

.awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.awards-section .container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 20px;
 height: 70vh;
  padding: 100px 0;
  position: relative;
  z-index: 1;
 align-items: center;
}

.awards-section .left-content {
  width: 35%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-subtitle {
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    color: var(--e-global-color-accent);
}

.awards-section .right-slider {
  width: 65%;
}

.awards-section .swiper-slide {
  text-align: center;
  color: #fff;
}

.awards-section .swiper-slide img {
  max-width: 180px;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {

  .awards-section .container {
    flex-direction: column;
    height: auto;
    padding: 70px 20px;
    gap: 40px;
  }

  .awards-section .left-content,
  .awards-section .right-slider {
    width: 100%;
    text-align: center;
  }

  .awards-section .left-content {
    align-items: center;
  }

  .awards-section .swiper-slide img {
    max-width: 140px;
  }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {

  .awards-section .container {
    padding: 60px 15px;
  }

  .slider-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .elementor-heading-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .awards-section .swiper {
    padding-top: 40px;
  }

  .awards-section .swiper-slide {
    font-size: 14px;
  }

  .awards-section .swiper-slide img {
    max-width: 110px;
    margin-bottom: 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* Mobile clean look */
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {

  .elementor-heading-title {
    font-size: 24px;
  }

  .awards-section::before {
    background: rgba(0,0,0,0.75);
  }
}