body {
  font-family: "Poppins", sans-serif;
}


header .logo {
  width: 150px;
  height: auto;
}

.header-button{
   background: #e4a101;
  color: #ffffff;
  border: none;
  padding: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}
.header-button:hover{
  background-color: #e4a101;
  color: #ffffff;
}
.header-button::before {
   content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(10px);
  transform: skewX(-20deg);
  animation: smokeFlow 3s infinite linear;
}
.header-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: overlay;
}

@keyframes smokeFlow {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}


.banner {
  background: url('../img/banner.jpg') center center/cover no-repeat;
  min-height: 90vh;
  position: relative;
}
.banner-button{
    color: #e4a101;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.banner .container {
  position: relative;
  z-index: 1;
}
.banner h1 {
  font-size: 2.5rem;
}
.banner p {
  font-size: 1.1rem;
}

a{
  text-decoration: none;
}
.booking-form {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 
 
}


.about h2 {
  color: #000000;
}
.about h2 span{
    color: #e4a101;
}

.services .service-box img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}
.services .service-box {
  transition: transform 0.3s ease;
}
.services .service-box p{
    text-align: justify;
    hyphens: auto;
    font-size: 15px;
    margin-top: 15px;
}
.service-box h5{
    font-size: 17px;
    text-align: center;
}
.services .service-box:hover {
  transform: translateY(-8px);
  border-bottom: 4px solid #e4a101;
  border-top:  4px solid #e4a101;
}


.why-choose {
  background: #e4a101;
}
.why-choose .icon {
  font-size: 2.5rem;
  display: inline-block;
  background: #000000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  color: #e4a101;
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose .card:hover .icon {
  background: #e4a101;
  color: #000000;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .banner {
    text-align: center;
  }
  .banner h1 {
   font-size: 25px;
        margin-top: 25px;
  }

}
@media (max-width: 576px) {
  .banner {
    min-height: 80vh;
  }
  .about img {
    margin-top: 20px;
  }
}




.book-spa-section {
  background: url('../img/banner1.jpg') center center/cover no-repeat;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.book-spa-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.book-spa-section .container {
  position: relative;
  z-index: 1;
}

.booking-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form .form-control,
.booking-form .form-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 10px;
}

.booking-form .form-control::placeholder,
.booking-form .form-select,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.booking-form select option {
  color: #000;
}

.booking-form .btn {
  background-color: #e4a101;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.booking-form .btn:hover {
  background-color: white;
  color: #e4a101;
}

.custom-select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1rem;
  color: #fff;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select-wrapper select:focus + .select-arrow,
.custom-select-wrapper select:active + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.info-box {
  background: rgba(255, 255, 255, 0.15); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.info-box .icon {
  font-size: 1.8rem;
  color: #e4a101;
  flex-shrink: 0;
}

.info-box .text h6 {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.info-box .text p,
.info-box .text a {
  color: #fff;
  font-size: 1rem;
  margin-top: 3px;
}

@media (max-width: 767px) {
  .info-box {
    flex-direction: row;
    text-align: left;
  }
  .info-box .icon {
    font-size: 1.5rem;
  }
  .info-box .text p {
    font-size: 0.95rem;
  }
}
@media (max-width: 767px) {
  .book-spa-section {
    text-align: center;
  }
  .booking-form {
    padding: 1.5rem;
  }
  header .logo {
    width: 85px;
    height: auto;
}
}

.relax-section {
  background: #f5f5f5; 
}

.relax-box {
  background: linear-gradient(135deg, #e4a101 0%, #000000 100%);
  border-radius: 0 30px 0 30px; 
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.relax-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.relax-box h2 {
  font-size: 2rem;
}

.relax-box p {
  font-size: 1.1rem;
  line-height: 1.7;
}


@media (max-width: 767px) {
  .relax-box {
    padding: 1.5rem;
    border-radius: 0 20px 0 20px;
  }

  .relax-box h2 {
    font-size: 1.6rem;
  }

  .relax-box p {
    font-size: 1rem;
  }
  .about h2 {
    color: #000000;
    font-size: 21px;
}
.about p{
  text-align: justify;
  hyphens:  auto;
  font-size: 15px;
}
.services p{
  font-size: 15px;
}
}

.mobile-cta {
  display: none !important;
}



@media (max-width: 767px) {
  .mobile-cta {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #e4a101;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.25);
  }

  .mobile-cta .cta-btn {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: background 0.3s ease;
  }

  .mobile-cta .cta-btn:hover {
    background-color: #e4a101;
  }
  footer{
    margin-bottom: 25px;
  }
}

.thankyou-section {
  padding: 10px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: white;
  z-index: 0;
}

.thankyou-box {
  position: relative;
  z-index: 1;
  background: #e4a101;
  backdrop-filter: blur(12px);
  border-radius: 30px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.thankyou-box h2 {
  font-size: 2rem;
}

.thankyou-box p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn-spa {
  background-color: #1cb7ff;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-spa:hover {
  background-color: #17a2e0;
  box-shadow: 0 5px 15px rgba(28,183,255,0.5);
}


@media (max-width: 767px) {
  .thankyou-box {
    padding: 2rem 1.5rem;
  }
  .thankyou-box h2 {
    font-size: 1.7rem;
  }
  .thankyou-box p {
    font-size: 1rem;
  }
}