@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --red: #BA0001;
  --green: #2bbc33;
  --orange: #f5811e;
  --blue: #20305c;
  --light-blue: #2b689f;
}

/* top button css start here */

.top {
  display: none;
  color: gray;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}

.top:hover {
  color: #000;
}

/* top button css end here */

/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .phone-icon {
  position: fixed;
  top: 70%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #25d366;
  padding: 10px 15px;
  border-radius: 50%;
  /* box-shadow: rgba(37, 211, 101, 0.753) 0px 0px 5px 5px; */
}
.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #00c300;
  padding: 10px 13px;
  border-radius: 50%;
  /* box-shadow: rgba(0, 195, 0, 0.733) 0px 0px 5px 5px; */
}

@media screen and (max-width: 1400px) {
  .fix-icons .whatsapp-icon {
    top: 75%;
  }
  .fix-icons .phone-icon {
    top: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .fix-icons .whatsapp-icon {
    top: 80%;
  }
  .fix-icons .phone-icon {
    top: 70%;
  }

  .fix-icons .whatsapp-icon a {
    font-size: 18px;
    padding: 6px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 18px;
    padding: 7px 10px;
  }
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */

/* top bar css start here */

.top-bar .top-content {
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.top-bar .top-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.top-bar .top-contact a {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .top-bar .top-content {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .top-bar .top-content {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .top-bar .top-content {
    display: none;
  }
}

/* top bar css ends here */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 35px;
  font-weight: 500;
  position: relative;
  color: var(--blue);
}

.section-head .heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  display: flex;
  height: 2px;
  z-index: -1;
  background: linear-gradient(to right, #21225b, #fff, #fff, #21225b);
}

@media screen and (max-width: 767px) {
  .section-head .heading::after {
    background: linear-gradient(to right, #21225b, #fff, #fff, #fff, #21225b);
  }

  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 16px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  height: 110px;
  width: 150px;
  padding: 5px 0px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--red);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.head-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-icons img {
  width: 25px;

  /* box-shadow: rgba(239, 58, 8, 0.825) 0px 2px 3px 3px; */
  border-radius: 10px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--red);
  box-shadow: none;
}

/* responsive navbar */
@media screen and (max-width: 1200px) {
  .navbar .logo {
    width: 140px;
    height: 100px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .logo {
    width: 140px;
    height: 90px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .head-icons {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 120px;
    height: 80px;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}

/* first dropdown start */

.dropdown .dropdown-menu {
  padding-bottom: 0;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-item {
  font-weight: 500;
}

.dropdown .dropdown-item:hover {
  background: var(--red);
  color: var(--white);
}

.dropdown .dropdown-menu li a {
  display: inline-block;
}

.dropdown .dropdown-menu li i {
  color: var(--dark-blue);
  margin-right: 10px;
}
.dropdown .dropdown-menu .dropdown-submenu .dropdown-item:hover i {
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
  }
}

/* --------------- end of navbar css here ------------- */

/* -------------------- banner css start here ------------------ */
.carousel-control-prev-icon {
  background-image: none;
  background-image: url(../img/banner/left-red.png);
}

.carousel-control-next-icon {
  background-image: none;
  background-image: url(../img/banner/right-red.png);
}

@media screen and (max-width: 767px) {
  .carousel-control-prev-icon {
    width: 15px;
    height: 15px;
  }

  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}

/* ------------------ banner css ends here ----------------- */



/* ------------------- sub banner css start here --------------------- */
    .sub-banner{
      background: linear-gradient(rgba(5, 5, 5, 0.603),rgba(0, 0, 0, 0.692)), url(../img/banner/new/sub-banner-1.png) 
            no-repeat center center/cover;
            padding: 100px 0px;
        }
        .sub-banner .sub-banner-content{
            text-align: center;  
            color: #fff;
        }
  

        .sub-banner .sub-banner-content a{
            color: white;
        }

         @media screen and (max-width:1200px) {
           .sub-banner{
            padding: 80px 0px;
           }
        }

         @media screen and (max-width:991px) {
           .sub-banner{
            padding: 50px 0px;
           }
        }

        @media screen and (max-width:767px) {
           .sub-banner{
            padding: 30px 0px;
           }
        }

/* ------------------- sub banner css ends here --------------------- */

/* -------------------- about us css start here ------------------- */

/* left side */
.about-us .about-image {
  position: relative;
  background: url(../img/about/about-right-shape.png) no-repeat top 30px right
    6%;
  background-size: 18% auto;
  padding-bottom: 100px;
  margin-right: 20px;
}

.about-us .about-img-1 {
  display: inline-block;
  width: 75%;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
}

.about-us .about-img-2 {
  width: 50%;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--white);
  border: 6px solid var(--white);
}
.about-us .about-image img {
  width: 100%;
}

.about-us .image-anime {
  position: relative;
  overflow: hidden;
}

.about-us .image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.about-us .image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* left side */

.about-us .about-head h2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-us .about-head h3 {
  font-size: 32px;
  margin-bottom: 5px;
  color: var(--red);
  font-weight: 600;
}

.about-us .about-text p {
  margin-bottom: 10px;
  text-align: justify;
}

.about-us .read-more {
  margin-top: 20px;
  display: inline-block;
  background: var(--red);
  /* color: var(--primary-color); */
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--red);
  padding: 5px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: 0.2s transform ease-in-out;
}
.about-us .read-more a {
  color: var(--white);
  font-weight: 600;
}

.about-us .read-more:after {
  background-color: var(--blue);
  border-radius: 20px;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.about-us .read-more:hover::after {
  transform: translate(0, 0);
}

.about-us .read-more:hover {
  border: 2px solid var(--blue);
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .about-us .about-head h2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .about-us .about-head h3 {
    font-size: 24px;
  }
  .about-us .about-text p {
    font-size: 14px;
  }

  .about-us .read-more {
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 15px;
  }
}

@media screen and (max-width: 991px) {
  .about-us .about-text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-head h2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .about-us .about-head h3 {
    font-size: 20px;
  }

  .about-us .about-text p {
    font-size: 12px;
  }

  .about-us .read-more {
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 15px;
  }
}

/* responsive css */

/* -------------------- end of about us css here ------------------- */






/* ----------------------- products css start here ------------------------- */

.products .product-card {
  border: 1px solid rgba(175, 172, 172, 0.66);
  text-align: center;
  padding: 20px 10px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}

.products .product-card:hover {
  border: 1px solid var(--red);
}

.products .product-card .product-img{
  margin-bottom: 20px;
}



.products .product-card .product-img{
  position: relative;
  overflow: hidden;
}

.products .product-card .product-img img{
  transition: .4s ease-in-out;
}

.products .product-card:hover .product-img img{
  transform: scale(1.06);
}


.products .product-card .product-text h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: 0.5s ease-in-out;
}

.products .product-card:hover .product-text h3 {
  color: red;
  transition: 0.5s ease-in-out;
}

.products .product-card .product-text p {
  color: #ff0000e0;
}

.products .product-card .product-text p:hover {
  color: rgb(245, 132, 27);
}

@media screen and (max-width: 991px) {
  .products .product-card {
    padding: 10px 5px;
  }

  .products .product-card .product-text h3 {
    font-size: 14px;
  }

  .products .product-card .product-text p {
    font-size: 14px;
  }
}


/* ----------------------- end of products css here ------------------------- */




/* ----------------------- empowering css start here ------------------------ */

.empowering {
  padding: 20px 0px;
  background: var(--red);
  color: var(--white);
}

.empowering h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.empowering-card {
  text-align: center;
  background: linear-gradient(rgba(250, 250, 250, 0.159));
  padding: 10px 20px;
  border-radius: 10px;
}

.empowering-card h3 {
  font-weight: 600;
  letter-spacing: 1.2px;
  font-size: 36px;
  margin-bottom: 10px;
}

.empowering-card p {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
  .empowering-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .empowering-card {
    padding: 10px;
  }

  .empowering-card p {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .empowering-card {
    margin-bottom: 10px;
  }
  .empowering-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .empowering h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .empowering-card {
    margin-bottom: 10px;
    padding: 5px 10px;
  }

  .empowering-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

/* ---------------------- end of empowering css here ------------------------ */



/* ---------------------- why us css start here ---------------------- */

.why-us .why-card {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.why-us .why-card h3 {
  margin-bottom: 10px;
}

.why-us .why-card .why-icon {
  font-size: 48px;
  color: var(--red);
}

.why-us .why-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.why-us .why-img img {
  background: #fff;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media screen and (max-width: 1400px) {
  .why-us .why-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .why-us .why-card p {
    font-size: 14px;
  }
  .why-us .why-card .why-icon {
    font-size: 28px;
  }
}

@media screen and (max-width: 1200px) {
  .why-us .why-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .why-us .why-card p {
    font-size: 12px;
  }
  .why-us .why-card .why-icon {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  .why-us .why-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .why-us .why-card p {
    font-size: 14px;
  }
  .why-us .why-card .why-icon {
    font-size: 28px;
  }
  .why-us .why-img img {
    height: 450px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .why-us .why-card {
    margin-bottom: 10px;
  }
  .why-us .why-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .why-us .why-card p {
    font-size: 12px;
    text-align: justify;
  }
  .why-us .why-card .why-icon {
    font-size: 24px;
  }

  .why-us .why-img img {
    height: 400px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 420px) {
  .why-us .why-img img {
    height: 290px;
  }
}

/* ---------------------- end of why us css here ---------------------- */




/* ------------------------ latest product css start here --------------------------- */

.latest-products .latest-product-card {
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid rgba(231, 228, 228, 0.893);
}

.latest-products .latest-product-card .product-name {
  text-align: center;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  padding: 5px 0px;
  margin-bottom: 5px;
  transition: 0.5s ease-in-out;
}

.latest-products .latest-product-card:hover .product-name {
  color: var(--red);
  background: none;
}

/* ------------------------ end of latest product css ------------------------------- */




/* ------------------ contact us css start here ------------------- */
.contact-us .section-head {
  display: none;
}

.contact-us {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.708), rgba(0, 0, 0, 0.552)),
    url(../img/contact/img2.jpg) no-repeat center center/cover;
}

.contact-us .left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--white);
}

.contact-us .left-side h4 {
  margin-bottom: 40px;
}

.contact-us .left-side p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-us .left-side p i {
  font-size: 20px;
  margin-right: 10px;
}

.contact-us .left-side p a {
  color: var(--white);
}

.contact-us .center-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-us .contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(223, 222, 222, 0.534);
  padding: 10px;
  width: 100%;
}

.contact-us .contact-form .form-head h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-us .contact-form .form-control::placeholder {
  color: var(--blue);
}

.contact-us .contact-form .form-control:focus {
  box-shadow: none;
}

.contact-us .contact-form .form-btn button {
  border: none;
  background: none;
  color: var(--white);
  font-weight: 600;
}

.contact-us .contact-form .form-btn {
  margin-top: 20px;
  display: inline-block;

  background: var(--red);
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--red);
  padding: 5px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: 0.2s transform ease-in-out;
}

.contact-us .contact-form .form-btn:after {
  background-color: var(--blue);
  border-radius: 20px;
  content: "";
  display: block;
  height: 100%;
  width: 105%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: -1;
}

.contact-us .contact-form .form-btn:hover::after {
  transform: translate(0, 0);
}

.contact-us .contact-form .form-btn:hover {
  border: 2px solid var(--blue);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .contact-us .left-side h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: justify;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .section-head {
    display: block;
  }

  .contact-us .left-side h4 {
    font-size: 20px;
  }

  .contact-us .left-side p {
    margin-bottom: 10px;
  }

  .contact-us .left-side p i {
    font-size: 14px;
  }

  .contact-us .contact-form {
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .left-side h4 {
    font-size: 18px;
  }

  .contact-us .contact-form .form-head h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-us .contact-form .form-btn button {
    padding: 3px 7px;
    font-size: 12px;
    gap: 5px;
  }
}

/* end of responsive css */

/* -------------- captcha css start ------------ */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #000;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  background: #fff;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  font-weight: 800;
  color: #163e61;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 24px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: #d80d0d;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }
}

/* end of responsive captcha */

/* ----------- end of captcha css ----------- */

/* ------------------------ end of contact us css --------------------- */

/* ----------------------- blog section css start here -------------------- */

.blogs .blog-card .card-img {
  position: relative;
}

.blog-card {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}

.blogs .blog-card .card-img .img {
  position: relative;
}

.blogs .blog-card .card-img .date-overlay {
  position: absolute;
  bottom: 0%;
}

.blogs .blog-card .card-img .date-overlay p {
  padding: 10px 20px;
  margin-bottom: 0 !important;
  color: #fff;
  background-color: rgb(245, 4, 4);
}

.blogs .blog-card .blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blogs .blog-card .blog-content p {
  margin-bottom: 10px;
  text-align: justify;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis !important;
}

.blogs .blog-card .blog-content a {
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.blogs .blog-card .blog-content a:hover {
  color: var(--red);
}

.blogs .blog-caption {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .blog-card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .blog-card .card-img .date-overlay p {
    padding: 5px 10px;
  }

  .blogs .blog-card .blog-content h3 {
    font-size: 16px;
  }
  .blogs .blog-card .blog-content a {
    font-size: 14px;
  }
}

/* ----------------------- end of blog section css here -------------------- */





/* --------------------- FAQ's section css start ----------------------- */
.faq {
  background: linear-gradient(#00000010);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq .accordion .accordion-item .accordion-body p {
  color: #000;
}

.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.faq .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--red);
}

.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  transition: transform 0.2s ease-in-out;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 2rem;
  /* Same size for consistency */
  color: white;
  background-image: none;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

/* responsive css start */
@media screen and (max-width: 981px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 10px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/* responsive css end */

/* --------------------- end of FAQ's section css ----------------------- */






/* ------------------ testimonial css start here ------------------ */

.testimonial {
  background: linear-gradient(to right, rgba(10, 10, 10, 0.171), #d80d0d46);
}

.testimonial .testimonial-head p {
  color: var(--red);
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial .testimonial-head h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.testimonial .person-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonial .person-content .person-img {
  margin-bottom: 10px;
}

.testimonial .person-content .person-text h4 {
  margin-bottom: 20px;
}

/* responsive css */

@media screen and (max-width: 1400px) {
  .testimonial .testimonial-head h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .testimonial .person-content .person-img {
    width: 150px;
    height: 150px;
    margin-bottom: 5px;
  }
  .testimonial .person-content .person-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .testimonial .person-content .person-text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .testimonial .testimonial-head h3 {
    font-size: 16px;
  }

  .testimonial .person-content .person-img {
    width: 100px;
    height: 100px;
  }
  .testimonial .person-content .person-text h4 {
    font-size: 18px;
  }
  .testimonial .person-content .person-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial .testimonial-head h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonial .person-content .person-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }
  .testimonial .person-content .person-text h4 {
    font-size: 24px;
  }
  .testimonial .person-content .person-text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial .testimonial-head h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial .person-content .person-img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
  }
  .testimonial .person-content .person-text h4 {
    font-size: 18px;
  }
  .testimonial .person-content .person-text p {
    font-size: 12px;
  }
}

/* responsive css */

/* ------------------ end of testimonial css here ------------------ */







/* ----------------------- footer css start here ------------------------- */

.footer .part-1 .footer-logo img {
  height: 110px;
  width: 150px;
}
.footer .part-1 .text {
  margin-bottom: 20px;
}
.footer .part-1 .social-icons {
  display: flex;
  gap: 15px;
}
.footer .part-1 .social-icons img {
  width: 25px;
}

.footer .part .head {
  margin-bottom: 20px;
}
.footer .part .head h3 {
  font-size: 22px;
}

.footer .part ul li {
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.footer .part ul li a {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.footer .part ul li:hover {
  transform: translateX(10px);
}
.footer .part ul li a:hover {
  color: var(--red);
}

.footer .contact-info p {
  margin-bottom: 10px;
  font-weight: 450;
  font-size: 14px;
}
.footer .contact-info p a {
  color: var(--black);
  font-weight: 450;
}
.footer .contact-info p i {
  color: var(--blue);
}
.footer-widget {
  background: var(--red);
  padding: 10px 0px;
}

.footer-widget p {
  color: var(--white);
  text-align: center;
}
.footer-widget a {
  color: var(--white);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .footer .contact-info p a {
    font-size: 13px;
  }
  .footer .part-1 .footer-logo img {
    width: 140px;
    height: 100px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 20px;
  }
  .footer .part-1 .footer-logo img {
    width: 140px;
    height: 90px;
    margin-bottom: 5px;
  }
  .footer .part-1 .text {
    margin-bottom: 5px;
  }
  .footer .part .head {
    margin-bottom: 10px;
  }
  .footer .contact-info p a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer .part .head {
    margin-bottom: 5px;
  }
  .footer .part .head h3 {
    font-size: 18px;
  }
  .footer .part-1 .footer-logo img {
    width: 120px;
    height: 80px;
  }

  .footer .part ul li {
    margin-bottom: 5px;
  }
}
/* responsive css ends here */

/* ---------------- footer css ends here ---------------- */


/* =========================================================================================================== */
/* =========================================================================================================== */

/* ================================ about page css start here ========================= */

.about-page .about-us {
  background: linear-gradient(rgba(0, 0, 0, 0.063));
}

.about-page .about-us .about-text {
  text-align: justify;
}

/* mission vision css start here */

.mission-vision {
  background: linear-gradient(rgba(0, 0, 0, 0.063));
}

.section-subtitle {
  margin-top: 20px;
  color: #6c757d;
}

.mv-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.mv-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-card p {
  text-align: justify;
  color: #555;
  line-height: 1.7;
}

/* end of mission vision css here */

/* ================================ about page css ends here ========================= */

/* ==================================================================================================== */
/* ==================================================================================================== */

/* =================== contact page css start =================== */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ======================== contact page css end here ======================== */

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ======================== blog page css start here ======================== */

.blog-page .blogs {
  background: linear-gradient(rgba(0, 0, 0, 0.063));
}

.blog-page .blogs .blog-card {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .blog-page .blogs .blog-card {
    margin-bottom: 20px;
  }
}

/* ======================== blog page css ends here ======================== */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ---------------------------------------- blog detail Page css start here ------------------------------------------- */

/* blog text css start */
.blog-detail .blog-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-detail .blog-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: justify;
}

.blog-detail .blog-text .date {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  margin: 20px 0px;
}

.blog-detail .blog-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.blog-detail-img {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* responisive css */

@media screen and (max-width: 1200px) {
  .blog-detail .blog-text h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .blog-detail .blog-text h3 {
    font-size: 14px;
  }
  .blog-detail .blog-text p {
    font-size: 12px;
  }
  .blog-detail .blog-text .date {
    margin: 10px 0px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail .blog-text h2 {
    font-size: 24px;
  }
  .blog-detail .blog-text h3 {
    font-size: 18px;
  }
  .blog-detail .blog-text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-text h2 {
    font-size: 16px;
  }

  .blog-detail .blog-text h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .blog-detail .blog-text .date {
    margin: 10px 0px;
  }
  .blog-detail .blog-text p {
    font-size: 12px;
  }
}
/* responsive css end */

/* blog text css end */

/* recent blog css start */
.blog-detail .recent-blog .recent-card {
  display: flex;
  gap: 10px;
}

.blog-detail .recent-blog .recent-card img {
  width: 240px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-detail .recent-blog .recent-card .recent-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  color: var(--blue);
}

.blog-detail .recent-blog .recent-card .recent-text .date {
  margin-top: 20px;
  color: var(--red);
}

.blog-detail .recent-blog hr {
  margin-top: 5px;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .blog-detail .recent-blog h3 {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
  }

  .blog-detail .recent-blog .recent-card {
    display: flex;
    flex-direction: column;
  }

  .blog-detail .recent-blog .recent-card img {
    width: 100%;
    /* border: 1px solid #bab6b6c1; */
  }

  .blog-detail .recent-blog .recent-card .recent-text .date {
    margin-top: 5px;
  }
}
/* responsive css end */

/* end of recent blog css */

.related-blogs {
  background: #f7f7f7;
}

.related-blogs .blog-card {
  margin: 20px 5px;
}

/* ---------------------------------------- end of blog detail Page css here ------------------------------------------- */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ------------------------------------ enquiry page css start here ------------------------------------ */

.enquiry-page .product-detail .product-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.enquiry-page .product-detail .detail {
  text-align: justify;
}
.enquiry-page .product-detail .detail p {
  margin-bottom: 40px;
}

.enquiry-page .product-detail .detail .features h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--red);
}
.enquiry-page .product-detail .detail .features h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 10px;
}

/* responive product detail */

@media screen and (max-width: 1200px) {
  .enquiry-page .product-detail p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .enquiry-page .product-detail .product-img {
    margin-bottom: 20px;
  }
    .enquiry-page .product-detail p {
    font-size: 14px;
 
  }
}

@media screen and (max-width: 767px) {
    .enquiry-page .product-detail p {
    font-size: 12px;
  }
  .enquiry-page .product-detail .detail .features h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .enquiry-page .product-detail .detail .features h3 {
    font-size: 16px;
  }
  .enquiry-page .product-detail .detail .features p {
    margin-bottom: 20px;
  }
}

/* responsive product detail */

.enquiry-page .contact-us .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: var(--white);
}
.enquiry-page .contact-us .left h3 {
  font-size: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .enquiry-page .contact-us .left h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 991px) {
  .enquiry-page .contact-us .left h3 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .enquiry-page .contact-us .left p {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .enquiry-page .contact-us .left h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}


.enquiry-page .related-products{
  background: linear-gradient(#00000010);
}




/* ===== related-product-category-carousel ===== */


/* owl carousel nav css start */



.enquiry-page .related-products{
  position: relative;
}

.related-product-category-carousel .owl-nav {
  margin-top: 0px;
}

.related-product-category-carousel .owl-nav button {
  color: var(--white);
  font-size: 25px;
  margin: 0;
  margin-top: -10px;
  padding: 0;
  /* background: var(--color-white); */
  background: var(--blue);
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.related-product-category-carousel .owl-nav button:hover {
  background: var(--red) !important;
}

.related-product-category-carousel .owl-nav .owl-prev {
  left: -4%;
  top: 55%;
  background: var(--blue) !important;
  color: var(--white) !important;
}

.related-product-category-carousel .owl-nav .owl-next {
  right: -4%;
  top: 55%;
  background: var(--blue) !important;
  color: var(--white) !important;
}


@media screen and (max-width: 1400px) {
 

  .related-product-category-carousel .owl-nav .owl-prev {
    left: -3%;
  }

  .related-product-category-carousel .owl-nav .owl-next {
    right: -3%;
  }
  .related-product-category-carousel .owl-nav button {
    font-size: 24px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}



/* owl carousel dots css end */




/* ------------------------------------ end of enquiry page css here ------------------------------------ */



/* ================================================================================================================ */
/* ================================================================================================================ */


/* products page css start here */
.products-page .products{
  background: linear-gradient(#00000010);
}



/* ================================================================================================================ */
/* ================================================================================================================ */