/* ================ Banner section here ================= */

.banner .swiper-slide img{
  width: 100%;
}

.banner .swiper-button-next, .banner .swiper-button-prev{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: white;
  display: grid;
  place-items: center;
  border: 2px solid var(--border-color);
  transition: 300ms;
}

.banner .swiper-button-prev:after, .banner .swiper-button-next:after{
  font-size: 15px;
  color: var(--border-color);
  font-weight: 900;
}

/* ============ welcome section here =============== */

.welcome{
  background-color: var(--theme-color);
  text-align: center;
  position: relative;
  padding: 30px 0px 100px 0px;
  background-image: url(../images/welcomeBg.webp);
  background-size: cover;
  background-position: center 60%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.welcome .data{
  display: inline-block;
  width: 50%;
}

.welcome .data h3{
  font-size: clamp(40px, 3vw, 70px);
  font-weight: 700;
  margin-bottom: 10px;
}

.welcome .data h3 span{
  color: var(--blue-color);
}

.welcome .data p{
  font-size: 20px;
}

.welcome .logo-image{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 180px;
  width: 180px;
  border-radius: 50%;
  background-color: var(--body-bg);
  z-index: 2;
  padding: 10px;
  margin-top: 10px;
  display: grid;
  place-items: center;
}

.welcome .logo-image img{
  width: 100%;
}


/* =============== About section here ================ */

.about{
  padding: 80px 0px 40px 0px;
  background-image: url(../images/aboutBg.webp);
  background-size: cover;
}

.about .left{
  position: relative;
}

.about .left .info{
  height: 600px;
  width: 100%;
}

.about .left img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about .right .para1{
  padding: 3px 22px;
  background-color: var(--body-color);
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  font-size: 18px;
  color: white;
}

.about .right h2{
  font-size: clamp(30px, 2vw, 50px);
  font-weight: 700;
}

.about .right h2 span{
  color: blueviolet;
}

.about .right .misvis{
  margin-top: 30px;
}

.about .right .misvis h6{
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.about .right .misvis h6::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 70px;
  height: 3px;
  border-radius: 100px;
  background-color: black;
}

.about .right .misvis p{
  margin-bottom: 0;
}

.about .right .misvis i{
  padding: 8px;
  border-radius: 4px;
  background-color: var(--body-color);
  color: white;
  margin-right: 10px;
}


/* =============== products section here ============= */

.products .top-area{
  width: 80%;
  text-align: center;
  text-align-last: center;
  margin: auto;
}

.products .top-area h2{
  font-size: clamp(30px, 2vw, 50px);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.products .top-area h2:after{
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 100px;
  background-color: black;
  border-radius: 100px;
  
}

.products .top-area h2 span{
  color: var(--blue-color);
}

.products .top-area p{
  font-size: 20px;
}

.products .navi{
  width: 130px;
  position: relative;
  height: 70px;
}

.products .swiper-button-next, .products .swiper-button-prev{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: white;
  display: grid;
  place-items: center;
  border: 2px solid var(--border-color);
  transition: 300ms;
}

.products .swiper-button-next:hover, .products .swiper-button-prev:hover{
  background-color: var(--blue-color);
}

.products .swiper-button-prev:after, .products .swiper-button-next:after{
  font-size: 15px;
  color: var(--border-color);
  font-weight: 900;
}

.products .swiper-button-next{
  right: 0;
}

.products .swiper-button-prev{
  left: 0;
}

.products .inner_box{
  border-radius: 12px;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.1);
  background-color: white;
  overflow: hidden;
  padding: 15px;
  height: 450px;
  display: grid;
  place-items: center;
}

.products .inner_box .extra{
  width: 100%;
}

.products .inner_box .image{
  height: 250px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.products .inner_box .image img{
  height: 200px;
  width: 90%;
  object-fit: contain;
  transition: 300ms;
}

.products .inner_box:hover .image img{
  scale: 1.2;
}

.products .inner_box .data{
  margin-top: 20px;
}

.products .inner_box .data h6{
  font-size: 22px;
  font-weight: 600;
}

.products .inner_box .data a{
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  transition: 300ms;
}

.products .inner_box .data a:hover{
  letter-spacing: 1px;
}


/* =============== cta section here ================ */


.cta{
  position: relative;
  background-image: url(../images/aboutBg.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.cta .image1{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  filter: brightness(0) saturate(100%) invert(100%);
}

.cta .image2{
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  transform: scaleY(-1);
  filter: brightness(0) saturate(100%) invert(100%);
}

.cta .data{
  text-align: center;
  color: white;
  width: 80%;
  margin: auto;
}

.cta .data p{
  font-size: 20px;
  color: black;
  font-weight: 600;
}

.cta .data h2{
  font-size: clamp(30px, 5vw, 80px);
  font-weight: 700;
  color: black;
}

.cta .data h2 span{
  color: var(--body-color);
}

.cta .data a{
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  background-color: var(--blue-color);
  color: white;
  font-weight: 700;
  font-size: 18px;
  outline: 3px dashed var(--blue-color);
  outline-offset: 5px;
  transition: 300ms;
}

.cta .data a:hover{
  outline: none;
  background-color: var(--body-color);
  color: white;
}


/* =========== choose_us section here ============== */

.choose_us{
  padding: 60px 0px;
}

.choose_us .left p{
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
}

.choose_us .left h6{
  font-size: clamp(30px, 2vw, 100px);
  color: var(--blue-color);
  font-weight: 700;
}

.choose_us .right{
  border-left: 3px solid var(--border-color);
}

.choose_us .right .icon-box{
  display: flex;
  justify-content: space-between;
}

.choose_us .right .data{
  text-align: center;
}

.choose_us .right .data img{
  height: 80px;
}

.choose_us .right .data p{
  margin-top: 15px;
  font-weight: 600;
  font-size: 22px;
}










/* ============ Media Query here ============== */

@media (max-width:991.5px){

  .welcome .data{
    width: 90%;
  }


  .choose_us .right{
    border-left: none;
  }

  .choose_us .left h6{
    font-size: clamp(30px, 5vw, 100px);
    color: var(--blue-color);
    font-weight: 700;
  }

}

@media (max-width:767.5px){

  .about{
    padding: 60px 0px 40px 0px;
  }

  .about .left .info{
    height: 400px;
  }


  .cta .data{
    width: 100%;
  }

  .cta .data h2{
    font-size: 6.5vw;
  }

}


@media (max-width:576px){

  .banner .swiper-button-next, .banner .swiper-button-prev{
    height: 40px;
    width: 40px;
  }
  
  .banner .swiper-button-prev:after, .banner .swiper-button-next:after{
    font-size: 14px;
  }

  .welcome{
    padding: 30px 0px 85px 0px;
  }

  .welcome .data{
    width: 95%;
  }

  .welcome .data h3{
    font-size: 30px;
  }

  .welcome .data p{
    font-size: 18px;
  }

  .welcome .logo-image{
    height: 150px;
    width: 150px;
  }


  .products .top-area{
    width: 100%;
  }

  .products .navi{
    width: 100px;
  }

  .products .swiper-button-next, .products .swiper-button-prev{
    height: 40px;
    width: 40px;
  }

  .products .inner_box{
    height: auto;
  }

  .products .top-area p{
    font-size: 16px;
  }


  .choose_us .right .data img{
    height: 50px;
  }
  
  .choose_us .right .data p{
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
  }

}

@media (max-width:450px){

  .banner .swiper-button-next, .banner .swiper-button-prev{
    height: 30px;
    width: 30px;
  }
  
  .banner .swiper-button-prev:after, .banner .swiper-button-next:after{
    font-size: 13px;
  }

  .txt-justify{
    text-align: justify;
  }

  .about .left .info{
    height: 300px;
  }


  .cta .data a{
    padding: 10px 25px;
    font-size: 16px;
  }


  .choose_us .right .icon-box{
    flex-wrap: wrap;
    gap: 10px;
  }

}