@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: 500px;
  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;
}

/*********************** 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;
  }
}
