// Fredoka
@import url("https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap");
* {
  font-family: "Halant", serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}

// home1 in hero section slider
.homeSlider .swiper-pagination-bullet {
  height: 30px !important;
  width: 10px !important;
  border-radius: 10px !important;
  background: #ffebc2 !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}
.homeSlider .swiper-pagination-bullet-active {
  height: 60px !important;
  width: 10px !important;
  background-color: #c04b62 !important;
}

@media only screen and (max-width: 1023px) {
  .homeSlider .swiper-pagination-bullet {
    height: 10px !important;
    width: 30px !important;
  }
  .homeSlider .swiper-pagination-bullet-active {
    height: 10px !important;
    width: 60px !important;
    background-color: #c04b62 !important;
  }
}

// blog slider
.blog-slider .swiper-pagination-bullet {
  height: 10px !important;
  width: 30px !important;
  border-radius: 10px !important;
  background: #ffebc2 !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}
.blog-slider .swiper-pagination-bullet-active {
  width: 60px !important;
  background-color: #c04b62 !important;
}

@media only screen and (max-width: 640px) {
  .blog-slider .swiper-pagination-bullet {
    height: 7px !important;
    width: 20px !important;
  }
  .blog-slider .swiper-pagination-bullet-active {
    height: 7px !important;
    width: 30px !important;
    background-color: #c04b62 !important;
  }
}

// service slider home2
.service-slider .swiper-pagination-bullet {
  height: 15px !important;
  width: 15px !important;
  border-radius: 50% !important;
  background: #ffebc2 !important;
  transition: all 0.3s ease-in-out;
  opacity: 1 !important;
}
.service-slider .swiper-pagination-bullet-active {
  background-color: #c04b62 !important;
  box-shadow: 0 0 0 4px rgba(192, 75, 98, 0.4) !important;
}

@media only screen and (max-width: 640px) {
  .service-slider .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
  }
}

// team slider home2
.team2-slider .swiper-pagination-bullet {
  height: 15px !important;
  width: 15px !important;
  border-radius: 50% !important;
  background: #ffebc2 !important;
  transition: all 0.3s ease-in-out;
  opacity: 1 !important;
}
.team2-slider .swiper-pagination-bullet-active {
  background-color: #c04b62 !important;
  box-shadow: 0 0 0 4px rgba(192, 75, 98, 0.4) !important;
}

@media only screen and (max-width: 640px) {
  .team2-slider .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
  }
}


// scrollbar 
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background-image: linear-gradient(#C04B62, #472D30); 
  border-radius: 50px;
}


// loader 
.spinner {
  width: 60px;
  height: 60px;
  position: relative;
 }
 
 .spinner .dot {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
 }
 
 .spinner .dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #C04B62;
 }
 
 @keyframes spin {
  to {
   transform: rotate(360deg);
  }
 }
 
 .spinner .dot {
  animation: spin 2s infinite;
 }
 
 .spinner .dot:nth-child(2) {
  animation-delay: 100ms;
 }
 
 .spinner .dot:nth-child(3) {
  animation-delay: 200ms;
 }
 
 .spinner .dot:nth-child(4) {
  animation-delay: 300ms;
 }
 
 .spinner .dot:nth-child(5) {
  animation-delay: 400ms;
 }
 
 
@layer base {
  h1 {
    @apply text-[36px] leading-[42px] sm:text-[44px] xl:text-[56px]  sm:leading-[60px] xl:leading-[74px] font-bold;
  }

  h2 {
    @apply text-[30px] leading-10 sm:text-[36px] sm:leading-[42px] xl:text-[44px] xl:leading-[60px]  font-bold;
  }

  h3 {
    @apply text-[28px]  leading-[34px] xl:text-[36px]  xl:leading-[42px] font-semibold;
  }

  h4 {
    @apply text-[22px] leading-[32px] min-[1300px]:text-[28px] min-[1300px]:leading-[34px] font-medium;
  }

  h5 {
    @apply text-[20px] leading-[26px]  xl:text-[24px] xl:leading-[30px] font-semibold;
  }

  h6 {
    @apply text-[18px]  md:text-[20px]  leading-[24px] md:leading-[26px] font-medium;
  }
}

@layer utilities {
  .text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px white;
  }

  .text-stroke-white {
    color: transparent;
    -webkit-text-stroke: 1px #c04b62;
  }
}




@tailwind base;
@tailwind components;
@tailwind utilities;
