@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
  --animate-duration: 2s;
  --animate-delay: 0.5s;
}
body {
  font-family: "Ubuntu", serif;
  overflow-x: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.text-bg-gradient {
  background: linear-gradient(93deg, #0a0a3f 0%, #1784eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.swiper-button-prev,
.swiper-button-next {
  color: #005faf;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.shadow-custom {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.shadow-image {
  box-shadow: rgba(0, 0, 0, 0.74) 0px 3px 8px;
}
.hover-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.hover-shadow:hover {
  transform: scale(1.02); /* Slight zoom effect */
  transition: transform 0.5s ease, box-shadow 0.5s ease; /* Smooth transition with 1.2s duration */
}

.fix-bg {
  background-image: url("../assets/images/fix.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #00000070;
  background-blend-mode: color-burn;
  background-attachment: fixed;
  background-position: center;
  /* height: 400px; */
}
.red-badge {
  z-index: -1;
  transition: 1s all ease-in-out; /* Apply transition here */
}

.service-box {
  transition: 1s all ease-in-out;
}

.service-box:hover .red-badge {
  width: 560px;
  height: 500px;
  top: -80px;
  left: -90px;
}

.service-text {
  transition: 1s ease-in-out; /* Apply transition here */
}

.service-box:hover .service-text {
  color: white;
}

.whats-app {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 130px;
  right: 15px;
  background-color: #D30708;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*********************** accordian ******************************/

.accordion-button.collapsed::after {
  background: url("./images/plus-icon.svg");
  background-repeat: no-repeat;
  /* background-color: #E76353; */
}

.accordion-button:not(.collapsed)::after {
  background: url("./images/minus-icon.svg");
  background-repeat: no-repeat;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:focus-visible {
  outline: none !important;
}

.accordion-item:focus-visible {
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.shadow-button{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* banner */
.banner{
  background-image: url("./images/benner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #00000070;
  background-blend-mode: color-burn;
  background-position: center;
}


/* scrollbar */
::-webkit-scrollbar {
  width: 4px;
  border: 1px solid #005FAF;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: #F1F1F1;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #005FAF;
}


/* media queries */
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}



/* cart css */


@supports (view-transition-name: none) {
  ::view-transition-group(cart-dot) {
    animation-duration: 0.6s;
    animation-timing-function: ease-in;
  }

  ::view-transition-old(cart-counter) {
    animation: toDown 0.15s cubic-bezier(0.4, 0, 1, 1) both;
  }

  ::view-transition-new(cart-counter) {
    animation: fromUp 0.15s cubic-bezier(0, 0, 0.2, 1) 0.15s both;
  }
}

@keyframes toDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(4px);
    opacity: 0;
  }
}

@keyframes fromUp {
  from {
    transform: translateY(-3px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* @media (prefers-reduced-motion) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
} */


@supports not (view-transition-name: none) {
  .banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fae588;
    text-align: center;
    z-index: 5;
  }

  .banner__inner {
    padding: 1rem 2rem;
    max-width: 720px;
    margin: 0 auto;
  }

  .banner {
    display: block !important;
  }
}

.shopping-bag {
  width: 32px;
  position: relative;
  isolation: isolate;
}

.shopping-bag svg {
  z-index: 2;
  position: relative;
}

.shopping-bag__target {
  position: absolute;
  bottom: -5px;
  right: -8px;
  backface-visibility: hidden;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.shopping-bag__target > * {
  position: relative;
}

.shopping-bag__counter {
  aspect-ratio: 1;
  background-color: #D30708;
  display: flex;
  border: 1px solid #F0F0F0;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  z-index: 4;
}

.shopping-bag__counter span {
  width: 3ch;
  color: #fff;
}



