@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
    font-family: 'custom2';
    src: url(font/Solar\ Vesta\ Script.otf) format('opentype');

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    line-height: 1.5rem;
}

body {
  background-color: #fffbf8;
}

:root {
    --goldcolor: #ce9014;
    --gold2: #936304;
    --white-color: white;
    --darkgold:#1a1817;
    --fadetext: #313131;
    --blackcolor: rgb(16, 13, 13);
    --font-1: "Poppins", sans-serif;
    --font-2: "custom2";
    --headingfont:"Elsie", serif;
    --lightgold: #faf9f8;
    --font-3:"Playfair Display", serif;
}


a {
    color: inherit;
}


.header {
    background: var(--darkgold);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

main {
    margin-top: 80px; /* Adjust based on header height */
    position: relative;
    z-index: 1;
}


.nav-header {
    padding: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo img {
    height: 80px;
}




.mobile-nav {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    transition: 0.3s;
    padding: 20px;
    z-index: 1001;
    overflow: hidden;
}

.ti-menu {
    font-size: 25px;
    font-weight: 300;
    color: rgb(255, 253, 253);
}

.ti-user {
  color: var(--white-color);
}



.mobile-nav.active {
    left: 0;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-list li {
    font-size: 0.9rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: rgb(16, 13, 13);
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mobile-nav .social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
    margin-top: 40px;
}


.but button {
  display: inline-block;
  background-color: var(--darkgold);
  border: none;
  color: #fff;
  padding: 10px 25px;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  font-family: var(--headingfont);
  transition: color 0.3s ease;
  z-index: 1;
}

.but button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--goldcolor);
  z-index: 0; 
  transition: width 0.4s ease-in-out;
  
}

.but button:hover::before {
  width: 100%;
}

.but button :hover {
  color: var(--white-color); 
   
}

.but button span {
  position: relative;
  z-index: 2; 
  font-family: var(--headingfont);
}




.but button {
    background-color: var(--darkgold);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.but {
  display: flex;
  flex-direction: row;
  gap: 20px;
}





/*----------------------HEROSECTION-----------------*/

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 60vh; /* Not full height as requested */
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center ; /* Ensure top of video is visible */
  }
  
  .thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.459); /* Black overlay with 60% opacity */
    z-index: 2;
  }
  
  .hero-content {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-2);
  }

  /*----------------------INTRO-----------------*/
  

  #intro {
    margin-top: 70px;
    overflow: hidden;
  }

  .intro1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .intro1 h1 {
    font-family: var(--headingfont);
    color: var(--goldcolor);
    letter-spacing: 0px;
    font-size: 1.5rem;
  }

  .intro1 h3 {
    line-height: 1.5rem;
    font-weight: 400;
    color: var(--darkgold);
    font-size: 0.9rem;
  }

  .intro1 h3 span {
    font-family: var(--headingfont);
    font-size: 1rem;
    font-style: italic;
  }

  .intro1 button {
    display: inline-block;
    background-color: var(--darkgold);
    border: none;
    color: #fff;
    padding: 10px 25px;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
    font-family: var(--headingfont);
    transition: color 0.3s ease;
    z-index: 1;
  }

  .intro1 button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--goldcolor);
    z-index: 0; 
    transition: width 0.4s ease-in-out;
    
}

.intro1 button:hover::before {
    width: 100%;
}

.intro1 button :hover {
    color: var(--white-color); 
     
}

.intro1 button span {
    position: relative;
    z-index: 2; 
    font-family: var(--headingfont);
}


/*-------------------BRIEF---------------*/

#brief {
    background-color: #fff8ec;
    margin-top: 70px;
}

.brief1 {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.brief2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.brief2 h2 {
    font-size: 1.7rem;
    font-family: var(--headingfont);
    color: var(--goldcolor);
}

.brief2 p {
    font-weight: 400;
    font-size: 0.9rem;
}

.brief2 button {
    display: inline-block;
    background-color: var(--darkgold);
    border: none;
    color: #fff;
    padding: 10px 25px;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
    font-family: var(--headingfont);
    transition: color 0.3s ease;
    z-index: 1;
  }

  .brief2 button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--goldcolor);
    z-index: 0; 
    transition: width 0.4s ease-in-out;
    
}

.brief2 button:hover::before {
    width: 100%;
}

.brief2 button :hover {
    color: var(--white-color); 
     
}

.brief2 button span {
    position: relative;
    z-index: 2; 
    font-family: var(--headingfont);
}

.brief1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/*-------------------SATISFACTION-----------------*/


#satis {
  background-image: url(image/15.jpg);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  overflow: hidden;
  height: 100vh;
  background-color: #080808bd;
  background-blend-mode: overlay;
  opacity: 1;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  
}


.expt {
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

.expt h6 {
  color: var(--gold-color);
  font-size: 1em;
  font-weight: 500;
}

.expt h1 {
  font-family: var(--font-1);
  color: var(--white-color);
  font-size: 1.4em;
  font-weight: 500;
}

.expt span {
  color: var(--gold-color);
  font-family: var(--font-1);
  text-decoration: underline;
}


.client-content h3 {
  margin-bottom: 10px;
  color: var(--white-color);
  font-size: 4em;
  font-weight: 400;
  font-family: var(--font-3);
}

.client-content p {
  color: var(--white-color);
  margin-bottom: 20px;
  font-family: var(--font-1);
}

.c-client {
  margin-top: 40px;
}



/*-------------EXPLORE THE SITE--------*/

.qui1 {
  background-color: var(--white-color);
  width: 100%;
  position: relative;
  padding-top: 20px;
  margin-top: 10px;
  height: auto;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the content horizontally */
  text-align: center; /* Ensures text alignment */
}


.qui1 {
  background-color: var(--white-color);
  width: 100%;
  position: relative;
  /* text-align: left; */
  padding-top: 40px;
  margin-top: 10px;
  height: auto;
  padding-left: 20px;
  padding-bottom: 40px;
}


.qui3 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qui2 h3 {
  font-family: var(--font-3);
  font-weight: 500;
  letter-spacing: 5px;
  font-size: 0.8em;
  display: inline-block;
  position: relative;
}

.qui2 h3::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%); /* Centers the line */
  width: 270px;
  height: 1px;
  background-color: var(--darkgold);
}

.qui4 {
  margin-top: 50px;
}

.qui4 h2 {
  margin-bottom: 10px;
  color: var(--goldcolor);
  font-weight: 500;
  font-family: var(--headingfont);
  font-size: 1.7rem;
}

.qui4 p {
  padding-right: 20px;
  line-height: 1.7em;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
}

.qui4 i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.qui4 .but {
  background-color: none;
  display: inline-block;
  padding: 15px 30px;
  cursor: pointer;
  border-top: 1px solid var(--goldcolor);
  border-bottom: 1px solid var(--goldcolor);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.qui4 .but:hover {
  background-color: var(--goldcolor);
}

/*--------------QUI4B--------*/
.butb {
  background-color: none;
  display: inline-block;
  padding: 15px 30px;
  cursor: pointer;
  border-top: 1px solid var(--darkgold);
  border-bottom: 1px solid var(--darkgold);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.butb:hover {
  background-color: var(--darkgold);
  color: #fff;
}

.qui4b h2 {
  margin-bottom: 10px;
  color: var(--darkgold);
  font-weight: 500;
  font-family: var(--headingfont);
  font-size: 1.7rem;
}

.qui4b p {
  padding-right: 20px;
  line-height: 1.7em;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
}

.qui4b i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}


/*--------------QUI4c--------*/
.butc {
  background-color: none;
  display: inline-block;
  padding: 15px 30px;
  cursor: pointer;
  border-top: 1px solid var(--gold2);
  border-bottom: 1px solid var(--gold2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.butc:hover {
  background-color: var(--gold2);
  color: var(--white-color);
}

.qui4c h2 {
  margin-bottom: 10px;
  color: var(--gold2);
  font-weight: 500;
  font-family: var(--headingfont);
  font-size: 1.7rem;
}

.qui4c p {
  padding-right: 20px;
  line-height: 1.7em;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
}

.qui4c i {
  margin-left: 10px;
  position: relative;
  top: 2px;
}









 /*========================OUR PROCESS================*/

 #process {
  /* margin-top: 80px;
  margin-bottom: 80px; */
  background-color: #fffefe;
}

.process1 {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.pro-text {
  margin-bottom: 30px;
  color: var(--goldcolor);
  font-family: var(--headingfont);
}


.pro-text h2 {
  font-family: var(--headingfont);
  font-size: 1.5rem;
  font-weight: 400;
}




.pro-image {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory; /* Enables snap scrolling */
  -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
  gap: 10px; /* Space between images */
}

.pro-container {
  background-color: var(--darkgold);
  color: var(--white-color);
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 100%;
  
}

.pro-container h3 {
  margin-bottom: 20px;
  font-family: var(--headingfont);
  font-size: 1.5rem;
  color: var(--goldcolor);

}

.pro-container p {
  line-height: 2em;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 0.9rem;
}

.hr-line {
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
  margin-bottom: 10px;
}

.pro-container span {
  position: relative;
  left: 80%;
  font-style: italic;
  font-size: 1.2em;
}

.pro-image::-webkit-scrollbar {
  display: none; 
}

.arrow {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.arrow-container {
  border: 1px solid var(--darkgold);
  border-radius: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 50px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
}

.pro-container span {
  font-family: var(--headingfont);
  font-style: italic;

}



  /* Section Styles */
  #ven-test {
    background-color: #faf8f8;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Vendor Registration Styles */
.vendor-registration {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vendor-registration h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--goldcolor);
    font-family: var(--headingfont);
}

.vendor-registration p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}



.vendor-registration button {
  display: inline-block;
  background-color: var(--darkgold);
  border: none;
  color: #fff;
  padding: 10px 25px;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  font-family: var(--headingfont);
  transition: color 0.3s ease;
  z-index: 1;
}

.vendor-registration button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--goldcolor);
  z-index: 0; 
  transition: width 0.4s ease-in-out;
  
}

.vendor-registration button:hover::before {
  width: 100%;
}

.vendor-registration button :hover {
  color: var(--white-color); 
   
}

.vendor-registration button span {
  position: relative;
  z-index: 2; 
  font-family: var(--headingfont);
}




.vendor-registration button {
    background-color: var(--darkgold);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vendor-registration button:hover {
    background-color: #555;
}

/* Testimonials Styles */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}


.testimonials-container h2 {

font-family: var(--headingfont);
color: var(--goldcolor);


}

.testimonials-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #333;
}

.testimonial-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(100%);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial.previous {
    transform: translateX(-100%);
}

.testimonial p {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial .testifier {
    font-weight: 600;
    color: #555;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}


/*----------------FOOTER-----------------*/

.footer {
  background-color: var(--darkgold);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.logo-container img {
  max-width: 150px;
  height: auto;
}

.social-iconns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.contact-infoo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
}

.menu a:hover {
  text-decoration: underline;
}

.horizontal-line {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 1rem 0;
}

.copyright {
  font-size: 0.9rem;
  font-weight: 300;
}

.copyright a {
  color: var(--goldcolor);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}



/*----------------other page----------*/

.buk1 {
  background-color: var(--darkgold);
  color: white;
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left:15px;
  margin-right: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.buk1 h3 {
  font-weight: 300;
  line-height: 1.6;
  font-size: 0.9rem;
}


/*------------BOOKING FORM---------*/


/* Styling for the booking form section */
#buk-form {
  background-color: var(--lightgold);
  padding: 3rem 0.5rem;
  font-family: 'Arial', sans-serif;
}

#buk-form .container {
  max-width: 900px;
  margin: 0 auto;
}

#buk-form h1, #buk-form h2 {
  text-align: center;
  color: var(--primary-color);
}

#buk-form h2 {
  font-size: 1rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-family: var(--font-1);
  color: var(--goldcolor);
}

#buk-form h1 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-family: var(--headingfont);
  font-weight: 600;
}

#buk-form form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

#buk-form .form-label {
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: block;
}

#buk-form .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

#buk-form .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

#buk-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

#buk-form .btn-primary {
  background-color: var(--darkgold);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
  margin-top: 1.5rem;
}

#buk-form .btn-primary:hover {
  background-color: var(--goldcolor);
}


/* Loading dots styling */
.loading-dots {
  display: inline-flex;
  margin-left: 8px;
  vertical-align: middle;
}

.d-none {
  display: none;
}

.loading-dots .dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  margin: 0 3px;
  display: inline-block;
  animation: dot-pulse 1.4s infinite ease-in-out;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}


@keyframes dot-pulse {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}


