

  /* Overlay for better text readability */

  /* Navigation */

  /* Pagination */

  /* Progress Timer */

  /* Mobile Responsiveness */

  /* Loading animation */

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }.swiper {
    position: relative;
    /* width: 100%;
            height: 100%; */
    border-radius: 0 0 2rem 2rem;
  }.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }.slide-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    animation: fadeIn 0.8s ease-in-out;
  }.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    height: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }.slide-title {
    font-size: max(2rem, min(6vw, 4rem));
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }.slide-subtitle {
    font-size: max(2rem, min(5vw, 3rem));
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
  }.swiper-slide-active .slide-title,
  .swiper-slide-active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
  }/* Overlay for better text readability */.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 5;
  }/* Navigation */.swiper-button-next,
  .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }.swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }.swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }/* Pagination */.swiper-pagination:not(#\#) {
    bottom: 30px !important;
  }.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
  }.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
  }/* Progress Timer */.progress-timer {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
  }.timer-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }.timer-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
  }.timer-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.8) 0deg, transparent 0deg);
    transition: all 0.1s linear;
  }/* Mobile Responsiveness *//* Loading animation */@media (max-width: 768px) {
    .hero-slider {
      height: 70vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 40px;
      height: 40px;
      margin-top: -20px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 14px;
    }

    .progress-timer {
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
    }

    .timer-text {
      font-size: 12px;
    }

    .slide-content {
      width: 95%;
      padding: 0 15px;
    }
}@media (max-width: 480px) {
    .hero-slider {
      height: 60vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }

    .progress-timer {
      width: 45px;
      height: 45px;
    }

    .timer-text {
      font-size: 10px;
    }
}
