/* Custom minimal CSS */
.hero-section {
  height: 90vh;
  background: url("Images/screenImg.jpeg") center/cover no-repeat;
  position: relative;
}

/* CENTER OVERLAY STRIP */
.hero-section .overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 200px;
  /* controls top-bottom size */
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
}

.hero-text {
  font-size: 2rem;
  font-weight: 600;
  z-index: 2;
  position: relative;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-section .overlay {
    height: 120px;
    /* smaller strip on mobile */
  }

  .hero-text {
    font-size: 1.3rem;
  }
}

.navbar {
  padding-left: 10px;
  padding-right: 10px;
}

.nav-link {
  padding: 6px 8px;
}

/* TIMELINE */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-item {
  position: relative;
  text-align: center;
  flex: 1;
}

.dot {
  width: 14px;
  height: 14px;
  background: #1aa36f;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* LINE BETWEEN DOTS */
.line {
  position: absolute;
  top: 10px;
  left: 55%;
  width: 90%;
  height: 3px;
  background: #1aa36f;
  z-index: 1;
}

/* LAST ITEM NO LINE */
.timeline-item.last .line {
  display: none;
}

/* TEXT */
.timeline-item p {
  margin-top: 15px;
  font-weight: 500;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .timeline {
    gap: 10px;
  }

  .timeline-item p {
    font-size: 12px;
    margin-top: 8px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .line {
    bottom: 10px;
    height: 2px;
  }
}

.details ul li{
  padding: 5px;
}
.facilities ul li{
  padding: 5px;
}
.contact ul li{
  padding: 5px;
}
li i {
  color: #1aa36f;
  margin-right: 8px;
}

.price span {
  text-decoration: line-through;
  color: #ec3737;
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: bold;
}

.old-price {
  color: #000 !important;
  text-decoration: line-through;
  text-decoration-color: red !important;
  text-decoration-thickness: 2px;
}