* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }



  .header {
    /* position: sticky;  */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    /* background: rgba(255, 255, 255, .1);  */
    background-color: rgba(155, 155, 155, .4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, .2);
  }

  .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
  }

  .header:hover::before {
    left: 100%;
  }

  .navbar a {

    color: black;
    font-size: 14px;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
  }

  .navbar a:hover {
    color: #f00;
  }

  


  #searchBox {
    width: 300px;
    padding: 10px;
    margin-top: 1%;
    border-radius: 20px;
    /* border: 2px solid red; */
  
  }
  
  #searchIcon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 5px;
  
  }

  .login-button {
    background-color: transparent;
    /* Green */
    border: none;
    color: black;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid black;
  }

  /* Hover effect */
  .login-button:hover {
    background-color: grey;
  }

  /* Pressed effect */
  .login-button:active {
    background-color: grey;
  }

  /* banner */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .container {
    /* max-width: 1100px;  */
    width: 95%;

  }

  .slider-wrapper {
    position: relative;
    margin-left: 5%;
  }

  .slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);

  }

  .slider-wrapper .slide-button:hover {
    background: #404040;
  }

  .slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
  }

  .slider-wrapper .slide-button#next-slide {
    right: -25px;
  }

  .slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    background-size: 100%;
  }

  .slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
  }

  .slider-wrapper .image-list .image-item {
    margin-top: 1%;
    /* width: 500;   */
    height: 500px;
    /* object-fit: cover;   */

  }

  .container .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;

  }

  .slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }

  .slider-scrollbar:hover .scrollbar-track {
    height: 4px;
  }

  .slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }

  .slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }

  .slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }

  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
    .slider-wrapper .slide-button {
      display: none !important;
    }

    .slider-wrapper .image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }

    .slider-wrapper .image-list .image-item {
      width: 280px;
      height: 380px;
    }

    .slider-scrollbar .scrollbar-thumb {
      width: 20%;
    }
  }
  .newin {
    height: 10vh;
    text-align: center;
    font-size: 30px;
    margin-top: 2%;
  }
  
  
  /* product */
  .best {
    height: 100vh;
    width: 100%;
    /* padding-left: 5%; */
    /* border: 2px solid black; */
  }
  
  .bestrap {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: -1px;
  }
  
  .bestimg p {
    text-align: center;
    color: grey;
    margin-top: 5.5%;
  }
  
  .bestimg h4 {
    text-align: center;
    font-size: 16px;
    
  }
  .bestimg img{
    margin-left: 9%;
  }
  .bestimg h5 {
    text-align: center;
    font-size: 15px;
    margin-top: 2%;
    color: grey;
  }

  .image-box img {
    /* max-width: 100%; */
    transition: all 0.3s;
    display: block;
    /* width: 100%; */
    /* height: auto; */
    transform: scale(1);
    display: inline;
    margin-top: 8%;
    height: 75vh;
    margin-left: 2%;
    /* border-radius: 20px; */
  }
  
  .image-box:hover img {
    transform: scale(1.1);
  }

/* buy button */
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px; 
  margin-left: 30%;
  margin-top: 4%;
}
.btn-12 span i{
  color: black;
  font-size: 25px;
}
.btn-12 span {
  background: orange;
color: black;
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 15px; 
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}


/* signup */
.login-button2 {
  background-color: transparent;
  /* Green */
  border: none;
  color: black;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid black;
  margin-left: 38%;
  margin-top: 3%;
}

/* Hover effect */
.login-button2:hover {
  background-color: grey;
}

/* Pressed effect */
.login-button2:active {
  background-color: grey;
}
  .coat {
    height: 10vh;
    text-align: center;
    font-size: 30px;
    margin-top: 5%;
  }
  
  
  /* coat */
  .coatbest {
    height: 100vh;
    width: 100%;
    /* padding-left: 5%; */
    /* border: 2px solid black; */
  }
  
  .coatbestrap {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: -1px;
  }
  
  .coatbestimg p {
    text-align: center;
    color: grey;
    margin-top: 5.5%;
  }
  
  .coatbestimg h4 {
    text-align: center;
    font-size: 16px;
    margin-top: 2%;
  }
  .coatbestimg img{
    margin-left: 5%;
  }
  .coatbestimg h5 {
    text-align: center;
    font-size: 15px;
    margin-top: 2%;
    color: grey;
  }

  .video{
    margin-top: 3%;
    width: 100%;
  }


  /* bundi */
.bundi {
  /* height: 10vh; */
  text-align: center;
  font-size: 30px;
  margin-top: 2%;
}
.bundibest {
  height: 100vh;
  width: 100%;
  /* padding-left: 5%; */
  /* border: 2px solid black; */
  /* margin-top: 10%; */
}

.bundibestrap {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: -1px;
}

.bundibestimg p {
  text-align: center;
  color: grey;
  margin-top: 5.5%;
}

.bundibestimg h4 {
   text-align: center; 
  font-size: 16px;
  margin-top: 2%;

}
.bundibestimg img{
  margin-left: 10%;
}
.bundibestimg h5 {
  text-align: center;
  font-size: 15px;
  margin-top: 2%;
  color: grey;
}


/* cocktail */
.haldi {
  /* height: 10vh; */
  text-align: center;
  font-size: 30px;
  margin-top: 5%;
}
.haldibest {
  height: 100vh;
  width: 100%;
  /* padding-left: 5%; */
  /* border: 2px solid black; */
  /* margin-top: 10%; */
}

.haldibestrap {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: -1px;
}

.haldibestimg p {
  text-align: center;
  color: grey;
  margin-top: 5.5%;
}

.haldibestimg h4 {
  text-align: center;
  font-size: 16px;
  margin-top: 2%;
  margin-left: 10%;
}
.haldibestimg img{
  margin-left: 10%;
}
.haldibestimg h5 {
  text-align: center;
  font-size: 15px;
  margin-top: 2%;
  color: grey;
}


/* mehendi */
.bridal {
  /* height: 10vh; */
  text-align: center;
  font-size: 30px;
  margin-top: 5%;
}
.bridalbest {
  height: 100vh;
  width: 100%;
  /* padding-left: 5%; */
  /* border: 2px solid black; */
  /* margin-top: 10%; */
}

.bridalbestrap {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: -1px;
}

.bridalbestimg p {
  text-align: center;
  color: grey;
  margin-top: 5.5%;
}

.bridalbestimg h4 {
  text-align: center;
  font-size: 16px;
  margin-top: 2%;
  margin-left: 10%;
}
.bridalbestimg img{
  margin-left: 4%;
}
.bridalbestimg h5 {
  text-align: center;
  font-size: 15px;
  margin-top: 2%;
  color: grey;
}

/* khaab */
.khaab {
  /* height: 10vh; */
  text-align: center;
  font-size: 30px;
  margin-top: 5%;
}
.khaabbest {
  height: 105vh;
  width: 100%;
  /* padding-left: 5%; */
  /* border: 2px solid black; */
  /* margin-top: 10%; */
}

.khaabbestrap {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: -15px;
}

.khaabbestimg p {
  text-align: center;
  color: grey;
  margin-top: 5.5%;
}

.khaabbestimg h4 {
  text-align: center;
  font-size: 16px;
  margin-top: 2%;
  margin-left: 10%;
}
.khaabbestimg img{
  margin-left: 4%;
}
.khaabbestimg h5 {
  text-align: center;
  font-size: 15px;
  margin-top: 2%;
  color: grey;
}

/*  top button */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 40px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: yellow; /* Set a background color */
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 90px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: white; /* Add a dark-grey background on hover */
}
/* footer  */
.footer {
  width: 100%;
  height: 75vh;
  background-color:black;
  margin-top: 3%;
}

.footrap {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding-top: 20px;
  padding-left: 4%;
}

.box8 h3 {
  color: white;
  /* font-size: 15px; */
  margin-top: 9%;
}

.box8 p {
  padding-top: 2%;
  margin-top: 4%;
  color: wheat;
  /* font-size: 12px; */
}

.box8 img {
  padding-top: 4%;
  padding-left: 8px;
}

.box8 h4 {
  margin-top: 4%;
  color: white;
  font-size: 20px;
}
#myEmail{
  margin-top: 5%;
 height: 6vh;
 width: 80%;
  background-color: wheat;
}
#myLOCATION{
  margin-top: 5%;
 height: 6vh;
 width: 80%;
 background-color: wheat;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: -10%;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.site {

  margin-top: 1%;
  margin-left: 60%;

}


