/* image slider */

.slider-container {
  height: auto;
  width: 100%;
}

.slider-container .carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
  z-index: 10;
}

.blogs-header {
  width: 100%;
  height: 80vh;

  /* 👉 PUT YOUR IMAGE HERE */
  background-image: url("/assest/hero3.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}

.blogs-overlay {
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.269);
}

.blogs-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.blogs-subtitle {
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
}

.bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

section .border {
  border: 1.5px dashed #e6e6e6 !important;
}

/* SECTION WRAPPER */
.hospitality-section {
  padding: 70px 0;
  background: #f8f9fb;
  font-family: "Poppins", Arial, sans-serif;
}

/* CONTAINER */
.hospitality-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT CONTENT */
.content-box {
  flex: 1;
}

.small-title {
  color: #c49b24;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE AREA */
.image-area {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-area .circles {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-img{
  height: 40%;
}

/* --------- RESPONSIVE DESIGN --------- */

/* Tablets */
@media (max-width: 992px) {
  .hospitality-section .container {
    flex-direction: column;
    text-align: center;
  }

  .image-area .circles {
    width: 300px;
    height: 300px;
  }

  .main-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hospitality-section {
    padding: 50px 0;
  }

  .image-area .circles {
    width: 250px;
    height: 250px;
  }

  .main-title {
    font-size: 26px;
  }

  .content-box p {
    font-size: 14px;
  }
}