/********** Template CSS **********/
:root {
  --primary: #fea116;
  --light: #f1f8ff;
  --dark: #0f172b;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position:fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 43, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.carousel-logo-container {
  position: absolute;
  top: 10px; 
  left: 50px; 
  width: 100%; 
  display: flex;
  justify-content: start; 
  z-index: 10; 
}

.carousel-logo {
  width: 15%; 
  max-width: 150px; 
  height: auto;
}

@media (max-width: 768px) {
  .carousel-logo-container {
    justify-content: center;
    top: 10px; 
    left: 0px; 
    width: 100%;
  }
  .carousel-logo {
    width: 12%; 
   
  }
}

@media (max-width: 480px) {
  .carousel-logo-container {
    justify-content: center; 
    top: 10px; 
    left: 0px; 
    width: 100%;
  }
  .carousel-logo {
    width: 12%;  
  }
}


@media (max-width: 915px) {
  .carousel-logo {
    width: 15%; 
    left: 50px;   
    max-width: 150px; 
    content: center;
  }
}



.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** facilities ***/
.container_f {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.topic_f {
  text-align: center;
  margin-bottom: 20px;
  color: #fea116;
}

.icons {
  text-align: center;
  margin-bottom: 20px;
}

.icons span {
  display: inline-block;
  margin: 0 10px;
  font-weight: bold;
}

.icons img {
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.facilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.facility {
  width: 48%;
  margin-bottom: 20px;
}

.facility h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.facility ul {
  list-style: none;
}

.facility ul li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.facility ul li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .facility {
    width: 100%;
  }

  .icons span {
    display: block;
    margin: 10px 0;
  }
}

/*** Areas ***/

.areas_bg {
  background-color: #0f172b;
  padding: 20px;
  background-image: url(../images/areas_bg.jpg);
  background-size: cover;
  background-position: center;
}

.areas {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffffaf;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.areas_heading {
  text-align: center;
  margin-bottom: 10px;
  color: #fea116;
}

.areas_div_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.areas_div {
  width: 40%;
  margin-bottom: 15px;
}

.areas_div h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}

.areas_div h3 .icon {
  margin-right: 10px;
  font-size: 20px;
}

.areas_div ul {
  list-style: none;
}

.areas_div ul li {
  margin-bottom: 5px;
  color: black;
}

@media (max-width: 768px) {
  .areas_div {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .areas_div {
    width: 100%;
  }
}

/*  footer */
.footer .bg-primary {
  background-color: #fea116 !important;
}

.footer .btn-social {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer .btn-social i {
  font-size: 20px;
}

.footer .section-title {
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.footer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fea116;
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}
