/*-------------------------------------------------
  General Styles
-------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/*-------------------------------------------------
  Header Styling
-------------------------------------------------*/
header {
  border-bottom: 1px solid #e9e9e9;
}

/*-------------------------------------------------
  Location Section
-------------------------------------------------*/
.location-select {
  cursor: pointer;
  transition: 0.3s;
}

.location-select:hover i.bi-geo-alt-fill {
  color: #0047ba;
}

/*-------------------------------------------------
  Search Box
-------------------------------------------------*/
.search-box {
  background-color: #f5f5f5;
  border-radius: 30px;
  width: 380px;
  height: 42px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  font-size: 15px;
  color: #333;
  padding-left: 10px;
}

.search-box input::placeholder {
  color: #aaa;
}

/*-------------------------------------------------
  Phone Section
-------------------------------------------------*/
.phone-icon {
  width: 38px;
  height: 38px;
}

/*-------------------------------------------------
  Sign-in Button
-------------------------------------------------*/
.btn-primary {
  background-color: #0047ba;
  border: none;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #003d9e;
}

/*-------------------------------------------------
  Responsive Design
-------------------------------------------------*/
@media (max-width: 992px) {
  .container {
    gap: 10px;
  }
  
  .search-box {
    width: 100%;
  }
}




/* slider */

/*----------------------------------------------
  Slider Container
----------------------------------------------*/
.slide-box {
  background: linear-gradient(90deg, #f56fb3 0%, #fca6d1 100%);
  border-radius: 20px;
  padding: 40px 60px;
  height: 340px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1200px;
  position: relative;
}

/*----------------------------------------------
  Text and Image Styling
----------------------------------------------*/
.slide-text {
  flex: 1;
  color: #fff;
}

.slide-text .highlight {
  background-color: #c0006c;
  padding: 0 8px;
  border-radius: 5px;
}

.slide-img {
  flex: 1;
  text-align: right;
}

.slide-img img {
  max-height: 320px;
  object-fit: contain;
}

/*----------------------------------------------
  Indicators on Top of Image
----------------------------------------------*/
.carousel-indicators.top-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  justify-content: center;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 11, 11, 0.9);
  transition: 0.3s ease;
}

.carousel-indicators .active {
  background-color: #ba0b0b;
  width: 14px;
  height: 14px;
}

/*----------------------------------------------
  Responsive Adjustments
----------------------------------------------*/
@media (max-width: 992px) {
  .slide-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    height: auto;
  }

  .slide-img {
    text-align: center;
    margin-top: 20px;
  }

  .slide-img img {
    width: 80%;
  }

  .carousel-indicators.top-indicators {
    bottom: 10px;
  }
}

