* {
  font-family: "Lora", sans-serif !important;
  text-decoration: none !important;
  list-style: none;
}

.lora-example {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  /* Or any other weight between 400 and 700 */
  font-style: normal;
}
.navcontact{
line-height: 5px;
cursor: pointer;
}

html, body { overflow-x: hidden!important} 

body {
  font-family: 'Montserrat';
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  overflow-y: scroll; 
   overflow-x: hidden;
}

.text {
  color: #0e065b !important;
}
.list{
  list-style: none;
  text-decoration: none !important;
  color: #0e065b !important ;
}

.text2 {
  /* Create a gradient background */
  background-image: linear-gradient(45deg, #9f742b, #f4cc7d);
  /* Set background clip to text */
  -webkit-background-clip: text;
  background-clip: text;
  /* Set transparent text color */
  color: transparent;
}

.bg {
  background-color: #0e065b !important;
}

.nav-item a {
  color: #0e065b !important;
  font-size: 18px;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  border-bottom: 3px solid #2d2d2d;
  /* You can adjust the color and thickness as needed */
}

@media (min-width: 1024px) {
  /* Custom CSS for dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbarBorders {
    padding-left: 2px;
    padding-right: 2px;
  }
}

.carousel-slide img {
  width: 100%;
  height: 550px;
}

.carousel-content {
  position: absolute;
  top: 150px;
  right: 150px;
  color: #0e065b !important;
  background-color: white;
  padding: 20px;
  font-family: "Playfair Display", serif;
  width: 50%;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .carousel-content {
    position: absolute;
    top: 150px;
    right: 80px;
    color: #0e065b !important;
    background-color: white;
    padding: 20px;
    font-family: "Playfair Display", serif;
    width: 60%;
    height: 200px;
  }

  .carousel-slide img {
    height: 700px;
  }


}

.rows {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* about page images */

.shadow-lg {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.shadow-lg img {
  transition: transform 0.3s ease;
}

.shadow-lg:hover img {
  transform: scale(1.1);
}

/* counter css  */
.counter-result {
  font-size: 35px;
  font-weight: 800;
}

/* scrolling carosel moving css start from here */

.third-heading {
  position: relative;
  /* top: 115px; */
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 290px;
}

.third-heading-navbar {
  width: 75%;
  height: 250px;
}

#containerdiv {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  display: block !important;
}

#scrollContent {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: scroll !important;
  position: absolute;
  top: 15px;
}

#scrollContent div {
  padding-left: 45px;
}

#scrollContent img {
  height: 200px;
}

#scrollContent img:hover {
  transform: scale(1.1);
}

#scrollContent h6 {
  font-size: 23px;
  font-weight: 600;
  margin-top: 5px;
  text-align: center;
  /* Create a gradient background */
  background-image: linear-gradient(45deg, #9f742b, #f4cc7d);
  /* Set background clip to text */
  -webkit-background-clip: text;
  background-clip: text;
  /* Set transparent text color */
  color: transparent;
}

#scrollLeft {
  position: absolute;
  top: 120px;
  bottom: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 3;
  border: none;
  border-radius: 50%;
  color: antiquewhite;
  background-color: #0e065b;
}

#scrollRight {
  position: absolute;
  top: 100px;
  bottom: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  right: 0px;
  z-index: 3;
  border: none;
  border-radius: 50%;
  color: antiquewhite;
  background-color: #0e065b;
}

@media screen and (max-width: 600px) {
  .third-heading {
    position: relative;
    z-index: 3;
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: 1px solid #aea4a47c;
    height: 300px;
    width: 100%;
  }

  .third-heading-navbar {
    width: 100%;
    height: 270px;
  }

  #containerdiv {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: block !important;
  }

  #scrollLeft {
    display: none;
  }

  #scrollRight {
    display: none;
  }
}

/* scrolling carosel moving css end here */


/* buttons  */

#whatsapp-logo {
  position: fixed;

  bottom: 120px; /* Adjust the distance from the bottom */
  right: 25px; /* Adjust the distance from the right */
  width: 60px; /* Adjust the width of the logo */
  z-index: 1000; /* Ensure the logo is above other elements */
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.scrollBtn {
  /* display: none;  */
  position: fixed;
  bottom: 25px;
  right: 120px;
  z-index: 99;
  background-image: linear-gradient(45deg, #9f742b, #f4cc7d);
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 0; /* Remove default padding */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite; /* Apply the bounce animation */
}

.scrollBtn i {
  font-size: 24px;
  line-height: 50px;
}

/* carsell css*/
#cCarousel {
  position: relative;
  max-width: fit-content;
  padding: 20px;
  margin: auto;
  /* border: 1px solid; */
}

#cCarousel .arrow {
  position: absolute;
  top: 43%;
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 26px;
  color: white;
  background:   linear-gradient(45deg, #9f742b, #f4cc7d);
  cursor: pointer;
}

#cCarousel #prev {
  left: 0px;
}

#cCarousel #next {
  right: 0px;
}

#carousel-vp {
  width: 1080px;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}

@media (max-width: 770px) {
  #carousel-vp {
    width: 710px;
  }
  #cCarousel {
    max-width: auto;
    padding: 0px;
  }
  
  
}

@media (max-width: 510px) {
  #carousel-vp {
    width: 350px;
  }
  #cCarousel {
    max-width: auto;
    padding: 0px;
  }
}

#cCarousel #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}

.cCarousel-item {
  width: 350px;
  height: 245px;
  border: 2px solid white;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cCarousel-item img {
  width: 100%;
  object-fit: cover;
  min-height: 246px;
  color: white;
}

.cCarousel-item .infos {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: white;
  color: black;
}

.cCarousel-item .infos button {
  background: #222;
  padding: 10px 30px;
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}






