@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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 {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --green: #89c800;
  --blue: #212e80;
  --gray: #676968;
  --light-blue: #5082ab;
}

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  color: var(--blue);

  position: relative;
}

.section-head .heading::after {
  position: absolute;
  content: "";
  background: rgba(137, 200, 0, 0.925);
  bottom: 0;
  left: 50%;
  width: 15%;
  transform: translateX(-50%);
  height: 3px;
  animation: head-border 2s infinite ease;
}

@keyframes head-border {
  0% {
    width: 0;
    opacity: 0.2;
  }

  50% {
    width: 15%;
    opacity: 1;
  }

  100% {
    width: 0;
    opacity: 0.2;
  }
}

@media screen and (max-width: 767px) {
  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: 20px;
  }
}

/* section css */

/* footer css */
footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* top button css start here */

.top {
  display: none;
  color: var(--white);
  background: var(--black);
  padding: 5px 10px;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: var(--green);
}

@media screen and (max-width: 767px) {
  .top {
    display: none !important;
  }
}

/* top button css ends 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: 75%;
  }
  .fix-icons .phone-icon {
    top: 65%;
  }

  .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 */

/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px 0px;
  background: var(--white);
  box-shadow: rgba(137, 200, 0, 0.603) 0px 5px 15px;
  /* box-shadow: rgba(112, 112, 111, 0.35) 0px 5px 15px; */
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--blue);
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--green);
}

.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(--green);
  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: 100px;
  height: 100px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--green);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 1200px) {
  .head-icons {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .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;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}

/* first dropdown start */

.dropdown .dropdown-menu {
  padding-bottom: 0;
  position: absolute;
  height: 300px;
  overflow-y: scroll;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown .dropdown-item {
  font-weight: 500;
}

.dropdown .dropdown-item:hover {
  background: var(--blue);
  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;
    font-size: 12px;
  }
}

@media screen and (max-width: 420px) {
  .dropdown .dropdown-menu {
    font-size: 10px;
  }
  .dropdown .dropdown-menu li i {
    display: none;
  }
}

/* --------------- 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 {
  padding: 80px 0px;
 background: #333333;
 background: linear-gradient(#525151d5, #474747d8), url(../img/banner/sub-banner-1.jpg) 
 no-repeat center center/cover;
}
.sub-banner .sub-banner-content {
  text-align: center;
  color: var(--white);
}
.sub-banner .sub-banner-content p{
  text-align: center;
}
.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 --------------------- */

.about-us .about-content .about-head h6 {
  font-size: 12px;
  margin-bottom: 2px;
}

.about-us .about-content .about-head p {
  letter-spacing: 2px;
  font-size: 28px;
  font-weight: bold;
  color: var(--blue);
  text-align: start;
  /* text-shadow: 1px 2px #89c800; */
}

.about-us .about-content .about-head {
  margin-bottom: 20px;
}

.about-us .about-content .about-text p {
  margin-bottom: 5px;
}

.about-us .about-content .read-more {
  position: relative;
  display: inline-block;
  padding: 6px 22px;
  overflow: hidden;
  margin-top: 20px;
}

/* Default Gradient */
.about-us .about-content .read-more::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to right, #212e80, #89c800be);
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Hover Gradient */
.about-us .about-content .read-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #89c800be, #212e80);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* On Hover */
.about-us .about-content .read-more:hover::after {
  opacity: 1;
}

/* Text Styling */
.about-us .about-content .read-more a {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

/* responsive css start */
@media screen and (max-width: 1200px) {
  .about-us .about-content .about-head {
    margin-bottom: 5px;
  }
  .about-us .about-content .about-head p {
    font-size: 14px;
  }
  .about-us .about-content .about-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .about-us .about-img {
    margin-bottom: 10px;
  }
  .about-us .about-content .about-head {
    margin-bottom: 10px;
  }
  .about-us .about-content .about-head p {
    font-size: 18px;
  }
  .about-us .about-content .about-text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-content .about-text p {
    font-size: 12px;
  }

  .about-us .about-content .read-more {
    margin-top: 10px;
    padding: 4px 15px;
  }
  .about-us .about-content .read-more a {
    font-size: 14px;
  }
}

/* responsive css end */

/* ------------------ end of about us css here --------------------- */

/* ----------------- products section css start here ----------------- */

.products .after-head {
  margin-bottom: 40px;
}

.products .product-card {
  position: relative;
  text-align: center;
  border: 2px solid rgb(190, 187, 187);
  padding: 10px 0px;
  margin-bottom: 30px;
}

.products .product-card .product-img {
  margin-bottom: 20px;
}

.products .product-card .product-name {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.products .product-card .product-name p {
  background: var(--blue);
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--white);
  padding: 2px 0px;
  letter-spacing: 2px;
}
.products .product-card .product-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  /* background: rgba(204, 200, 200, 0.568); */
  background: rgba(204, 200, 200, 0.842);
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.products .product-card:hover .product-content {
  bottom: 0%;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.products .product-card .product-text p {
  color: #000;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.products .click-here p {
  position: relative;
  display: inline-block;
  padding: 6px 22px;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 1; /* creates stacking context */
}

/* Default Gradient */
.products .click-here p::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to right, #212e80, #89c800);
  z-index: -1;
  transition: opacity 0.6s ease-in-out;
}

/* Hover Gradient */
.products .click-here p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #89c800, #212e80);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/* Hover Effect */
.products .click-here p:hover::after {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .products .after-head {
    margin-bottom: 20px;
  }
  .products .product-card {
    margin-bottom: 20px;
  }
}

.products .more-products {
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .more-products a {
  display: inline-block;
  background: #4d4c4c;
  color: var(--white);
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}
.products .more-products a:hover {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media screen and (max-width: 991px) {
  .products .more-products a {
    padding: 10px 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .products .more-products a {
    padding: 6px 15px;
    font-size: 16px;
  }
}

/* ----------------- end of products section css here ----------------- */

/* -------------------- why choose us css start here --------------------- */

.why-choose-us .why-us-card {
  padding: 10px;
  background: #f8f7f7;
  border-left: 5px solid var(--blue);
  border-radius: 20px;
  min-height: 250px;
}

.why-choose-us .why-us-card i {
  font-size: 46px;
  margin-bottom: 20px;
  color: var(--green);
}

.why-choose-us .why-us-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-choose-us .why-us-card p {
  text-align: start;
  color: var(--gray);
}

/* responsive css start */

@media screen and (max-width: 1220px) {
  .why-choose-us .why-us-card {
    min-height: 280px;
  }
  .why-choose-us .why-us-card h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .why-choose-us .why-us-card {
    min-height: 260px;
  }
  .why-choose-us .why-us-card h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .why-choose-us .why-us-card {
    min-height: auto;
  }

  .why-choose-us .why-us-card i {
    font-size: 26px;
  }
  .why-choose-us .why-us-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .why-choose-us .why-us-card p {
    text-align: justify;
  }
}

/* responsive css end */

/* -------------------- end of why choose us css here --------------------- */

/* ----------------- popular products section css start here ----------------- */

/* .popular-products {
  background: rgba(245, 243, 243, 0.822);
} */

.popular-products .popular-card {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 10px 0px;
  padding: 2px 0px;
  min-height: 365px;
}

.popular-products .popular-card .popular-name p {
  margin-top: 20px;
  text-align: center;
}
.popular-products .popular-card:hover .popular-name p {
  color: var(--gray);
}

.popular-products .popular-card .popular-img {
  position: relative;
  overflow: hidden;
}
.popular-products .popular-card .popular-img img {
  transition: 0.5s ease-in-out;
}

.popular-products .popular-card:hover .popular-img img {
  transform: scale(0.8);
}

/* responsive css start */
@media screen and (max-width: 1400px) {
  .popular-products .popular-card .popular-name p {
    margin-top: 10px;
    font-size: 12px;
  }
  .popular-products .popular-card {
    min-height: 310px;
  }
}

@media screen and (max-width: 1200px) {
  .popular-products .popular-card .popular-name p {
    font-size: 14px;
  }
  .popular-products .popular-card {
    min-height: 335px;
  }
}

@media screen and (max-width: 991px) {
  .popular-products .popular-card .popular-name p {
    margin-top: 10px;
    font-size: 12px;
  }
  .popular-products .popular-card {
    min-height: 330px;
  }
}

/* @media screen and (max-width: 767px) {
   .popular-products .popular-card {
    min-height: 330px;
  }
} */

@media screen and (max-width: 575px) {
  .popular-products .popular-card {
    min-height: auto;
  }
}

/* responsive css ends */

/* ----------------- end of popular products section css here ----------------- */

/* -------------------- our core values section css start here ---------------------- */

.our-values {
  background: rgba(245, 243, 243, 0.822);
}

.p-effect {
  position: relative;
  z-index: 1;
}

.p-effect::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
  background: var(--white);
  box-shadow: 0px 0px 20px #212e80;
  z-index: 0;
  animation-name: anim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes anim {
  0%,
  100% {
    transform: translateX(-50%) translateY(-60%) scale(1);
    box-shadow: 0px 0px 20px green;
  }
  50% {
    transform: translateX(-50%) translateY(-60%) scale(1.2);
    box-shadow: 0px 0px 40px green;
  }
}

.our-values .value-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  position: relative;
}
.our-values .value-card p {
  text-align: center;
}

.our-values .value-content .value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  /* background: rgb(158, 157, 157); */
  background: var(--blue);
  border-radius: 50%;
  margin-bottom: 20px;
}
.our-values .value-content .value-icon i {
  color: var(--white);
  font-size: 32px;
}
.our-values .value-card p {
  font-size: 24px;
  color: #575656;
}

@media screen and (max-width: 1400px) {
  .our-values .value-card p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  @keyframes anim {
    0%,
    100% {
      transform: translateX(-50%) translateY(-60%) scale(0.8);
      box-shadow: 0px 0px 20px green;
    }
    50% {
      transform: translateX(-50%) translateY(-60%) scale(1.1);
      box-shadow: 0px 0px 40px green;
    }
  }

  .our-values .value-content .value-icon {
    width: 80px;
    height: 80px;
  }

  .our-values .value-card p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .p-effect::after {
    display: none;
  }
  .our-values .value-card {
    margin-bottom: 30px;
  }
  .our-values .value-content .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
  }
  .our-values .value-content .value-icon i {
    font-size: 24px;
  }
}

/* -------------------- end of our core values section css here ---------------------- */

/* -------------------  contact us css start here --------------- */
.contact-us {
  background: rgba(245, 243, 243, 0.822);
}
.contact-us .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 20px 10px;
  min-height: 220px;
  max-height: 220px;
}
.contact-us .contact-card:hover {
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  /* background: var(--blue); */
}

.contact-us .contact-card i {
  background: var(--green);
  color: var(--white);
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-us .contact-card h3 {
  font-size: 28px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-us .contact-card p {
  color: var(--gray);
}

.contact-us .contact-card p a {
  color: var(--gray);
}

@media screen and (max-width: 1200px) {
  .contact-us .contact-card i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .contact-us .contact-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .contact-card {
    min-height: auto;
    max-height: auto;
    padding: 10px 5px;
    margin-bottom: 20px;
  }
}

/* form 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;
    margin-bottom: 20px;
  }
}

.contact-us .sub-head {
  margin-bottom: 20px;
}

.contact-info .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-info .icon i {
  color: var(--white);
}

.contact-info h3 {
  font-size: 18px;
}
.contact-info h3 a {
  color: var(--black);
}

.contact-us .contact-form .form-control:focus {
  border-color: var(--gray);
  box-shadow: none;
}

.contact-us .contact-form .btn {
  box-shadow: none;
  border: 1px solid #ced4da !important;
}

.contact-us .contact-form .send {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.contact-us .contact-form .send:hover {
  background: none;
  color: var(--orange);
}

/* responsive css start here */

@media screen and (max-width: 767px) {
  .contact-us .sub-head {
    margin-bottom: 10px;
  }
  .contact-us .sub-head h3 {
    font-size: 16px;
  }

  .contact-info .icon {
    width: 35px;
    height: 35px;
  }

  .contact-us .contact-info h3 {
    font-size: 12px;
  }
}

/* end of responsive css here */

/* form css ends */

/* --------------- end of contact us section here --------------- */

/* ------------ FAQ's section css start --------------- */
.faq {
  background: rgba(245, 243, 243, 0.822);
}

.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(--blue);
}

.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 ----------------------- */

/* ------------------ blog css start here ----------------- */

.blogs .blog-card .card-body h3 {
  color: var(--black);
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

.blogs .blog-card .card-body p {
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

.blogs .blog-card .card-footer p {
  color: var(--gray);
}

.blogs .blog-card .blog-img {
  position: relative;
  overflow: hidden;
}

.blogs .blog-card .blog-img img {
  transition: 0.4s ease-in-out;
}

.blogs .blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blogs .blog-card .click-here {
  position: relative;
  display: inline;
  padding: 6px 22px;
  overflow: hidden;
}

/* Default Gradient */
.blogs .blog-card .click-here::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #212e80, #89c800);
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Hover Gradient */
.blogs .blog-card .click-here::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #89c800, #212e80);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
/* On Hover */
.blogs .blog-card .click-here:hover::after {
  opacity: 1;
}
/* Text Styling */
.blogs .blog-card .click-here p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
/* ------------------ end of blog css here ----------------- */

/* ---------------- Footer Section css start here ---------------------*/

.footer-section {
  background: var(--black);
  padding-bottom: 0;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget.about-widget {
  padding-right: 15px;
}

.footer-widget.about-widget img {
  margin-bottom: 40px;
}

.footer-widget.about-widget p {
  margin-bottom: 35px;
  color: #aaadaf;
}

.footer-widget .fw-title {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 35px;
}

.footer-widget ul {
  list-style: none;
  display: inline-block;
}

.footer-widget ul li a {
  display: block;
  font-size: 14px;
  color: #aaadaf;
  margin-bottom: 15px;
}

.footer-widget ul li a:hover {
  color: var(--green);
}

.footer-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 41px;
  height: 41px;
  color: #fff;
  margin-right: 14px;
  margin-bottom: 14px;
  border-radius: 13px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--gray);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--black);
}

.footer-info-box {
  margin-bottom: 30px;
}

.footer-info-box .fib-icon {
  float: left;
  width: 48px;
  padding-top: 8px;
}

.footer-info-box .fib-text {
  overflow: hidden;
}

.footer-info-box .fib-text p {
  margin-bottom: 0;
  color: #aaadaf;
}
.footer-info-box .fib-text p a {
  color: #aaadaf;
}

.footer-bottom {
  margin-top: 55px;
  background: var(--green);
}

.copyright {
  color: var(--black);
  font-size: 14px;
  padding-top: 25px;
  font-weight: 500;
}

.copyright a {
  color: var(--blue);
}

.copyright a:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer-menu {
  list-style: none;
  text-align: right;
}

.footer-menu li {
  display: inline-block;
}

.footer-menu li a {
  display: block;
  padding: 21px 17px;
  margin-left: 13px;
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  position: relative;
}

.footer-menu li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--blue);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer-menu li:hover a:after,
.footer-menu li.active a:after {
  width: 100%;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .footer-menu {
    text-align: center;
  }

  .copyright {
    text-align: center;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .footer-widget.about-widget img {
    width: 120px;
    margin-bottom: 20px;
  }
}
/* responsive css */

/* ---------------- Footer Section css ends here ---------------------*/

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ======================= About us page css start ============================ */

.about-page .about-detail p {
  margin-bottom: 10px;
}

/* mission vision css start here */

.mission-vision {
  background: rgba(245, 243, 243, 0.822);
}

/* Card */
.mv-card {
  position: relative;
  padding: 45px 35px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(135deg, #1f2f7a, #3a8dde, #6fbf4a);
  background-size: 300% 300%;

  animation:
    gradientMove 6s ease infinite,
    fadeUp 1s ease forwards;
  transform: translateY(40px);
  opacity: 0;

  transition: all 0.5s ease;
}

.mv-card.vision {
  animation-delay: 0.3s;
}

/* Overlay for readability */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* Content */
.mv-card * {
  position: relative;
  z-index: 1;
}

/* Icon */
.mv-card .icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.5s ease;
}

/* Heading */
.mv-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */
.mv-card p {
  text-align: center;
  line-height: 1.7;
  color: #f1f1f1;
}

/* HOVER EFFECT */
.mv-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.mv-card:hover::before {
  background: rgba(0, 0, 0, 0.15);
}

.mv-card:hover .icon {
  background: var(--green);
  color: #fff;
  transform: rotate(360deg);
}

/* Animations */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile */

@media screen and (max-width: 991px) {
  .mv-card {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mv-card {
    padding: 25px 15px;
  }

  .mv-card .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
  }

  .mv-card .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;
  }

  /* Heading */
  .mv-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  /* Text */
  .mv-card p {
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #f1f1f1;
  }
}

/* end of mission vision css here */

/* ======================= About us page css end ============================== */

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ======================= blog page css start ============================ */

.blog-page .blog-card {
  margin-bottom: 40px;
}

/* ======================= blog page css ends ============================ */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ---------------------------------- product page css start here ---------------------------------- */

 .product-page-products .product-card .product-name p {
  font-size: 22px;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

 .product-page-products .product-card:hover .product-name p {
  opacity: 0;
}

 .product-page-products .product-card .product-text h4 {
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 600;
}

 .product-page-products .product-card .product-text p {
  font-size: 22px;
  margin-bottom: 20px;
}

 .product-category{
  background: rgba(245, 243, 243, 0.822);
}

/* responsive */

@media screen and (max-width: 991px) {
   .product-page-products .product-card .product-name p {
    font-size: 14px;
  }

   .product-page-products .product-card .product-text h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
   .product-page-products .product-card .product-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
   .product-page-products .product-card .product-name p {
    font-size: 18px;
  }

   .product-page-products .product-card .product-text h4 {
    font-size: 26px;
  }

   .product-page-products .product-card .product-text p {
    font-size: 22px;
  }
}

/* responsive */

/* ---------------------------------- product page css ends here ---------------------------------- */

/* =========================================================================================================== */
/* =========================================================================================================== */

/* ---------------------------------------- enquiry Page css start here ------------------------------------------- */

.enquiry-page .related-products {
  background: rgba(236, 234, 234, 0.795);
}

.product-enquiry .about-product p {
  text-align: justify;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-enquiry .product-img img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
  width: 100%;
}

.product-enquiry .card {
  margin-top: 20px;
}

.product-enquiry .card .card-header {
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.product-enquiry .card .card-body th,
.product-enquiry .card .card-body td {
  vertical-align: middle;
  padding: 10px 5px;
}

.enquire-btn {
  margin-top: 20px;
  text-align: center;
}
.enquire-btn button {
  border: none;
  outline: none;
  background: #4d4c4c;
  color: var(--white);
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}

.enquire-btn button:hover {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* responsive enquire button */
@media screen and (max-width: 991px) {
  .enquire-btn button {
    padding: 10px 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .enquire-btn button {
    padding: 6px 15px;
    font-size: 16px;
  }
}

/* responsive enquire button */

/* cross button in modal css start */
.modal .modal-dialog .modal-content .modal-header button {
  color: black;
  padding: 2px 10px;
  font-size: 20px;
  transition: 0.5s ease-in-out;
}
.modal .modal-dialog .modal-content .modal-header button:hover {
  background: rgba(255, 0, 0, 0.885);
  color: #fff;
  transition: 0.5s ease-in-out;
}
/* cross button in modal css end */

/* responsive css */

@media screen and (max-width: 1400px) {
  .product-enquiry .about-product p {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .product-enquiry .product-img {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto !important;
  }

  .product-enquiry .product-img img {
    width: auto;
  }
  .product-enquiry .about-product p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .product-enquiry .product-img {
    margin-bottom: 10px;
  }

  .product-enquiry .about-product p {
    font-size: 12px;
  }

  .product-enquiry .card {
    margin-top: 10px;
  }

  .product-enquiry .card .card-body {
    padding: 0px;
  }

  .product-enquiry .card .card-body th {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
  }
  .product-enquiry .card .card-body td {
    font-size: 12px;
    text-align: justify;
  }
}

/* end of responsive css */

/* ----------------------------------------end of enquiry Page css here ------------------------------------------- */

/* =========================================================================================================== */
/* =========================================================================================================== */

/* ============================ blog detail page css start here ============================ */
.blog-detail {
  background: linear-gradient(#f7f7f773, #f7f7f7);
}
.blog-detail .blog-img {
  background: #eaeaec;
}

.blog-detail .blog-date {
  display: inline-block;
  background: #4d4c4c;
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
}

.blog-detail .blog-text {
  margin-top: 30px;
}

.blog-detail .blog-text h3 {
  margin-bottom: 5px;
  font-size: 20px;
}
.blog-detail .blog-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.blog-detail .recent-blogs .recent .recent-img {
  background: #eaeaec;
}

.blog-detail .recent-blogs .recent .recent-date p {
  display: inline-block;
  background: #4d4c4c;
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
}

.blog-detail .recent-blogs .recent p {
  color: black;
  padding: 5px;
  transition: 0.5s ease-in-out;
}

.blog-detail .recent-blogs .recent:hover p {
  color: var(--gray);
}
.blog-detail .recent-blogs .recent:hover .recent-date p {
  color: var(--white);
}

.blog-detail .recent-blogs .recent .recent-img {
  position: relative;
  overflow: hidden;
}
.blog-detail .recent-blogs .recent .recent-img img {
  transition: 0.5s ease-in-out;
}

.blog-detail .recent-blogs .recent .recent-img:hover img {
  transform: scale(1.1);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .blog-detail .blog-text h2 {
    font-size: 24px;
  }

  .blog-detail .recent-blogs .recent .recent-img p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail .blog-text h2 {
    font-size: 22px;
  }

  .blog-detail .recent-blogs {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-date {
    padding: 1px 10px;
    font-weight: 600;
    margin-top: 5px;
  }
  .blog-detail .blog-text {
    margin-top: 10px;
  }
  .blog-detail .blog-text h2 {
    font-size: 18px;
  }
  .blog-detail .blog-text h3 {
    margin-bottom: 2px;
    font-size: 16px;
  }
  .blog-detail .blog-text p {
    margin-bottom: 10px;
  }
}

/* responsive css end */

/* ============================ blog detail page css ends here ============================ */
