@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800&display=swap");

body {
  margin: 0px;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-weight: 400;
  transition: all 0.8s ease;
}

.container {
  container-type: inline-size;
  container-name: container;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #008B43;
  --white: #ffffff;
  --black: #000000;
  --light-border: #cacaca;
  --light-black: #111111;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}
img {
  width: 100%;
}
section {
  padding-top: 80px;
}
.no-padding {
  padding: 0px !important;
}
.b-30 {
  border-radius: 30px;
}

.txt-white {
  color: var( --white) !important;
}
.container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  align-items: center;
}

/* -----header---- */
section.header {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
}

section.header .header-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  position: relative;
  padding: 15px 0;
}

.header-row .logo a img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 17%;
  background: var(--white);
  padding: 10px 13px;
  border-radius: 0 0 8px 8px;
}

.nav-menu {
  text-align: end;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}

.nav-menu a {
  font-size: 29px;
  color: var(--main-color);
  font-weight: 600;
  margin-top: 15px;
  transition: 0.5s all;
  background: var(--white);
  width: fit-content;
  padding: 20px 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease-in-out !important;
  animation: 4s infinite vibrate;
}

.nav-menu a img {
  width: 30px;
  
  filter: invert(33%) sepia(53%) saturate(1864%) hue-rotate(123deg) brightness(92%) contrast(102%);
}

@keyframes vibrate {
  0%,
  100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
      -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
/* ----banner--- */

.banner {
  background-image: linear-gradient(rgb(0 139 67), rgb(224 224 224 / 56%)),
  url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  align-content: center;
  height: 700px;
}

.banner-content {
  text-align: left;
}

.banner-content h1 {
  font-size: 39px;
  color: var(--white);
  line-height: 59px;
  max-width: 890px;
}

.banner-content p {
  color: var(--white);
  font-size: 20px;
  padding-top: 10px;
}

.btn {
  color: var(--white);
  background: var(--main-color);
  padding: 8px 40px;
  border-radius: 30px;
  font-size: 16px;
  margin-top: 15px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  background-color: var(--light-black);
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover::before {
  height: 100%;
  width: 155%;
}

.btn:hover {
  color: var(--white) !important;
}

.banner-imgs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 13px;
  margin-top: 28px;
  margin-right: 32px;
}

.banner-imgs img {
  border-radius: 30px;
}
/* ---banner-form----
 */

.enquiry-form {
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 30px;
  background-color: #fff;
  margin-top: 10%;
  margin-left: 10%;
  box-shadow: 0px 0px 10px 0px #cacaca;
}

.enquiry-form h3 {
  color: var(--black);
  padding: 0px 0 10px;
}

div#enForm label {
  color: var(--black);
  font-weight: 500;
}

#enForm form input.form-control {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  background-color: #f4f5f7;
  margin: 7px 0;
  font-family: "Poppins";
  font-size: 13px;
}

#enForm form button.btn {
  background: var(--main-color);
  padding: 12px 61px;
  color: var(--white);
  font-family: poppins;
  border-radius: 30px;
  font-size: 16px;
  border: 1px solid var(--main-color);
  cursor: pointer;
}

#enForm form input.form-control:focus,
#enForm form textarea:focus {
  border: 1px solid var(--light-border);
  background: var(--white);
  outline: 0;
}
/* ---about-us--- */


.about-row {
  display: flex;
  align-items: center;
}

.heading {
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-content-cols {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-content-cols img {
  width: 100%;
  border: 4px solid var(--main-color);
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
  padding: 3px;
}


/* ---enquiry-sec--- */

.enquiry-row {
  background-color: var(--main-color);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 30px;
  position: relative;
  z-index: 3;
}

.enquiry-row::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/layer.webp);
  background-position: center center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.enquiry-content {
  border-right: 1px solid var(--white);
}

.enquiry-row .icon-box {
  display: flex;
  align-items: center;
}

.enquiry-row .icon-box .icon {
  width: 11%;
  display: flex;
  align-items: center;
}

.enquiry-row .icon-box .icon img {
filter: invert(100%) sepia(0%) saturate(1043%) hue-rotate(22deg) brightness(112%) contrast(101%);
}

.enquiry-row .icon-content {
  padding-left: 16px;
}

.enquiry-row .icon-content h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.enquiry-row .icon-content a {
  color: var(--white);
  font-weight: 600;
  font-size: 29px;
  padding-top: 9px;
  display: block;
}

.enquory-btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.contact_now a {
  background: var(--white);
  color: var(--main-color);
}

.wht-cht a {
  background: #17b500;
}

/* -----single-products---- */

.sp-img img {
  border-radius: 30px;
  height: 550px;
  object-fit: cover;
}

.sp-content {
  padding-left: 30px;
}

.sp-content p {
  padding: 10px 0 0;
}

.sp-content ul {
  padding-left: 19px;
  list-style: disc;
  padding-top: 13px;
}

/* ----our-products------ */

.newsletter .news-row {
  background: var(--main-color);
  padding: 30px 30px 40px 30px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.newsletter .news-row::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/layer.webp);
  background-position: center center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.newsletter .news-row h4,
.newsletter .row p {
  color: var(--white);
}

.newsletter-form {
  width: 100%;
  margin-top: 20px;
}
.newsletter-form .form-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter input.form-control {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 14px 20px;
  border: 1px solid #cacaca;
  font-family: "Poppins";
  font-size: 16px;
}

.newsletter input.form-control:focus {
  outline: 0;
}

.newsletter-form .btn {
  border: 1px solid var(--white);
  cursor: pointer;
  font-family: "Poppins";
  padding: 14px 30px;
  width: 43%;
  margin: 0px;
  background: var(--white);
  color: var(--black);
}

.btn:hover {
  border-color: var(--black);
}

/* -----our-products--- */

.our-products h4,
.our-products p {
  text-align: center;
}

section#products p {
  width: 75%;
  margin: 10PX auto;
}

.our-products .product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-top: 40px;
}
.our-products .product-row .card {
  background: #fff;
  padding: 10px;
  border: 1px solid var(--light-border);
  border-radius: 30px;
}

.our-products .product-row .card-img {
  background: #d6d7d9;
  border-radius: 30px;
  margin: auto;
  text-align: center;
}

.our-products .product-row .card-img img {
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 30px;
}

.our-products .product-row .card-body {
  padding: 20px 10px;
}

.our-products .product-row .card-body h5.product-title {
  font-size: 21px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.our-products .product-row .card-body a.readmore {
  font-size: 15px;
  color: var(--main-color);
  text-decoration: underline;
  text-align: center;
  display: block;
  margin-top: 10px;
}

/* ----ready-to-answer--- */

.ready-to-answer {
  background-color: var(--main-color);
  margin-top: 80px;
  padding: 40px 0 !important;
}
.ready-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ready-row .ready-answer-content h4 {
  color: var(--white);
}

.ready-answer-btn {
  display: flex;
  justify-content: end;
  gap: 20px;
  align-items: center;
}

.ready-row .ready-answer-btn a {
  background-color: var(--white);
  color: var(--main-color);
}

/* ------offer-------- */

.offer h4,
.offer p {
  text-align: center;
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
}

.offer-row .card .card-body p {
  text-align: left;
}

.offer-row .card {
  background-color: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.offer-row .card::before {
  content: "";
  position: absolute;
  background-color: var(--main-color);
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  border-radius: 30px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.offer-row .card:hover::before {
  height: 100%;
  opacity: 1;
}

.offer-row .card-body img {
  max-width: 53px;
  margin-bottom: 10px;
}

.offer-row .card:hover img {
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(58deg) brightness(107%) contrast(101%);


}

.offer-row .card strong {
  font-size: 19px;
  display: block;
  font-weight: 600;
}

.offer-row .card a {
  color: var(--black);
  text-decoration: underline;
}

.offer-row .card:hover a,
.offer-row .card:hover strong,
.offer-row .card:hover p {
  color: var(--white);
}

.offer .count {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--black);
  font-size: 41px;
  padding: 20px 0;
  position: relative;
  font-weight: 800;
}

.offer .count::before {
  position: absolute;
  content: attr(data-text);
  top: 19.5px;
  left: 0px;
  -webkit-text-fill-color: var(--black);
  width: 0;
  overflow: hidden;
  transition: 0.7s;
}

.offer .card:hover .count::before {
  width: 100%;
}

/* -----contact-block----- */

.contact-block .contact-block-content .row {
  align-items: center;
  justify-content: space-between;
  justify-items: end;
}

.contact-block-content {
  background: var(--main-color);
  padding: 30px;
  border-radius: 30px;
}

.contact-block-content .icon-box {
  display: flex;
  gap: 15px;
}

.main-icon i {
  font-size: 33px;
  color: #fff;
}

.contact-block-content h5 {
  font-size: 25px;
  color: var(--white);
}

.contact-block-content p {
  color: var(--white);
  margin-top: 11px;
}

.contact-block-content .btn {
  background-color: var(--white);
  color: var(--main-color);
}

/* ------what-can-count---- */

.what-can-count .count-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  grid-gap: 30px;
}

.what-can-count h5.heading {
  text-align: center;
}

.what-can-count .count-card {
  background: var(--white);
  box-shadow: 0px 0px 10px 0px #cacaca;
  border-radius: 30px;
  padding: 25px 20px;
  border-bottom: 6px solid var(--main-color);
}

.what-can-count .count-card .icon {
  width: 50px;
  margin: auto;
}

.what-can-count .count-card h5 {
  font-size: 21px;
  margin: 10px 0;
  text-align: center;
}

.count-card-content p {
  text-align: center;
}
/* ---get-started-content--- */

section.get-started {
  padding-bottom: 80px;
}
.get-started-content h5 {
  font-size: 30px;
  margin-bottom: 20px;
}

.get-started-btn ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.get-started-btn ul li a {
  padding: 15px 50px;
  font-size: 19px;
  text-transform: capitalize;
}

/* ----footer---- */

footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--black);
}
.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 20px;
}

footer em {
  font-size: 30px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 20px;
  display: block;
}

footer .footer-row .cols img.logo {
  width: 69%;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
}

footer .cols ul li a, footer .cols ul.address li {
  color: #fff;
  margin-top: 4px;
  display: block;
}

footer .cols ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cols ul li img {
  width: 18px;
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(58deg) brightness(107%) contrast(101%);
}
/* ----- */

footer .cols ul.address li {
  display: flex;
  gap: 10px;
}

footer ul.address img {
  margin-top: 10px;
}

/* ----- */
section.Year-Warranty {
  background-color: var(--black);
  padding: 30px 0 !important;
  margin-top: 60px;
  border-bottom: 1px solid #fff;
}

section.Year-Warranty .cols {
  display: flex;
  align-items: center;
  gap:20px;
  width: 100%;
  padding: 10px;
}

section.Year-Warranty .cols .cols-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

section.Year-Warranty .cols .cols-icon img {
  width: 8%;
}

section.Year-Warranty .cols strong {
  color: #fff;
  font-size: 18px;
}

section.copy-right {
  padding: 5px 0 !important;
  background: var(--main-color);
}

section.copy-right  p {
  text-align: center;
  color: #fff;
}

section.call-row {
  display: none;
}

.whatsapp-button{
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  animation: effect 5s infinite ease-in;
}

@keyframes effect {
  20%, 100% {
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
  0%, 10%{
      width: 55px;
      height: 55px;
      font-size: 35px;
  }
  5%{
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
}


.whatsapp-button img {
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(58deg) brightness(107%) contrast(101%);
  padding: 8px;
}