h2, .abouttext, .box-title, .why, h3, ul{
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

/* navbar */
.logo {
    width: 350px;
}

.nav-link {
    color: rgb(245, 244, 242) !important;
    padding: 22px !important;
    font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
    border: 1px solid rgb(199, 163, 73);
}

.active {
    color: rgb(252, 228, 199) !important;
}
.footerheading{
  color: rgb(245, 208, 106)!important;
}
/* hero banner */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.carousel-slide {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: top 1s ease-in-out;
}

.carousel-slide.active {
    top: 0;
}

.carousel-slide.next {
    top: 100%;
}

/* about section */
.about-heading {
    padding-top: 80px;
    font-size: 45px;
}

.about-para {
    color: rgb(202, 170, 114);
    padding: 30px;
}

.bg-black1 {
    background-color: rgb(18, 18, 18) !important;
}

.about-img {
    width: 100%;

}

/* services section */
.servicesbg {
    background-image: url(../images/4.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px;
}

.grid-block-count {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    display: inline-flex;
    color: white;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    font-size: 1.4rem;
    transition: all 0.3s ease-in;
}

.card:hover .grid-block-count {
    background: rgb(211, 173, 105);

}

.card-title {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none !important;
    color: rgb(37, 37, 37) !important;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Smooth transition for zoom and shadow */

}
.card:hover {
    transform: scale(1.1); /* Zooms in the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow effect */
}
.abouttext{
    color: rgb(182, 118, 8);
    font-size: 20px;
    
}

.choose-about {
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px; /* Add space between each section */
  }

  .choose-about_icon {
    margin-right: 15px; /* Space between the icon and the text */
  }

  .whyimg {
    width: 50px; /* Adjust icon size if necessary */
    height: auto;
  }

.appoinmentbg{
    background-image: url(../images/salone.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 100px 0px;
    background-attachment: fixed;
}
.round{
    background-color: white;
    padding: 50px;
    
}
.logoA{
    background-color: black;
    border-radius: 100%;
    padding: 15px;
}
.btn-secondary1{
    background-color: rgb(183, 130, 46)!important;
    padding-top: 10px!important;
    padding-bottom: 10px !important;
    font-family:  'Roboto', sans-serif!important; 
    color: white!important;
    
}
.btn-secondary1:hover{
    background-color: rgb(48, 44, 44)!important;
}


.testimonial-carousel {
    position: relative;
    max-width: 100%;
    
    padding: 50px;
    background: #f3e2e2;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .testimonial-carousel h2 {
    margin-bottom: 20px;
    color: #fcfcfc;
  }
  
  .carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .carousel-item {
    display: none;
    animation: fadeIn 0.5s;
  }
  
  .carousel-item.active {
    display: block;
  }
  
  .carousel-item p {
    font-size: 18px;
    color: #000000;
    margin: 0 0 10px;
  }
  
  .carousel-item h4 {
    font-size: 16px;
    color: #000000;
    margin: 0;
  }
  
  .b1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  button:hover {
    background: #555;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .testimonialbg{
    background-image: url(../images/4.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0px;
    
  }


  .partner-slider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    background: #fff;
   
    text-align: center;
  }
  
  .partner-slider h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
  }
  
  .slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .slide-track {
    display: flex;
    width: calc(250px * 5); /* Width = slide width * number of slides */
    animation: scroll 10s linear infinite;
    animation-play-state: running; /* Default animation state */
  }
  
  .slide-track:hover {
    animation-play-state: paused; /* Pause animation on hover */
  }
  .slide {
    width: 250px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  .footerbg{
    background-image: url(../images/contactbg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0px 30px 0px;
  }
  /* about page */
  .aboutbg{
    background-image: url(../images/aboutpagebanner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 150px 0px ;
    margin-top: 100px;
  }
  .aboutpagetext{
    color: rgb(245, 211, 117);
    font-size: 70px;
    margin-left: 70px;
  }
  .aboutpagetext1{
    color: rgb(247, 230, 184);
    font-size: 20px;
    margin-left: 70px;
  }

  /* services page */
  .servicespagebg{
    background-image: url(../images/servicesbanner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 150px 0px ;
    margin-top: 100px;
  }
  .servicepagetext{
    color: rgb(44, 44, 44);
    font-size: 70px;
    margin-left: 70px;
  }
  .servicepagetext1{
    color: rgb(48, 47, 47);
    font-size: 20px;
    margin-left: 70px;
  }
  /* location page */
  .locationpage{
    margin-top: 80px;
  }
  /* contactpage */
  .contactpagebg{
    background-image: url(../images/contact-us-mobile.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 150px 0px ;
    margin-top: 100px;
  }
  .submit{
    background-color: rgb(248, 186, 92);
    padding: 10px 15px 10px 15px;
    
  }
  .submit:hover{
    background-color: rgb(250, 240, 226);
    padding: 10px 15px 10px 15px;
    
  }
  .footericon{
    background-color: white;
    padding: 10px 13px 10px 13px;
    font-size: 23px;
   border-radius: 100% 100%;
   margin: 0px 10px;
   color: #000000;
  }
 .bg-location{
  background-image: url(../images/goaimg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
 }
 .gentspagebg{
  background-image: url(../images/gents.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px ;
    margin-top: 100px;
  background-attachment: fixed;
 }

  ul li::marker {
    color: rgb(143, 93, 0); /* Change this to your desired bullet color */
  }
.textcolour1{
  color: rgb(153, 104, 44);
}
.instrumentbg{
  background-image: url(../images/instrument.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;

}
.btn-group:hover .dropdown-menu {
  display: block !important;
  margin-top: 50px;
}
.btn-lg{
  width: 200px;
}
.droupbtn-secondary{
  background-color: rgb(95, 95, 95)!important;
  color: #ffffff!important;
}
.lediespagebg{
  background-image: url(../images/haircutbannerledies.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 200px 0px ;
    margin-top: 100px;
  /* background-attachment: fixed; */
}
.btn-infogolden{
  background-color: rgb(218, 167, 57)!important;
  padding: 10px 30px 10px 30px!important;
  color: #000000!important;
  font-size: 18px!important;
  font-weight: 500!important;
  margin-top: 50px!important;
}
.btn-infogolden:hover{
          background-color: #a06800e0!important;
          color: white!important;
}

/* responsive */
@media screen and (max-width:600px){
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 50px;
}
.nav-link:hover {
         border: none;
}
.aboutbg {
  background-image: url(../images/aboutpagebanner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 70px 0px;
  margin-top: 100px;
}
.aboutpagetext {
  color: rgb(245, 211, 117);
  font-size: 30px;
  margin-left: 10px;
}
.aboutpagetext1 {
  color: rgb(247, 230, 184);
  font-size: 10px;
  margin-left: 10px;
}
.about-heading {
  padding-top: 10px;
  font-size: 45px;
}
.servicespagebg {
  background-image: url(../images/servicesbanner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 60px 0px;
  margin-top: 100px;
}
.servicepagetext {
  color: rgb(44, 44, 44);
  font-size: 30px;
  margin-left: 10px;
}
.servicepagetext1 {
  color: rgb(48, 47, 47);
  font-size: 10px;
  margin-left: 10px;
}
.contactpagebg {
  background-image: url(../images/contact-us-mobile.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 70px 0px;
  margin-top: 100px;
}
.gentspagebg {
  background-image: url(../images/gents.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  margin-top: 100px;
  /* background-attachment: fixed; */
}
.lediespagebg {
  background-image: url(../images/haircutbannerledies.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  margin-top: 100px;
  background-attachment: fixed;
}
}


 /* WhatsApp Icon */
 .whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px;  /* Distance from the right */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensures it stays on top */
  animation: blink 1s infinite;
  cursor: pointer;
}

/* Icon inside the button */
.whatsapp-icon img {
  width: 30px;
  height: 30px;
}

/* Blinking Animation */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Optional Hover Effect */
.whatsapp-icon:hover {
  animation: none; /* Stops blinking on hover */
  transform: scale(1.1); /* Slightly enlarge the icon */
}

/* Call Icon */
.call-icon {
  position: fixed;
  bottom: 90px; /* 20px (whatsapp) + 60px (button height) + 10px (gap) */
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #34b7f1; /* Light blue for call */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  animation: blink 1s infinite;
}

.call-icon img {
  width: 30px;
  height: 30px;
}

.call-icon:hover {
  animation: none;
  transform: scale(1.1);
}