:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

.offers-carousel-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fbfd;
  color: #333;
  line-height: 1.6;
  padding-bottom: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 25px auto 0;
}

.offers-carousel-container {
  position: relative;
  padding: 0 15px;
}

/* Owl ko support karne ke liye yahan se flex/overflow hata diya */
.offers-carousel {
  padding: 20px 10px 30px;
}

.offer-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.offer-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.offer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.offer-card:hover .offer-image {
  transform: scale(1.05);
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.offer-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.offer-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.offer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.offer-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.offer-link:hover i {
  transform: translateX(5px);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  z-index: 10;
  transition: var(--transition);
  opacity: 0.9;
}

.carousel-nav:hover {
  opacity: 1;
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 6px;
  display: block;
  transition: var(--transition);
}

.owl-dot.active span {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .offers-carousel-section {
    padding: 50px 0 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .offers-carousel-section {
    padding: 40px 15px 20px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-header {
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 1rem !important;
  }
  .offer-content {
    padding: 20px;
  }
  .offer-title {
    font-size: 1.2rem;
  }
}
/* Scroll indicator - text thoda generic kar diya */
.scroll-indicator {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
}/*# sourceMappingURL=carousel.css.map */