h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700!important;
  color: #ff0055!important;
}
p,
span {
  font-family: "Inter", sans-serif;
  color: #666;
  font-size: 1rem;
}

.banner-slider {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.banner-slider .item img {
  width: 100%;
  height: 300px; /* ✅ Laptop/Desktop height */
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ✅ Full-width look without padding */
.banner-slider .owl-stage-outer {
  border-radius: 5px;
  overflow: hidden;
}

/* ✅ Navigation Arrows */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8) !important;
  color: #333 !important;
  font-size: 20px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  opacity: 0;
}

.banner-slider:hover .owl-nav button {
  opacity: 1; /* only show arrows on hover */
}

.owl-nav button.owl-prev {
  left: 15px;
}

.owl-nav button.owl-next {
  right: 15px;
}

.owl-nav button:hover {
  background: #fff !important;
  color: #000 !important;
}

/* ✅ Dots (like BookMyShow style) */
.owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 4px 5px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #fff !important;
  width: 22px !important;
  border-radius: 10px;
}

/* ✅ Responsive Height Adjustments */
@media (max-width: 1200px) {
  .banner-slider .item img {
    height: 270px;
  }
}

@media (max-width: 992px) {
  .banner-slider .item img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .banner-slider .item img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .banner-slider .item img {
    height: 160px;
    border-radius: 6px;
  }

  .owl-nav button {
    width: 30px;
    height: 30px;
    font-size: 16px !important;
  }
}

.card-img-wrapper {
  height: 220px;
  overflow: hidden;
}
.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hover-card:hover .card-img-top {
  transform: scale(1.05);
}
.hover-card {
  transition: all 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.card-title {
  font-size: 1.1rem;
}
.btn {
  font-size: 0.9rem;
  font-weight: 500;
}
form input, form textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13,110,253,0.2);
    outline: none;
}
