/*=========================================
HERO SECTION
=========================================*/
.hero {
  position: relative;
  padding: 24px 0 0px;
  background: #f5f6f8;
  overflow: hidden;
}

/*=========================================
SWIPER
=========================================*/
.heroSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.heroSlider .swiper-slide {
  height: auto;
}

/*=========================================
HERO BANNER
=========================================*/
.hero-banner {
  position: relative;
  height: 560px;
  overflow: hidden;
  min-height: 560px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

/*=========================================
BACKGROUND IMAGE
=========================================*/
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 7s ease;
  will-change: transform;
}

.hero-banner:hover .hero-bg {
  transform: scale(1.05);
}

/*=========================================
OVERLAY
=========================================*/
.hero-banner::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.82) 0%, rgba(7, 7, 7, 0.64) 36%, rgba(7, 7, 7, 0.2) 72%, rgba(7, 7, 7, 0) 100%);
}

.hero-banner::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -120px;
  border-radius: 50%;
  width: 360px;
  height: 360px;
  content: "";
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  filter: blur(70px);
  pointer-events: none;
}

/*=========================================
CONTAINER
=========================================*/
.hero-banner .container {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

/*=========================================
CONTENT AREA
=========================================*/
.hero-content {
  width: min(100%, 460px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  color: #ffffff;
  max-width: 460px;
}

.hero-content > * {
  position: relative;
  z-index: 5;
}

/*=========================================
BADGE
=========================================*/
.hero-tag {
  margin-bottom: 16px;
  border-radius: 999px;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  align-self: flex-start;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background: #9f0d0d;
  box-shadow: 0 10px 24px rgba(159, 13, 13, 0.28);
  backdrop-filter: blur(8px);
}

/*=========================================
HEADING
=========================================*/
.hero-content h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.26);
}

.hero-content h1 span {
  margin-top: 6px;
  display: block;
  color: #ffd24d;
}

/*=========================================
DESCRIPTION
=========================================*/
.hero-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  max-width: 100%;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/*=========================================
OFFER
=========================================*/
.hero-offer {
  margin: 0 0 22px;
  border-radius: 12px;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px 12px 16px;
  border-left: 4px solid #ffd24d;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.hero-offer small {
  margin-bottom: 6px;
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-offer h2 {
  margin: 0;
  color: #ffd24d;
  font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 210, 77, 0.22);
}

.hero-offer span {
  margin-top: 4px;
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}

/*=========================================
BUTTONS
=========================================*/
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-buttons a {
  position: relative;
  border-radius: 999px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 22px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  min-width: 150px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-buttons a::after {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.hero-buttons a:hover::after {
  left: 150%;
  transition: 0.8s;
}

.btn-primary {
  background: #9f0d0d;
  box-shadow: 0 12px 26px rgba(159, 13, 13, 0.24);
}

.btn-primary:hover {
  background: #7d0909;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(159, 13, 13, 0.3);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: #ffffff;
  color: #9f0d0d;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.16);
}

.btn-primary:focus,
.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 210, 77, 0.28);
}

.btn-primary:active,
.btn-outline:active {
  transform: scale(0.97);
}

/*=========================================
SWIPER NAVIGATION
=========================================*/
.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
  opacity: 0;
  visibility: hidden;
}

.heroSlider:hover .swiper-button-next,
.heroSlider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}

.heroSlider .swiper-button-prev {
  left: 20px;
}

.heroSlider .swiper-button-next {
  right: 20px;
}

.heroSlider .swiper-button-next::after,
.heroSlider .swiper-button-prev::after {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.heroSlider .swiper-button-next:hover,
.heroSlider .swiper-button-prev:hover {
  border-color: #9f0d0d;
  background: #9f0d0d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(159, 13, 13, 0.28);
}

/*=========================================
PAGINATION
=========================================*/
.heroSlider .swiper-pagination {
  bottom: 18px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.heroSlider .swiper-pagination-bullet {
  border-radius: 999px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.45;
  transition: 0.35s ease;
}

.heroSlider .swiper-pagination-bullet-active {
  width: 34px;
  background: #ffd24d;
  opacity: 1;
}

/*=========================================
SLIDER ANIMATION
=========================================*/
.swiper-slide-active .hero-bg {
  transform: scale(1.06);
}

/*=========================================
DESKTOP
=========================================*/
@media (min-width: 1400px) {
  .hero-banner {
    height: 600px;
    min-height: 600px;
  }
}
/*=========================================
LAPTOP
=========================================*/
@media (max-width: 1199px) {
  .hero-banner {
    height: 520px;
    min-height: 520px;
  }
}
/*=========================================
TABLET
=========================================*/
@media (max-width: 991px) {
  .hero {
    padding: 20px 0 30px;
  }
  .hero-banner {
    border-radius: 20px;
    height: 480px;
    min-height: 480px;
  }
  .hero-content {
    max-width: 430px;
  }
  .heroSlider .swiper-button-next,
  .heroSlider .swiper-button-prev {
    width: 46px;
    height: 46px;
  }
}
/*=========================================
MOBILE
=========================================*/
@media (max-width: 767px) {
  .hero {
    padding: 14px 0 24px;
  }
  .hero-banner {
    border-radius: 18px;
    height: 440px;
    min-height: 440px;
  }
  .hero-banner::before {
    background: rgba(0, 0, 0, 0.62);
  }
  .hero-banner .container {
    align-items: center;
  }
  .hero-content {
    align-items: center;
    padding: 0 4px;
    max-width: 100%;
    text-align: center;
  }
  .hero-tag {
    margin-bottom: 14px;
    align-self: center;
  }
  .hero-content h1 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
  .hero-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .hero-offer {
    margin-bottom: 18px;
    align-items: center;
    padding: 10px 14px;
  }
  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons a {
    width: 100%;
    max-width: 220px;
  }
  .heroSlider .swiper-button-next,
  .heroSlider .swiper-button-prev {
    display: none;
  }
  .heroSlider .swiper-pagination {
    bottom: 14px !important;
  }
  .heroSlider .swiper-pagination-bullet-active {
    width: 30px;
  }
}
/*=========================================
MOBILE (COMPACT & PREMIUM)
=========================================*/
@media (max-width: 767px) {
  .hero {
    padding: 0;
  }
  .hero-banner {
    border: none;
    border-radius: 0;
    height: 480px;
    /* Height ko chhota rakha hai taaki premium lage */
    min-height: 380px;
    box-shadow: none;
  }
  .hero-content {
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  .hero-tag {
    margin-bottom: 8px;
    padding: 6px 12px;
    font-size: 10px;
    /* Gap kam kiya */
  }
  .hero-content h1 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    /* Font size ko balanced rakha hai */
    line-height: 1.1;
  }
  .hero-content p {
    margin-bottom: 12px;
    display: -webkit-box;
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    /* Text ko limit kiya taaki professional lage */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-offer {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-left-width: 3px;
    border-left: none;
  }
  .hero-offer h2 {
    font-size: 1.6rem;
  }
  .hero-buttons {
    gap: 8px;
  }
  .hero-buttons a {
    height: 40px;
    font-size: 0.85rem;
    /* Buttons ki height chhoti ki */
    min-width: 130px;
  }
}

/*# sourceMappingURL=hero.css.map */
