body {
  box-sizing: border-box;
  overflow-x: hidden !important;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --background-color: #f1c40f;
  --text-color: #2c3e50;
  --white: #ffff;
}

h3 {
  font-size: 16px !important;
}

/* home slider */
.carousel-item video,
.carousel-item img{
  width: 100%;
  height: 86vh;
  object-fit: cover;
}
/* gallery */
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: rgb(0 0 0 / 0.75);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--white) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: rgb(0 0 0 / 0.75);
  color: var(--white) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
.gallery {
  width: 100%;
  height: 40vh;
}
.book__img img,
.gallery-item img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking__section {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

@media (max-width: 516px) {
  .booking__section {
    width: 90%;
  }
  .about__video{
    width: 100%;
  }
  .booking__section{
    width: 90%;
  }
  .gallery{ 
    overflow: hidden !important;
  }
  .navbar-brand{
    width: 70%;
  }
  .navbar-brand img{
    height: 6vh ;
    object-fit: contain;
  }
  .navbar-brand span{
    font-size: 15px !important;
  }
  .carousel-item video,
    .carousel-item img {
    height: 20vh;
  }
}

/* Floating contact icons */
.contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Specific colors for each icon */
.whatsapp {
  background-color: #25d366;
} /* WhatsApp */
.telegram {
  background-color: #0088cc;
} /* Telegram */
.phone {
  background-color: #ff5722;
} /* Phone Call */

/* FontAwesome Icons */
.contact-icons i {
  font-size: 26px;
}
.gallery-item {
  width: 100%;
  height: 70vh;
}
.book__img {
  height: auto;
}