@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;800&display=swap');
:root {
    --accent: #D4A373;
    --accent-bright:#F3D9A4;
    --dark-text: #191919;
    --white-text: #fff;
    --light-text: #727475;
    --dark-gray-text: #888A8C;
    --gray-background: #D9D9D9;
    --white-background: #fff;
    --accent-background: #FBF9F6;
  }
  /* to be deleted tbd end*/
/* reset all default margin and padding */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,a{
    list-style: none; 
}
/* Set up some basic styles */
html{
  scroll-behavior: smooth;
}
body {
  line-height: 1.4;              
  width: 100vw;
  overflow-x: hidden;
}
/* Style the scrollbar itself */
::-webkit-scrollbar {
  width: 15px;  /* Width of the vertical scrollbar */
  height: 12px; /* Height of the horizontal scrollbar */
}

/* Style the thumb (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
  background-color: var(--accent); /* Thumb color */
  border-radius: 10px;       /* Rounded corners for the thumb */
  border: 3px solid #f1f1f1; /* Border around the thumb */
  transition: all 0.4s ease;
}

/* Style the track (the area the thumb slides within) */
::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Track color */
  border-radius: 10px;       /* Rounded corners for the track */
}

/* Optional: Style the hover effect on the thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #d19458; /* Change color when the thumb is hovered */
}
.error-message{
  color: red;
}
.alert{
  position: fixed;
  bottom:30px;
  right:30px;
  transition: opacity 0.5s ease-in-out;
  animation: fadeOut 5s forwards;
  color: var(--white-text);
  padding: 20px;
  border-radius: 20px;
  z-index: 40;
}
.alert-success{
  background-color: #4CAF50;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.light-gray-text{
  color: var(--light-text) !important;
}
.dark-gray-text{
  color: var(--dark-gray-text) !important;
}
.white-color{
  color: var(--white-text) !important;
}
.dark-color{
  color: var(--dark-text) !important;
}
h1{
    color: var(--dark-text);
    font-size: 164px;
    font-family: 'Volgarie',sans-serif;
    color: var(--dark-text);
    font-weight: 500;
    line-height: 1;
    text-align: left;
    margin-bottom: 30px;
  }
h2{
    font-size: 24px;
    font-family: 'Poppins',sans-serif;
    color: var(--dark-text);
    font-weight: 400;
}
h3{
    font-size: 96px;
    font-family: 'Volgarie',sans-serif;
    color: var(--dark-text);
    font-weight: 400;
}
h4{
    font-size: 64px;
    font-family: 'Volgarie',sans-serif;
    color: var(--dark-text);
    font-weight: 400;
}
h5{
    font-size: 32px;
    color: var(--dark-text);
    font-weight: 500;
}
p{
    font-family: 'Poppins',sans-serif;
    color: var(--dark-text);
    font-weight: 200;
}
a{
    font-weight: 400;
    color: var(--white-text);
}
a, span{
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
}


.xl3-text{
    font-size: 48px;
}
.xl2-text{
    font-size: 40px;
}
.xl-text{
    font-size: 32px;
}
.l-text{
    font-size: 24px;
}
.m-text{
    font-size: 20px;
}
.s-text{
    font-size: 16px;
}
.xs-text{
    font-size: 10px;
}
.footer-text{
  font-size: 16px;
}

.bg-accent{
  background-color: var(--accent-background);
}
.max-1400{
  max-width: 1400px !important;
}
.container{
    padding: 200px 10% 100px 10%;
    margin-inline:auto;
  }
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 120px;
    width: 100vw;
    left: 0;
    z-index: 3;
    background-color: transparent;
  }
  .absolute{
    position: absolute;
  }

nav.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}      
nav.menu ul{
    display: flex;
    gap: 40px;
}
.about nav.menu ul a{
  color: var(--white-text);
}
.about nav.menu ul a{
  color: var(--white-text);
} 
.about .active-lang .lang-menu p{
  color: var(--white-text);
}  
.about .lang-menu svg path{
  stroke: var(--white-text);
}
.home nav.menu ul a{
  color: var(--dark-text);
}
nav.menu ul a{
    color: var(--dark-text);
    transition: all 0.4s ease;
}
nav.menu ul a:hover{
    font-size: 18px;
}
/* nav mobile start */
/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 5%;
  z-index: 3;

}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--dark-text);
  transition: all 0.3s ease;
}

/* Side menu (hidden by default) */
/* .mobile-menu {
  position: fixed;
  left: -250px; 
  top: 0;
  width: 250px;
  height: 100%;
  background-color: var(--accent-bright);
  color: var(--white-text);
  transition: left 0.3s ease;
} */
 /* TBD */
.mobile-menu-cointainer{
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
 .mobile-menu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: 10% 5% 0 5%;
  width: 100vw;
  height: 100vh;
  background-color: var(--accent);
  position: absolute;
  right: -100%;
  top: 0;
  z-index: 10;
  transition: right 0.4s ease-in-out;
  display: none;
}
.mobile-menu-x-button{
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 32px;
  color: var(--white-text);
}
.mobile-menu .logo-container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .logo-container img{
  width: 250px;
}
.mobile-menu ul{
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.mobile-menu ul a{
  color: var(--white-text);
  font-size: 32px;
}

/* Active state for side menu */
.mobile-menu.open {
  right: 0;
  position: fixed;
}

/* Hamburger icon turned to 'X' */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

/* nav mobile end */
.btn{
  min-width: 200px;
}
.outlined-btn{
  text-align: center;
  background-color: transparent;
  border: 1px solid black;
  color: var(--dark-text);
  border-radius: 50px;
  padding: 10px 60px;
  position: relative;
  overflow: hidden;

}
.white-btn{
  border-color: var(--white-text);
  color: var(--white-text);
}
.white-btn:hover span{
  color: var(--dark-text) !important;
}
.black-btn{
  text-align: center;
  background-color: var(--dark-text);
  color: var(--white-text);
  padding: 10px 20px;
  position: relative;
  overflow: hidden;

}
.outlined-btn:hover .btn-label {
  color: white;
}

.btn:hover .btn-bg {
  transform: translate(-50%, -50%) scale(1);
}
.btn-label{
  position: relative;
  font-weight: 400;
  transition: color 0.3s ease-out;
  z-index: 1;
}
.outlined-btn:hover .btn-label {
  color: var(--white-text);
}

.outlined-btn:hover .btn-bg {
  transform: translate(-50%, -50%) scale(1);
}
/* for fill animation */ 
.btn-bg{
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color:  var(--dark-text);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}
.black-btn .btn-bg{
  background-color: var(--accent-background);
  border: 1px solid var(--dark-text);
}
.btn-small{
    padding: 10px 45px;
    background-color: var(--dark-text);
    color: white;
    border-radius: 25px;
    transition: all 0.4s ease;
}
.btn-small:hover{
    transform: scale(1.1);
}

.hero-section{
  height: 100vh;

  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Horizontal, Vertical, Blur, Color */

}

.slide{
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  height: 100%;
  color: white;
  text-align: center;
  transition: opacity 1s ease; /* Optional fade transition for added effect */
  position: relative;
  
}
.slide-1{
  height: 100%;
  width: 100%;
  background: url('/storage/images/homepage/slide1.png');
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center
}
.slide-2{
  height: 100%;
  width: 100%;
  background: url('/storage/images/homepage/slide2.png');
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center
}

.hero-bottle{
  position: absolute;
  right: 200px;
  bottom: 100px;
  width: 240px;
  max-width: 30vh;
}

.slide-3{
  height: 100%;
  width: 100%;
  background: url('/storage/images/homepage/slide3.png');
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center
}
.hero-section h1{
  width: 50%;
  color: #000;
}

.hero-section p{
  width: 50%;
  color: #000;
  text-align: left;
}
.hero-section .btn{
  text-align: center;
  background-color: transparent;
  border: 1px solid black;
  color: var(--dark-text);
  border-radius: 50px;
  width: 250px;
  padding: 10px 0;
}
section{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* overflow: hidden; */
}
.only-mobile{
 display: none; 
}
.black-btn:hover{
    cursor: pointer;
    background-color: transparent;
    border: 1px solid var(--dark-text);
    color: var(--dark-text);
  }
.bg-gray{
    background-color: #D9D9D9;
}
.p-50{
  padding: 50px;
}
.mb-100{
  margin-bottom: 100px;
}
.w-100{
  width: 100%;
}
.flex{ /* this will be column in mobile */
    display: flex;
}
.flex-row{ /* this will always be row  */
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.flex-column{ 
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.justify-center{
  justify-content: center;
}
.space-between{
  justify-content: space-between;
}
.align-start{
  align-items: flex-start;
}
.align-center{
  align-items: center;
}
.gap-10{
    gap: 10px;
}
.gap-20{
    gap: 20px;
}
.gap-40{
    gap: 40px;
}

html.no-scroll {
  overflow: hidden;
}


/* swiper start */

/* Styling for Swiper container */
.swiper-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
    position: relative;
    overflow: hidden;
  }

  /* Each slide style */
  .swiper-slide {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    height: 100%;
    color: white;
    text-align: center;
    transition: opacity 1s ease; /* Optional fade transition for added effect */
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .slide-text-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .slide-text-container p{
    font-weight: 200;
    margin-bottom: 100px;
  }
  /* Optional: Fade effect for previous/next slides */
  .swiper-slide-prev, .swiper-slide-next {
    opacity: 0.7;
  }

  .swiper-slide-active {
    opacity: 1;
  }
  .divider{
    width: 90%;
    margin-inline:auto;
  }
  /* Pagination styling */
  .swiper-pagination {
    position: absolute;
    z-index: 1 !important
    ;
    bottom: 10px;
    text-align: center;
    width: 100%;
  }
  .swiper-pagination-bullet{
    border:1px solid white !important;
    background-color: transparent !important;

  }
  .swiper-pagination-bullet-active{
    background-color: white !important;
  }
  section{
    /* overflow: hidden; */
    width: 100vw;
  }
  /* floating images section start*/
    
    .floating-images-section{
        background-color: var(--accent-background);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
        overflow: hidden;
    }
    .floating-images-section .content{
      display: flex;
      justify-content: space-between;

    }
    .floating-images-section h3{
      margin-bottom: 30px;
    }
    .floating-images-section p{
      color: #727475;
    }
   
    .floating-images-section .floating-images{
      width: 50%;
      position:relative;
      padding-top: 30px;
      padding-left: 30px;
      width: 600px;
      display: flex;
      justify-content: center;
    }
    .floating-images-section .floating-images .large-image{
        width: 385px;
        margin-top: 30px;
        border-radius: 162.5px;
        position: relative; /* Ensure positioning is set */

      }
    .floating-images-section .floating-images .small-image1{
        position: absolute;
        right: 50px;
        top: -250px;
        width: 167px;
        border-radius: 162.5px;
        transform: rotate(-45deg);
    }
    .floating-images-section .floating-images .small-image2{
        position:absolute;
        right: -100px;
        top: 0;
        width: 190px;
        border-radius: 162.5px;
    }
    .floating-images-section .text{
        width: 45%;
        display: flex;
        flex-direction: column;
      justify-content: space-between;
        gap: 15px;
    }
    .floating-images-section .text h3{
        margin-bottom: 15px;
        font-weight: 400;
    }
    .floating-images-section .text p{
        font-weight: 300;
    }
  /* floating images section ends */

/* services slider section start */
.service-slider-section{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 200px 100px 0;
  }
/* .service-slider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
} */
.service-slider-section  h3{
    margin-bottom: 75px;
    align-self: start;
}
.service-slider-section  h2{
    margin-bottom: 40px;
    align-self: start;
}
.service-slider-section  p.l-text{
    margin-bottom: 100px;
    align-self: start;
    font-weight: 200;
    color: #727475;
}
.service-slider-section  a{
  font-size: 32px;
  font-weight: 200;
  font-family: 'Volgarie';
}
.service-slider-section  a{
  font-size: 32px;
  font-weight: 200;
  font-family: 'Volgarie';
}

.services-cards-container {
    overflow: hidden; 
    display: flex; /* Make sure the container uses flex to position the cards correctly */
    justify-content: center; /* Center the cards horizontally */
    max-width: 1200px; 
    margin-bottom: 100px;
  }
.service-card {
    opacity: 1; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #f8f2e9;
    color: var(--dark-text);
    font-size: 18px;
    box-sizing: border-box; 
    height: 275px !important;
    padding: 50px 30px 50px 30px;
    gap: 50px;
    text-align: left;
    border-radius: 20px;
    box-shadow: 4px 4px 12px #e9e4de,
               -4px -8px 12px #fff;
}
.service-card h5{
  text-align: left;
}
.service-card svg{
    margin-bottom: 30px;
}
    
.service-card h4,.service-card svg{
  color: var(--dark-text);
  stroke: #191919;
}
/* services slider section end */

/* services list section start */
.services-list{
  padding: 100px 10% 200px;
}
.services-list h4{
  min-height: 45px ;
}
.services-list .intro-text{
  text-align: left;
}
.service-list-button:hover{
  cursor: pointer;
}
.services-list .service-content{
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
}
.services-list .service-content.closed{
  max-height: 0;
}
.services-list .service-content.opened{
  max-height: 500px;
  padding: 50px;

}
.services-list .service-content p{
  max-width: 450px;
} 
.services-list .intro-text{
  max-width: 400px;
  width: 40%;
}
.service{
  height: fit-content;
  transition: all 0.4s ease;
}
.services-list .outlined-btn{
  margin-top: 100px;
}
.services-list .image-container img{
  border-radius: 50px;
}
/* services list section end */


/* homepage grid start */

.homepage .grid-container {
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-rows: repeat(4, 1fr); /* 4 rows */
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    width: 100%;
    padding: 100px 10px 0 10px;
    aspect-ratio: 3 / 4; /* 3 columns by 4 rows to maintain the aspect ratio */
    max-width: 90%;
    overflow: hidden;
}

.homepage .grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: var(--accent);
    font-size: 48px;
    height: 100%;
    text-align: center;
    overflow: hidden;
    border-radius: 50px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;

}

/* Positioning each item as per your instructions */
.homepage .grid-item.item1 {
    grid-row: 1;
    grid-column: 1;
    background: url('/storage/images/homepage/grid/grid-01.png');
  }

.homepage .grid-item.item2 {
    grid-row: 1;
    grid-column: 2;
    background: url('/storage/images/homepage/grid/grid-02.png');
  }

.homepage .grid-item.item3 {
    grid-row: 1 / span 2; /* Spans row 1 and 2 */
    grid-column: 3;
    background: url('/storage/images/homepage/grid/grid-03.png');
  }

.homepage .grid-item.item4 {
    grid-row: 2;
    grid-column: 1 / span 2;
    background: url('/storage/images/homepage/grid/grid-04.png');
  }

.homepage .grid-item.item5 {
    grid-row: 3 / span 2;
    grid-column: 1;
    background: url('/storage/images/homepage/grid/grid-05.png');

  }

.homepage .grid-item.item6 {
    grid-row: 3;
    grid-column: 2 / span 2; /* Spans across columns 2 and 3 */
    background: url('/storage/images/homepage/grid/grid-06.png');
  }

.homepage .grid-item.item7 {
    grid-row: 4;
    grid-column: 2;
    background: url('/storage/images/homepage/grid/grid-07.png');
  }

.homepage .grid-item.item8 {
    grid-row: 4;
    grid-column: 3;
    background: url('/storage/images/homepage/grid/grid-08.png');
  }
/* homepage grid end */


/* welcome */
.typed-out-container{
    height: 100vh;
    width: 100vw;
    animation-delay: 0.3s; 
    display: flex;  
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color:#FBFBFB;
  }
.typed-out-container.start-animation {
    animation: down 2.5s forwards ease;
    animation-delay: 2.5s; 
}
.typed-out{
    /* overflow: hidden; */
    white-space: nowrap;
    color: var(--dark-text);
    font-size: 1.6rem;
    width: 0;
    text-align: center;
    font-size: 100px;
    width: fit-content;
    font-weight: 400;
    position: relative;
    font-family: 'Allura'; 
  }
.typed-out.start-animation {
    animation: down 3s forwards ease;
    animation-delay: 2.2s;  
    width: fit-content; 
}
  .block{
    width: 100vw;
    height: 400px;
    position: absolute;
    left: 00%;
    top: 50%;  
    transform:  translateY(-50%);
    animation: typing-ltr 4s forwards ease;
    z-index: 50;
    background-color: var(--accent-background);
  }
  /* @keyframes typing {
    from { width: 0 }
    to { width: 300px }
  } */
  @keyframes typing-ltr{

    to { transform: translateX(100vw) }
  }
  @keyframes typing-rtl{

    to { transform: translateX(-100vw) }
  }
  @keyframes down {

    to { transform: translateY(1500px) ;
        display:none
    }
  }
  
  /* plans section start*/
  .plans-section{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding-inline: 5%;
  }
  .plan-cards{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 0 5%;

  }
  .plan-card{
    background-color: var(--accent-background);
    padding: 30px;
    border-radius: 50px;
    width: 370px;
    height: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .plan-card-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .plan-card-text{
    color: var(--accent);
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .plan-features {
    align-self: flex-start ;

  }
  .plan-features p{
    font-weight: 300;
    color: #727475;
    margin-bottom: 20px;

    text-align: left ;
    font-size: 16px;
  }
  .plan-card a{
    padding: 5px 40px;
    text-align: center;
  }
  /* tbd */
  /* plans section end*/
  /* reach us start */
  .reach-us{
    height: 100vh;
    position: relative;
    overflow: hidden ;
    transition: all 0.4s ease;
}
  .reach-us a:hover{
    transform: scale(1.1);
    color: var(--accent);
    transition: all 0.8s ease;
  }
  .reach-us a{
    font-size: 350px;
    color: var(--dark-text);
    font-family: 'MonteCarlo';
    transition: all 0.4 ease;
  }
  .block1{
    width: 90vw;
    height: 500px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.4 ease;
  }
  /* reach us end */
/* homepage end */
/* about start*/
.about-header{
  position: relative;
  width: 100vw;
  height: 80vh;
  background-color: #000;
}
.about-header .background{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: url('/storage/images/about/about-header-low.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.header-content-container{
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding:  0;
}

.about-page-container h1{
  font-weight: 500;
}
.about-page-container h2{
  font-size: 48px;
  font-family: 'Volgarie';
}
.header-content-container{
  padding-inline: 124px;
  padding-bottom: 124px;
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
 span{
  font-size: inherit;
  font-family: inherit;
}
/* old second section start */

  /* .second-section{  
    padding: 100px 10% 200px 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 90px;
  }
  .second-section .content{
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .tbd-1{
    height: 450px;
    width: 600px;
  }
  .second-section p{
    width: 40%;
    color: var(--light-text);
  }
  .tbd-2{
    width: 400px;
    height: 300px;
    position: absolute;
    right: 0;
    bottom:  -150px;
  } */
/* about us divider section start */
  .divider-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 300px 10% 150px 10%;
    margin-inline:auto;

  }
  .divider-container p{
    font-family: 'Volgarie';
    color: var(--dark-text);
  }

  /*old fourth section */
  .fourth-section{
    padding: 100px 10% 300px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .fourth-section .content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
  }
  .fourth-section h3{
    align-self: start;
    text-align: left;
  }
  .fourth-section p{
    color: var(--light-text);
    width: 40%;
  }
  .tbd-3{
    width: 500px;
    height: 450px;
    border-radius: 100px;
  }
  .tbd-4{
    width: 300px;
    height: 300px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    bottom: -150px;
  }

  /* new second section start */
  .about-second-section{
    padding: 200px 10% 100px 10%;
  }  
  .about-page-container .innner-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1450px;  
  }
  .about-third-section .figure-container{
    position: relative;
  }
.about-third-section {
  margin-inline:auto;
}
  .about-page-container .figure{
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 1;
    width: 400px;
  }
  .about-page-container .figure-bg1{
    position: absolute;
    top: 0px;
    left: 50px;
    width: 200px;
  }
  .about-page-container .figure-bg2{
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 0;
    width: 400px;
  }

    
  .about-second-section .black-btn{
    width: 269px;
  }
    .about-second-section .content{
        max-width: 550px;

        display: flex;
        flex-direction: column;
        gap: 60px;
        z-index: 1;
      }
  .about-second-section .content h2{
    font-size: 56px;
  }
  /* new second section end */
  /* about third section start */
  .about-third-section{
    padding: 100px 10%;
    gap: 30px;
  }
  .about-third-section p {
    max-width: 500px;
  }
  .about-third-section .h3{
    margin-bottom: 50px;
  }
  .about-page-container .images-container{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-bottom: 200px;
    width: 100%;
  } 
  .about-page-container .img1{
    width: 360px;
    aspect-ratio: 1;
  }
  .about-page-container .img2{
    width: 500px;
    border-radius: 50px;
    aspect-ratio: 1;
  }
  /* about third section end */
  /* 8-oils section start */
  .eight-oils-section{
    padding: 200px 5% 100px 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow:hidden;
  }
  .eight-oils-section .eight-oils-container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 800px;
    overflow: hidden;
    margin-inline:auto;
  }
  .back-front{
    position: relative;
    overflow: hidden;
    width: 175px;
    top: 0;
    height: 500px;
  }
  .eight-oils-section .eight-oils-back-top{
    width: 200px;
    position: absolute;
    top: 10px;
    left: 35px;
  }
  .eight-oils-section .eight-oils-back-bottom{
    width: 200px;
    position: absolute;
    bottom: 0;
    height: 500px;
    left: 0;
  }
  .eight-oils-section .eight-oils-front{
    position: absolute;
    width:1000px;
    background-repeat: repeat-x;
    height: 400px;
    bottom: 50px;
    left: -800px;
  }
  .eight-oils-section p{
    font-size: 128px;
    color:var(--white-text);
    font-weight:500;
    font-family: 'Volgarie';
  }
  .eight-oils-section .leafs{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
  }
  .eight-oils-section .fruit{
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
  }
  .eight-oils-section .fruit1{
    animation: wiggle1 20s cubic-bezier(0, 0,0,0) infinite; /* Slower, smoother wiggle */
    
  }
  @keyframes wiggle1 {
    0% {
      transform: translateX(0) rotate(0);
    }
    20% {
      transform: translateX(-18px) translateY(-20px) rotate(120deg);
    }
    40% {
      transform: translateX(13px) translateY(-10px) rotate(240deg);
    }
    60% {
      transform: translateX(-8px) translateY(-4px) rotate(300deg);
    }
    80% {
      transform: translateX(8px) rotate(320deg);
    }
    100% {
      transform: translateX(0px) translateY(0px) rotate(0);
    }
  }
  
  .eight-oils-section .fruit3{
    animation: wiggle2 15s cubic-bezier(0, 0,0,0) infinite; /* Slower, smoother wiggle */
    
  }
  @keyframes wiggle2 {
    0% {
      transform: translateX(0) rotate(0);
    }
    20% {
      transform: translateX(18px) translateY(10px) rotate(120deg);
    }
    40% {
      transform: translateX(-13px) translateY(20px) rotate(240deg);
    }
    60% {
      transform: translateX(13px) translateY(0px) rotate(300deg);
    }
    80% {
      transform: translateX(8px) rotate(320deg);
    }
    100% {
      transform: translateX(0px) translateY(0px) rotate(00);
    }
  }
  .eight-oils-section .fruit4{
    animation: wiggle3 60s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite; /* Slower, smoother wiggle */
    
  }
  @keyframes wiggle3 {
    0% {
      transform: translateX(0) translateY(0) translateZ(0) rotate(0deg);

    }
  50%{
    transform: rotate(-180deg) ;

  }
    100% {
      transform: rotate(-360deg) translateX(-0) translateY(-0) translateZ(-0);

    }
  }
  .eight-oils-section .fruit1{
    position: absolute;
    left: 150px;
    top: 150px;
    width: 150px;
  }
  .eight-oils-section .fruit2{
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 375px;
  }
  .eight-oils-section .fruit3{
    position: absolute;
    right: 150px;
    top: 250px;
    width: 150px;
  }
  .eight-oils-section .fruit4{
    position: absolute;
    right: -100px;
    top: 0;
    width: 300px;
  }
  .eight-oils-section .fruit5{
    position: absolute;
    right: 47%;
    top: 55%;
    z-index: -1;
    width: 400px;
  }
  .eight-oils-section .fruit6{
    position: absolute;
    right: 36%;
    top: 60%;
    z-index: 1;
    width: 250px;
  }
  .eight-oils-section .line{
    position: absolute;
    right: 0;
    bottom: 400px;
    z-index: -1;
  }
  .eight-oils-section .shadow{
    position: absolute;
    left: 20%;
    bottom: 200PX;
    z-index: -2;
    width: 1200px;
  }
  /* 8-oils section end */
/* about end*/
/* services start */
.services-page-container .page-header{
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.services-page-container .page-header .header-content-container{
  width: 60%;
  height: 100%;
  padding-top:300px;
}
/* services end */
/* single service start */
.single-service-header{
  width: 100vw;
  padding: 300px 0 200px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single-service-header .title-container{
  padding: 0 0 0 5%;
}
.single-service-header .background{
  background: url('/storage/images/services/single-service-background.png');
  width: 100vw;
  height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-service-list {
  list-style-type: circle ;
  padding-left: 20px;
  margin-bottom: 20px;
}
.single-service-list li {
  font-weight: 200;
  margin-bottom: 10px;
}
/* single service content */
/* Styling for the Grid Section */
.single-service-page-container .grid-section {
  padding: 100px 10% 100px 10%;
}

/* Grid layout with two columns */
.single-service-page-container .grid-container {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 70px;
  width: 100%;
}

/* Styling for each section */
.single-service-page-container .left-section {
  padding: 20px;
}

.single-service-page-container .right-section {
  padding: 20px;
}

.single-service-page-container .image1,.single-service-page-container .image2{
  width: 450px;
}

/* Mobile version: Make left section appear on top */
@media (max-width: 768px) {
 
}

.single-service-page-container .other-services{
  width: 100%;
  border: 1px solid #a4a4a46e;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:10px 0;
}
.single-service-page-container .other-services hr{
  border: 1px solid #a4a4a46e;
}
.single-service-page-container .other-services li{
  padding:10px 30px ;
}
.single-service-page-container .other-services li:first-of-type{
  text-align: center;
}
.single-service-page-container .other-services a{
  
}

.single-service-page-container .service-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.single-service-page-container .service-content .service-background{
  width: 100%;
  background: url('/storage/images/services/makeup.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}
.single-service-page-container .service-text{
  margin-bottom: 30px;
}
.single-service-page-container h2{
  font-size: 36px;
  font-family: 'Volgarie';
  margin-bottom: 30px;
}
.single-service-page-container h4{
  font-weight: 600;
  color: var(--light-text);
  font-family: "Poppins";
  margin-bottom: 20px;
}
.single-service-page-container p{
  margin-bottom: 30px;
}
.single-service-page-container .service-content .images-container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 125px;
}
/* single service end */
/* contact us page start */
.contact-page-container{
}
.three-cards {
  padding: 300px 10% 100px 10%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center; 
  align-items: center; 
  justify-content: center;
}
  .three-cards .outlined-card{
    width: 100%; 
    max-width: 386px;
    min-width: 250px;
    padding: 30px;
    height: 344px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    background: transparent;
    border: 1px solid #eeeeee;
    box-shadow: 4px 12px 12px rgba(0, 0, 0, 0.3); /* Horizontal offset, vertical offset, blur radius, color */

  }
  .three-cards .outlined-card p,.three-cards .outlined-card a{
    color: var(--dark-text);
    font-weight: 300;
  }
  .three-cards .outlined-card .phone-numbers{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .three-cards .card img{
  }
  /* form map section */
  /* Section Styling */
.contact-form-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

/* Form Container */
.form-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  box-shadow: 4px 12px 12px rgba(0, 0, 0, 0.3); /* Horizontal offset, vertical offset, blur radius, color */
}

.form-container h2{
  font-family:  'volgarie';
  font-size: 40px;
  margin-bottom: 40px;
}
/* Left Form Section */
.form-left {
  width: 48%;
  padding: 50px;
}

/* Form Styling */
.contact-us-page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

 .contact-us-page-form .form-group {
  display: flex;
  flex-direction: column;
}

 .contact-us-page-form label {
  font-size: 20px;
  margin-bottom: 20px;
}

 .contact-us-page-form .email-phone > *{
    width: 50%;
 }
 .contact-us-page-form input::placeholder, textarea::placeholder {
  transition: color 0.4s ease;

 }
 .contact-us-page-form input, textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.contact-form-section .form-right{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-section .form-right iframe{
  width: 100%;
  height: 800px;
  border-radius: 20px;
}
input:focus, textarea:focus {
  outline-color: transparent;
  border-color: var(--dark-text);
}
input:focus::placeholder,textarea:focus::placeholder {
  color: transparent; /* Hides placeholder text when the input is focused */
}
/* Submit button */
.contact-us-page-form .btn{
  width: 225px;
  font-size: 20px;
}


/* Right Google Map Section */
 .contact-us-page-form .form-right {
  width: 48%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
 .contact-us-page-form   .form-container {
      flex-direction: column;
  }

 .contact-us-page-form   .form-left, .form-right {
      width: 100%;
      margin-bottom: 20px;
  }
}
/* contact us page end */
/* footer start */
footer {
  background-color: var(--accent-background);
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100vw;
}
a{
  color: var(--dark-text);
}
.footer-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 25%; /* Each column takes up 25% of the width */
  margin-right: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
}

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

.footer-column li {
  margin-bottom: 10px;
}
.footer-column li a{
    transition: all 0.4s ease;
}
.footer-column li a:hover {
  transition: all 0.4 ease;
  color: var(--accent);
  font-size: 18px;
}


.footer-logo {
  margin-bottom: 20px;
}

.footer-email {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.footer-btn {
  padding: 10px 20px;
  color: white;
  border: none;
  cursor: pointer;
}

.footer-btn:hover {
}

@media screen and (max-width: 768px) {
  .footer-column {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* footer end */

/* lang menu start */
.lang-menu{
  position: relative;
  height: fit-content;
  width: 100px;
  height: fit-content;

}
.active-lang:hover{
  cursor: pointer;
}
.lang-options{
  position: absolute;
  display: flex;
  bottom: -100px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
}
.lang-options.active{
  padding: 10px;
  max-height: fit-content;
}

/* lang menu end */