.hero-section {
  padding: 0px 0 60px 0;
}
 
.container-fluid {
  padding: 0;
}
 
.main-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}
 
.carousel-inner {
  padding-left: 0 !important;
}
 
.custom-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
 
.carousel-control-prev {
  left: 5%;
}
 
.carousel-control-next {
  right: 5%;
}
 
.custom-icon {
  color: var(--btn-yellow);
  font-size: 18px;
  transition: color 0.2s ease;
}
 
/* Hover effect */
.custom-arrow:hover {
  background-color: var(--btn-yellow);
  border: none;
}
 
.custom-arrow:hover .custom-icon {
  color: var(--color-light);
  ;
}
 
/* Responsive tweak for very small screens */
@media (max-width: 992px) {
  .custom-arrow {
    width: 25px;
    height: 25px;
  }
 
  .custom-icon {
    font-size: 12px;
  }
 
  .carousel-control-prev {
    left: 3%;
  }
 
  .carousel-control-next {
    right: 3%;
  }
}
 
 
.booking-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.booking-bar {
  display: flex;
  align-items: center;
  background: var(--color-light);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  flex-wrap: wrap;
  position: absolute;
}
 
.booking-item {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid #eee;
  min-width: 120px;
}
 
.booking-item:last-child {
  border-right: none;
}
 
.booking-section p {
  /* font-size: 14px; */
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
 
.booking-section input[type="date"] {
  border-radius: 4px;
  padding: 4px 0;
  font-size: 13px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
}
 
.booking-section input[type="date"]:focus-visible {
  outline: none;
  box-shadow: none;
}
 
.book-btn {
  font-size: 13px !important;
  width: 115px !important;
  font-weight: 600;
  padding: 6px 0;
  background-color: var(--btn-yellow);
  color: var(--color-light);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
 
.book-btn:hover {
  background-color: var(--btn-yellow);
  padding: 7px 0;
}
 
 
.booking-item .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 4px;
}
 
.booking-item .counter button {
  background: var(--color-blue);
  color: var(--color-light);
  border: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s;
}
 
.booking-item .counter button:hover {
  background: var(--color-blue);
}
 
.booking-item .counter span {
  font-size: 13px;
  color: var(--color-dark);
}
 
.booking-item .payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
 
.booking-item .payment-icons img {
  height: 20px;
}
 
@media (max-width: 992px) {
 
 
  .booking-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: unset;
  }
 
  .booking-item {
    width: 50%;
    border-right: none;
    /* border-bottom: 1px solid #eee; */
  }
 
  .booking-item:nth-child(odd) {
    border-right: 1px solid #eee;
  }
 
  .booking-item:last-child {
    border-bottom: none;
  }
 
  .book-btn {
    width: 100% !important;
    border-radius: 0;
  }
}
 
@media (min-width: 800px) and (max-width: 992px) {
  .booking-bar {
    position: absolute;
  }
}
 
@media (max-width: 480px) {
  .booking-bar {
    padding: 8px 0;
    width: 74%;
    box-shadow: none;
  }
 
}
@media (min-width: 993px) and (max-width: 2100px) {
 
  .booking-bar {
    max-width: 1050px;
    padding: 6px 12px;
  }
 
  .booking-item {
    padding: 10px 10px;
  }
 
  .booking-item .counter button {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
 
  .booking-item .counter span {
    font-size: 18px;
  }
 
  .book-btn {
    font-size: 16px !important;
    width: 150px !important;
    padding: 10px 0;
  }
 
  .booking-section input[type="date"] {
    font-size: 17px;
    padding: 10px 0;
  }
  .booking-item .payment-icons img{
    height: 28px;
  }
}
 
@media (min-width: 2101px) {
 
  .booking-bar {
    max-width: 1400px;
    padding: 10px 20px;
  }
 
  .booking-item {
    padding: 8px 14px;
  }
 
  /* Counter buttons aur bade */
  .booking-item .counter button {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
 
  .booking-item .counter span {
    font-size: 22px;
  }
 
  /* Book button larger aur center attention */
  .book-btn {
    font-size: 20px !important;
    width: 180px !important;
    padding: 12px 0;
  }
 
  /* Date input thoda aur readable */
  .booking-section input[type="date"] {
    font-size: 22px;
    padding: 12px 0;
  }
 
  /* Payment icons aur clear visible */
  .booking-item .payment-icons img {
    height: 36px;
  }
}
 
 
/* history section */
.history-section {
  padding: 40px 0;
}
 
.section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
}
 
.left-section {
  display: flex;
  align-items: flex-start;
  padding: 0 50px;
}
 
.vertical-line {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  font-size: 26px;
  color: var(--color-blue);
  font-weight: 500;
  letter-spacing: 2px;
  margin-right: 18px;
  line-height: 1;
  padding-top: 24px;
}
 
.text-content {
  max-width: 430px;
  border-left: 3px solid #333;
  padding-left: 36px;
}
 
.text-content h1 {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-dark);
  ;
  margin-top: 2.8rem;
}
 
.read-more-btn {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
 
.read-more-btn span {
  transition: transform 0.3s ease;
}
 
.read-more-btn:hover {
  padding: 7px 0;
}
 
.read-more-btn:hover span {
  transform: rotate(-32deg);
}
 
.right-section {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.blue-bg {
  position: absolute;
  right: 0;
  width: 50%;
  height: 390px;
  background-color: var(--color-blue);
  z-index: 1;
  bottom: 46px;
}
 
.main-image {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 260px;
  right: 90px;
  border-radius: 10px;
  bottom: 62px;
}
 
.established-label {
  position: absolute;
  top: 33%;
  right: 50px;
  transform: translateY(-50%);
  writing-mode: sideways-lr;
  background: var(--color-light);
  color: var(--color-dark);
  font-weight: bold;
  font-size: 15px;
  padding: 16px 8px;
  z-index: 3;
  letter-spacing: 1px;
}
 
.established-label span {
  color: var(--color-blue);
}
 
.history-section .btn-dark-outer {
  justify-content: unset;
}
 
@media (max-width: 991px) {
  .history-section {
    padding: 0;
  }
 
  .section-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    flex-wrap: wrap;
  }
 
  .left-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
 
  .vertical-line,
  hr,
  .blue-bg {
    display: none;
  }
 
  .text-content {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
  }
 
  .text-content h2 {
    font-size: 22px;
    margin-top: 1.5rem;
  }
 
  .read-more-btn {
    font-size: 14px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
 
  .right-section {
    width: 100%;
    min-height: auto;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
 
  .main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
    right: 0;
    top: 0;
  }
 
  .established-label {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 10px;
    background: transparent;
    color: var(--color-dark);
    padding: 6px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
  }
 
  .established-label span {
    color: var(--color-blue);
  }
 
  .hero-section {
    padding: 40px 0 10px 0;
  }
}
 
@media (min-width: 992px) and (max-width: 1366px) {
 
  .history-section {
    padding: 50px 0;
  }
 
  .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
  }
 
  .left-section {
    display: flex;
    align-items: flex-start;
    padding: 0 30px;
  }
 
  .vertical-line {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-size: 24px;
    color: var(--color-blue);
    font-weight: 500;
    letter-spacing: 2px;
    margin-right: 14px;
    line-height: 1;
    padding-top: 20px;
  }
 
  .text-content {
    max-width: 480px;
    border-left: 3px solid #333;
    padding-left: 36px;
  }
 
  .text-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-dark);
    margin-top: 3rem;
  }
 
  .text-content p {
    font-size: 16px;
    line-height: 1.6;
  }
 
  .read-more-btn {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
 
  .right-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .blue-bg {
    position: absolute;
    right: 0;
    width: 64%;
    height: 412px;
    background-color: var(--color-blue);
    z-index: 1;
    bottom: 0;
  }
 
  .main-image {
    position: relative;
    z-index: 2;
    width: 420px;
    height: 250px;
    right: 80px;
    border-radius: 10px;
    bottom: 10px;
  }
 
  .established-label {
    position: absolute;
    top: 48%;
    right: 42px;
    transform: translateY(-50%);
    writing-mode: sideways-lr;
    background: var(--color-light);
    color: var(--color-dark);
    font-weight: bold;
    font-size: 14px;
    padding: 16px 8px;
    z-index: 3;
    letter-spacing: 1px;
  }
 
  .established-label span {
    color: var(--color-blue);
  }
 
  .history-section .btn-dark-outer {
    justify-content: unset;
  }
}
 
@media (min-width: 1367px) and (max-width: 1799px) {
  .history-section {
    padding: 30px 0;
  }
 
  .text-content {
    max-width: 475px;
  }
 
  .right-section {
    min-height: 480px;
  }
 
  .blue-bg {
    width: 60%;
    height: 400px;
 
  }
 
  .main-image {
    bottom: 6px;
    width: 600px;
    height: 280px;
  }
 
  .established-label {
    top: 50%;
    right: 52px;
    font-size: 14px;
  }
    .read-more-btn {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
}
 
@media (min-width: 1800px) and (max-width: 2880px) {
  .history-section {
    padding: 80px 0;
  }
 
  .section-wrapper {
    gap: 100px;
  }
 
  .left-section {
    padding: 0 100px;
  }
 
  .vertical-line {
    font-size: 34px;
    letter-spacing: 3px;
    padding-top: 0;
  }
 
  .text-content {
    max-width: 680px;
  }
 
  .text-content h1 {
    font-size: 42px;
    margin-top: 4rem;
  }
 
  .text-content p {
    font-size: 20px;
    line-height: 1.7;
  }
 
  .read-more-btn {
    font-size: 18px;
    gap: 8px;
  }
 
  .right-section {
    min-height: 540px;
  }
 
  .blue-bg {
    height: 540px;
    width: 52%;
    bottom: 0;
  }
 
  .main-image {
    width: 820px;
    height: 380px;
    right: 150px;
    bottom: 0;
    border-radius: 12px;
  }
 
  .established-label {
    font-size: 18px;
    right: 100px;
    padding: 30px 12px;
    top: 50%;
  }
  .read-more-btn {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
 
}