@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&family=Titillium+Web:wght@300;400;600;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
p {
  color: #333;
  font-family: "Roboto", Sans-serif;
  font-weight: 300;
}

.section-padding {
  padding: 100px 0;
}

:root {
  --primary-color: #26a02c;
  --secondary-color: #0e0e0e;
  --third-color: #5c5c5c;
  --primary-color-rgb: 38, 160, 44;
  --secondary-color-rgb: 14, 14, 14;
  --third-color-rgb: 92, 92, 92;
  --link-color: #26a02c;
  --link-color-hover: #26a02c;
  --link-color-active: #003c03;
  --gradient-color-from: #27a02d;
  --gradient-color-to: #003c03;
  --snd-font: "Titillium Web", sans-serif;
}
.container {
  max-width: 1200px;
}

/*========== header sec ========*/
.header-sec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.navigation-sec {
  background: transparent;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.navigation-sec.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding-top: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: slideDown 0.3s ease-in-out forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.menu-bar {
  display: none;
}
.close-btn {
  display: none;
}
/*===== topbar sec start ====*/
.theme-area {
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 4px;
}
.theme-area:before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  -webkit-transform: skew(-35deg);
  -khtml-transform: skew(-35deg);
  -moz-transform: skew(-35deg);
  -ms-transform: skew(-35deg);
  -o-transform: skew(-35deg);
  transform: skew(-35deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.social-listing {
  display: flex;
  list-style: none;
  gap: 40px;
  background-color: var(--primary-color);
  justify-content: center;
  border-bottom-right-radius: 25px;
  position: relative;
}
.social-listing li {
  position: relative;
}
.social-listing li::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff61;
  right: -20px;
}
.social-listing li:last-child::after {
  display: none;
}
.social-listing li a {
  color: #fff;
  font-size: 14px;
  padding: 7px 0;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
.social-listing li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.social-listing li a:hover::after {
  width: 100%;
  transition: 0.3s;
}
.social-listing:before {
  -webkit-transform: skew(-35deg);
  -khtml-transform: skew(-35deg);
  -moz-transform: skew(-35deg);
  -ms-transform: skew(-35deg);
  -o-transform: skew(-35deg);
  transform: skew(-35deg);
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background-color: var(--primary-color);
  left: -12px;
  top: 0;
  position: absolute;
}
/*===== topbar sec end ====*/

/*==== navigation-sec ====*/
.header-hidden {
  transform: translateY(-100%);
}
.navigation-area {
  display: flex;
  list-style: none;
  justify-content: end;
  align-items: center;
}
.navigation-area .active {
  color: var(--primary-color);
}
.logo-area {
  padding: 10px;
  background: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.is-sticky .logo-area {
  padding-left: 0;
}
.navigation-area {
  display: flex;
  list-style: none;
  justify-content: end;
  width: 100%;
  height: 100%;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  gap: 80px;
  padding-right: 50px;
  border-top-left-radius: 0;
}
.is-sticky .navigation-area {
  padding-right: 0;
}
.navigation-area li a {
  color: #1b1b1b;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.navigation-area li a:hover {
  color: var(--primary-color);
}
.navigation-area li {
  position: relative;
}
.navigation-area li:after {
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  display: inline-block;
  content: "";
  transform: rotate(-45deg);
  position: relative;
  top: -2px;
  right: -37px;
}
.navigation-area li:nth-child(6):after {
  display: none;
}
.navigation-sec {
  padding-top: 20px;
}

/*==== header sec end ====*/

/*===== hero banner sec start =====*/
.banner-item {
  position: relative;
}
.banner-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000006b;
  z-index: 1;
}
.banner-overley {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  left: 0;
  z-index: 11;
}
.banner-overley span {
  font-size: 20px;
  color: #fff;
  background: linear-gradient(45deg, #26a02c, #003803);
  padding: 10px 20px;
  display: inline-block;
  font-family: var(--snd-font);
  margin-bottom: 25px;
}
.banner-overley h1 {
    font-size: 65px;
    font-family: var(--snd-font);
    color: #fff;
    line-height: 75px;
    font-weight: 700;
}
.banner-overley h2 {
    font-size: 55px;
    color: #fff;
    font-family: var(--snd-font);
    font-weight: 700;
}
.banner-overley p {
  font-size: 20px;
  color: #fff;
  font-family: var(--snd-font);
  width: 40%;
  margin: 20px auto 35px;
}
.banner-btn .quote-btn{
    line-height: 40px;
} 
.contact-btn {
  text-decoration: none;
  font-size: 20px;
  padding: 20px 50px;
  background: #fff;
  color: #1b1b1b;
  border-radius: 10px;
  display: inline-block;
  font-family: var(--snd-font);
  font-weight: 600;
  transition: 0.3s;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.contact-btn i {
  margin-left: 10px;
  color: var(--primary-color) !important;
}
.contact-btn:hover {
  color: #fff;
}
.contact-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, #26a02c, #003803);
  z-index: -1;
  transition: 0.3s;
}
.contact-btn:hover::after {
  width: 100%;
  transition: 0.3s;
}
.banner-area .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  width: 70px;
  height: 70px;
  background: #fff !important;
  border-radius: 50%;
  font-size: 40px !important;
  color: var(--primary-color) !important;
}
.banner-area .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  width: 70px;
  height: 70px;
  background: #fff !important;
  border-radius: 50%;
  font-size: 40px !important;
  color: var(--primary-color) !important;
}
.hero-banner-sec {
  position: relative;
}
.hero-banner-bottom {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 1;
}
/*===== hero banner sec end  ======*/

/*===== banner connect sec start  ======*/
.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.contact-icon i {
  font-size: 30px;
  color: var(--primary-color);
}
.contact-icon {
  position: relative;
}
.contact-icon {
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  background-color: #e5f4e5;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
}
.contact-content a {
  text-decoration: none;
  font-family: var(--snd-font);
}
.contact-content h4 {
  display: block;
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 22px;
}
.contact-content p {
  margin: 0;
  color: #737879;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.contact-details li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 1px;
  height: 100%;
  background-color: #eaeaea;
}
.contact-details li:last-child {
  justify-content: center;
}
.contact-details li:last-child:after {
  display: none;
}
.contact-details li:nth-child(3):after {
  display: none;
}
.banner-connect-area {
  padding: 30px 15px;
  margin-top: -100px;
  position: relative;
  z-index: 9;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
  border-radius: 20px;
}
.quote-btn {
    padding: 15px 25px;
    background: linear-gradient(45deg, #26a02c, #003803);
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s;
    display: inline-block;
}
.banner-connect-area .quote-btn {
  margin-left: auto;
}
.quote-btn i {
  margin-left: 10px;
  font-size: 20px;
}
.quote-btn:hover {
  background: linear-gradient(-45deg, #26a02c, #003803);
}

/*====== about us sec =========*/
.small-heading {
  background: linear-gradient(
    to right,
    var(--gradient-color-from),
    var(--gradient-color-to)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
}
.heading {
    font-family: var(--snd-font);
    font-size: 40px;
    color: #002813;
    font-weight: 700;
}
.about-pera span {
  font-size: 50px;
  /* float: left; */
  line-height: 1;
  /* margin-right: 10px; */
  font-weight: 700;
  color: #000;
}
.about-btn {
  background: linear-gradient(
    to right,
    var(--gradient-color-from),
    var(--gradient-color-to)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: inline-block;
  position: relative;
  float: right;
  margin-top: 5px;
}
.about-btn:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gradient-color-from),
    var(--gradient-color-to)
  );
}
.about-img {
  width: 100%;
  height: 100%;
}
.about-img1 {
  width: 100%;
  height: 100%;
}
.about-img img {
  border-top-left-radius: 100px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img1 img {
  border-bottom-right-radius: 100px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#aboutimg-grid {
  padding: 50px 0 0;
  position: relative;
}
.warranty-area {
  position: absolute;
  width: 166px;
  height: 166px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  display: flex;
  color: #fff;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.warranty-area p {
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin: 0;
}
.warranty-area span {
  font-size: 30px;
}
.warranty-area::after {
  width: 150px;
  height: 150px;
  background: transparent;
  position: absolute;
  content: "";
  top: 8px;
  left: 8px;
  border: 2px dashed #fff;
  border-radius: 50%;
  transition: 300ms linear;
  animation: rotateAnimation 3s linear infinite;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-pera {
  font-size: 16px;
  line-height: 30px;
}
.about-shape img {
  opacity: 0.2;
  width: 70%;
}
/*====== about us sec =========*/

/*===== services sec start ======*/
.service-heading span {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
}
.service-heading h1 {
  font-family: var(--snd-font);
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}
.service-slider .owl-stage-outer {
  padding: 30px 0;
}
.services-area {
  text-align: center;
  background-color: #f4f9f5;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  padding: 60px 15px 50px;
  position: relative;
  min-height: 360px;
  position: relative;
  transition: 0.3s;
  transform: translateY(0);
}
.services-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: ;
}
.services-area:hover {
  box-shadow: 1px 10px 18px 0px rgb(0 0 0 / 8%);
  transition: 0.3s;
  transform: translateY(-10px);
}
.service-icon {
  margin: 0 auto 0px;
  width: 96px;
  height: 96px;
  -webkit-border-radius: 96px;
  -khtml-border-radius: 96px;
  -moz-border-radius: 96px;
  -ms-border-radius: 96px;
  -o-border-radius: 96px;
  border-radius: 96px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 7%);
  position: relative;
  z-index: 1;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
}
.service-icon:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 106px;
  height: 106px;
  background: transparent;
  border-radius: 50%;
  border: 1px dashed var(--primary-color);
  animation: rotateAnimation 3s linear infinite;
  opacity: 0;
}
.services-area:hover .service-icon:after {
  opacity: 1;
}
.service-icon img {
  width: 40px !important;
  display: table;
  margin: 0 auto;
  transition: 0.2s;
}
.services-area:hover .service-icon img {
  filter: invert(1);
}
.services-area:hover .service-icon {
  background: linear-gradient(45deg, #26a02c, #003803);
  box-shadow: 0 5px 25px rgb(38 160 44 / 18%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(-8px);
}
.service-content h3 {
  font-size: 20px;
  color: var(--secondary-color);
}
.service-content {
  position: relative;
  padding-top: 20px;
}
.service-pera {
  color: #333;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin: 20px 0 0;
  width: 100%;
  line-height: 30px;
}
/*.services-area:hover .service-pera {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}*/
.service-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -100px;
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-size: 22px;
}
.services-area:hover .service-btn {
  bottom: -20px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.services-listing {
  margin-top: 80px;
}
.service-sec {
  position: relative;
  z-index: 1;
}
.service-sec::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 65%;
  background-image: url(../img/service-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
/*===== services sec end ========*/

/*===== featured sec start ======*/
.featured-btns {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
.featured-btns .quote-btn {
  font-weight: 700;
}
.need-help-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.need-help-btn span {
  width: 55px;
  height: 55px;
  display: inline-block;
  background: #e3e3e3;
  border-radius: 50%;
  font-size: 29px;
  text-align: center;
  line-height: 55px;
}
.need-help-btn span i {
  background: linear-gradient(
    to right,
    var(--gradient-color-from),
    var(--gradient-color-to)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.need-help-btn h5 {
  display: block;
  font-size: 17px;
  color: #000;
  line-height: 22px;
}
.need-help-btn h4 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}
.need-help-btn h4 a {
  text-decoration: none;
  color: #000;
}
.featured-area {
  position: relative;
  margin-top: 50px;
}
.featured-heading p {
  line-height: 30px;
}
.back-overley {
  position: absolute;
  z-index: -1;
  bottom: 0;
  opacity: 0.2;
}
.featured-img {
  height: 100%;
  padding-left: 60px;
  position: relative;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.img-ft-box {
  position: relative;
  height: 100%;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #26a02c, #003803);
  color: #fff;
  text-decoration: none;
  font-size: 29px;
  border-radius: 50%;
}
.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: ripple 1.5s infinite;
}

.play-btn::after {
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
/*===== featured sec end ========*/

/*===== project sec start ======*/
.project-sec {
  position: relative;
  margin-top: 100px;
}
.project-sec .service-heading h1 {
  font-size: 58px;
}
.project-sec::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 65%;
  background-image: url(../img/service-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.tabcontent {
  display: none;
  margin-top: 50px;
}
.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.tab button {
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 20px;
  background-color: initial;
  -webkit-border-radius: 35px;
  -khtml-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  border: none;
  position: relative;
  z-index: 1;
}
.tab button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #26a02c, #003803);
  z-index: -1;
  border-radius: 35px;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.tab button.active:after {
  opacity: 1;
  transform: scale(1);
  transition: 0.3s;
}
.pr-slider-item {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
}
.pr-slider-item img {
  height: 350px;
  object-fit: cover;
}
.pr-ft-overley {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  background: linear-gradient(180deg, #26a02c70, #010c01);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: 0.2s;
}
.pr-slider-item:hover .pr-ft-overley {
  opacity: 1;
  transition: 0.2s;
}
.pr-ft-overley a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease-in-out;
  text-decoration: none;
  font-size: 20px;
}
.pr-slider-item:hover .pr-ft-overley a {
  margin-bottom: -0px;
  opacity: 1;
  visibility: visible;
  transition: 0.5s all ease-in-out;
}
.pr-ft-overley h6 {
  margin-bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all ease-in-out;
}
.pr-slider-item:hover .pr-ft-overley h6 {
  margin-bottom: -0px;
  opacity: 1;
  visibility: visible;
  transition: 0.2s all ease-in-out;
}
.pr-ft-overley h4 {
  margin-bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}
.pr-slider-item:hover .pr-ft-overley h4 {
  margin-bottom: -0px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}
.pr-more-p {
  text-align: center;
  margin: 30px 0 0;
}
.pr-more-p .about-btn {
  float: none;
}
/*===== project sec end ========*/

/*====== why choose sec start =====*/
.belief_item {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e9e9e9;
    padding: 15px 15px 15px 100px;
    border-radius: 4px;
    min-height: 140px;
    background: #fff;
    margin-bottom: 30px;
    width: 95%;
}
.belief_item::before {
  content: "";
  width: 70%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.belief_item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 70%;
  bottom: -4px;
}
.t_text {
  font-size: 16px;
  text-align: left;
  line-height: 24px;
  transition: all 500ms ease;
  font-weight: 400;
}
.belief_item_content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #002813;
  font-family: var(--snd-font);
  font-weight: 600;
}

.belief_item:hover .belief_item_img img {
  border: 1px solid var(--primary-color);
  transition: all 500ms ease;
}
.border_box {
  width: 70%;
  display: block;
  padding: 1px;
  background: #b10000;
  margin-top: 40px;
  position: relative;
}
.border_box::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #b10000;
  position: absolute;
  right: -8px;
  top: -3px;
}

.belief_item_img {
  position: absolute;
  left: -15px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.belief_item_img img {
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  max-width: 90px;
  padding: 10px;
  box-shadow: 0px 10px 15px rgb(221 221 221 / 15%);
  background: #10ff1c1f;
}
/*.why-choose-sec{
  margin: 100px 0;
  background: #f4f9f5;
}*/
/*===== why choose sec =====*/

/*====== testimonial-sec start =====*/
#sync1 .item {
  text-align: center;
  padding-bottom: 30px;
}

.rating-list {
  list-style: none;
  justify-content: center;
  font-size: 22px;
  color: #ffd203;
  margin-bottom: 20px;
  gap: 5px;
}
#sync1 p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.testi-img img {
  width: 150px !important;
  border-radius: 50%;
}
.testi-img img {
    width: 70px !important;
    height: 70px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 7%);
    display: table;
    margin: 35px auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.testi-img h5{
    color:#fff;
    margin-top:15px;
    text-align:center;
}
.testimonial-sec {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  background-image: url("../img/footer.jpg");
  background-size: cover;
  margin-bottom: 100px;
}
.testimonial-sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #28a42e 0%, #003c03 100%);
  filter: brightness(119%) contrast(148%) saturate(76%) blur(0px)
    hue-rotate(360deg);
  mix-blend-mode: multiply;
  z-index: -1;
}
.testimonial-sec .section-heading span {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
}
.testimonial-sec .section-heading .heading {
  color: #fff;
}

/*========== testimonial-sec end ==========*/



/*====== contact sec start ======*/
.contact-area {
  display: grid;
  grid-template-columns: repeat(2, 40% 60%);
}

/* Left Section */
.contact-left {
  background: url("../img/contact.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-overley-mode {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #28a42e 0%, #003c03 100%);
  filter: brightness(119%) contrast(148%) saturate(76%) blur(0px)
    hue-rotate(360deg);
  mix-blend-mode: multiply;
}

/* Green Overlay */
.contact-left .overlay {
  position: absolute;
  inset: 0; /* Green Transparent Overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px;
  color: white;
}
.contact-left h1 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--snd-font);
  text-align: center;
}

.contact-left .subheading {
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}

/* Right Section */
.contact-right {
  background: #f8f8f2;
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  padding: 100px 30px 100px 80px;
}

/* Form Styling */
form {
  width: 100%;
}

.contact-right input,
select,
textarea {
  width: 100%;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  outline: none;
  height: 77px;
  padding: 0 24px;
  margin-bottom: 30px;
  border-radius: 40px 20px 20px 40px !important;
  color: #696878;
  border: none !important;
  box-shadow: none !important;
}
.contact-right select {
  font-size: 14px;
  color: #696878;
  padding-left: 24px;
}

/* Custom Select Box */
.custom-select {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 40px 20px 20px 40px;
  padding: 0px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  height: 77px;
  line-height: 77px;
  color: #696878;
}

/* Selected Option */
.selected-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 10;
}

/* Dropdown Options */
.option {
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 20px;
}

.option:hover {
  background: #00a000;
  color: white;
}

/* Active Class */
.custom-select.active .dropdown {
  display: block;
}
.contact-right textarea {
  padding: 30px 20px 20px 30px;
  height: 190px;
  font-size: 14px;
  color: #696878;
  margin-bottom: 20px;
}
.contact-submit {
    padding: 15px 50px 15px 50px !important;
    border-radius: 15px 15px 15px 15px !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 45px;
    background: linear-gradient(45deg, #26a02c, #003803);
    color: #fff !important;
    border: none;
    width: 100%;
    text-transform: uppercase;
}
.contact-submit:hover {
  background: linear-gradient(-45deg, #26a02c, #003803);
}
/*====== contact sec end ========*/

/*===== client sec start =====*/
.client-item {
  padding: 20px;
}
/*===== client sec end ======*/

/*===== garda sec start =====*/
.garda-sec .row {
  position: relative;
}
.garda-area {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 190px;
  height: 190px;
  -webkit-border-radius: 190px;
  -khtml-border-radius: 190px;
  -moz-border-radius: 190px;
  -ms-border-radius: 190px;
  -o-border-radius: 190px;
  border-radius: 190px;
  background: #f4f3f0;
}
.garda-fill-img {
  background-image: url(../img/bg-ss4.png);
  background-size: cover;
  height: 515px;
}
.garda-area img {
  width: 65px;
}
.garda-area h4 {
  font-size: 22px;
  text-align: center;
  color: var(--secondary-color);
  font-family: var(--snd-font);
  font-weight: 700;
  margin-top: 15px;
}
#fstgrda {
  margin-top: 59px;
  margin-left: 9px;
}
#sndgrda {
  margin-top: -60px;
  margin-left: 20px;
}
#trdgrda {
  margin-top: -22px;
  margin-left: 10px;
}
.garda-sec .section-heading h1 {
  margin-bottom: 7rem;
}
/*===== garda sec end =====*/

/*===== newsletter sec start ========*/
.newsletter-sec {
  background-color: #117916;
  background-image: url("../img/news-bg.png");
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
  border-radius: 70px 0px 70px 0px;
  padding: 50px 60px;
  position: relative;
  z-index: 2;
  margin-bottom: -80px;
}
.news-heading h1 {
    color: #ffffff;
    font-size: 40px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
}
.background-btn {
  border-radius: 5px 5px 5px 5px;
  padding: 1px 43px 1px 43px;
  color: #000;
  background: #fff;
  line-height: 58px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #fff;
  margin-right: 20px;
}
.background-btn:hover {
    background: linear-gradient(-45deg, #26a02c, #003803);
	color:#fff;
}
.news-btns a i {
  margin-left: 10px;
}
.border-btn {
  border-radius: 5px 5px 5px 5px;
  padding: 1px 43px 1px 43px;
  color: #fff;
  line-height: 58px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #fff;
  position: relative;
  transition: 0.3s;
}
.border-btn:hover {
  background: #fff;
  color: #000;
  transition: 0.3s;
}
.footer-sec {
  padding-top: 100px;
}
/*===== newsletter sec end ==========*/

/*====== footer sec start ========*/
.footer {
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-color: #2e4a2e;
  color: #fff;
  padding: 40px 0;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000ad;
  z-index: -1;
  backdrop-filter: blur(10px);
}

.footer h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  text-decoration: underline;
  color: #117916;
  transition: 0.3s;
}

.footer .social-icons {
  margin-top: 20px;
}

.footer .social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  text-decoration: none;
}

.footer .social-icons a:hover {
  color: #ccc;
}
.copyright {
  margin: 0;
  padding: 50px 0;
  position: relative;
  text-align: center;
}
.copyright:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18%;
  height: 1px;
  background: #fff;
}
.copyright:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 18%;
  height: 1px;
  background: #fff;
}
.copyright a{
    color:#fff;
}

/* Responsive Adjustments */

/* Extra Small Devices (Phones, <576px) */
@media (max-width: 575.98px) {
  .footer {
    padding: 350px 0 0;
  }

.footer h5 {
    font-size: 18px;
}

  .footer p,
  .footer ul li {
    font-size: 14px;
    color: #fff;
    text-align: left; /* Smaller text for better fit */
  }

  .footer .social-icons a {
    font-size: 16px; /* Smaller icons */
    margin-right: 10px;
  }

  .footer .col-12 {
    margin-bottom: 30px; /* Space between stacked sections */
  }

  .footer .col-12:last-child {
    margin-bottom: 0; /* Remove margin from the last section */
  }
}

/* Small Devices (Tablets, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer {
    padding: 230px 0 0;
  }

  .footer h5 {
    font-size: 16px;
  }

  .footer p,
  .footer ul li {
    font-size: 13px;
    color: #fff;
  }

  .footer .social-icons a {
    font-size: 16px;
    margin-right: 12px;
  }

  .footer .col-sm-6 {
    margin-bottom: 30px;
  }

  .footer .col-sm-6:nth-last-child(-n + 2) {
    margin-bottom: 0; /* Remove margin from the last row */
  }
}

/* Medium Devices (Small Laptops, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer {
    padding: 230px 0 0;
  }

.footer h5 {
    font-size: 20px;
}

  .footer p, .footer ul li {
    font-size: 15px;
    color: #fff;
}

  .footer .social-icons a {
    font-size: 17px;
    margin-right: 12px;
  }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
  .footer {
    padding: 150px 0 0px;
  }

  .footer h5 {
    font-size: 18px;
  }

  .footer p,
  .footer ul li {
    font-size: 14px;
    color: #fff;
  }

  .footer .social-icons a {
    font-size: 18px;
    margin-right: 15px;
  }
}
/*====== footer sec end =========*/

/*====== scroll to top button ========*/
#scrollToTop {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.3s;
  z-index: 999;
  box-shadow: rgba(23, 23, 23, 0.25) 0px 0px 25px;
  transition: 0.3s;
  opacity: 0;
}

#scrollToTop:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.3s;
}

/*===== inner banner sec start =====*/
.inner-banner{
  padding: 250px 0 150px;
  background-image: url(../img/inner.jpg);
  background-size: cover;
  position: relative;
  z-index: 1;
}
.inner-banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a6;
    z-index: -1;
}
.inner-banner h2{
  color: #fff;
  font-size: 60px;
}
.breadcrumb {
    justify-content: center;
}
.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.breadcrumb-item.active {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
/*===== inner banner sec end =======*/


/*===== about exclience sec start =====*/
.exclience-sec {
    background: #f4f9f5;
}
.exclience-img {
    width: 100%;
    height: 100%;
    padding-right: 60px;
}
.exclience-img img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
#exclience-content{
  margin-top: 0;
}
.exclience-card-area{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}
.exclience-card .exclience-card-img img{
  width: 42px;
}
.exclience-card {
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    padding-left: 30px;
    margin-top: 80px;
}
.exclience-card-img {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgb(38 160 44 / 28%);
    margin-top: -50px;
    margin-bottom: 20px;
}
.exclience-card-content h4 {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    line-height: 36px;
}
.exclience-card-content p {
    font-size: 14px;
    line-height: 24px;
}
/* .exclience-card-area .exclience-card:last-child{
    grid-column: 1/3;
}  */
/*====== about exclience sec end ======*/

/*===== services page sec start =====*/
.service-page-row .services-area {
    margin-top: 40px;
    text-align: left;
    padding: 60px 25px 50px;
    min-height: 425px;
}
.service-page-row .service-icon {
    margin: 0;
}
.service-page-row .services-area ul{
  padding-left: 25px;
  margin-top: 25px;
}
/*===== services page sec end =======*/

/*======= blog page sec ======*/
.blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .blog-excerpt {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 15px;
        }

        .read-more {
            display: inline-block;
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        .read-more:hover {
            color: #2980b9;
        }

        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
        .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-top: 40px;
}

.pagination a {
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #f1f1f1;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.pagination a.prev, .pagination a.next {
    font-weight: bold;
}

/* Blog Post Styles */
.blog-post {
    margin-bottom: 40px;
}

.blog-post h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #222;
}

.post-meta {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.post-meta span {
    margin-right: 15px;
}

.featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 5px;
}

.post-content {
    margin-bottom: 30px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h3 {
    margin: 25px 0 15px;
    color: #222;
}

.post-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

/* Comments Styles */
.comments {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comments h3 {
    margin-bottom: 20px;
}

.comment {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.blog_seach_area {
    padding: 15px;
    background: #fff;
    border: 1px solid #E1E1E1;
    height: 100%;
}
.blog_searh {
    position: relative;
}
.blog_searh input {
    border-radius: 46px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    height: 46px;
    width: 100%;
    padding-left: 15px;
    outline: none;
}
.blog_search_btn {
    position: absolute;
    background: transparent;
    border: none;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.blog_keyimg {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.blog_keyimg img {
    max-width: 56px;
    height: 56px;
}
.blog_keycontent h6 {
    overflow: hidden;
    color: var(--primary-color);
    text-edge: cap;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.3px;
}
.blog_keycontent h5 {
    overflow: hidden;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.32px;
    margin-top: 5px;
}
.blog_seach_area h4 {
    color: #29273C;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    margin-bottom: 1rem;
    padding-top: 1.3rem;
    margin-top: 2rem;
    text-align: left;
}
.blog_seach_area h4::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -15px;
    width: 5px;
    height: 20px;
    background: var(--primary-color);
}
.size_listings {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-flow: wrap;
    list-style: none;
}
.blog_seach_area .size_listings li a {
    border: 1px solid #E1E1E1;
    color: #29273C;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: block;
    text-align: center;
    transition: 0.5s;
    padding: 0 10px;
    width: auto;
    height: auto;
    text-decoration: none;
}
.size_listings .active {
    background: var(--primary-color);
}
.size_listings li a:hover {
    background: var(--primary-color);
    transition: 0.5s;
}
.blog_keywords {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
/*======= blog page sec =======*/


/*======= contact page sec start ======*/
.contact-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 230px;
}
.contact-card p {
    margin: 0 0 5px;
    font-size: 18px;
}
.contact-card p a{
  color: #333;
  text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .icon {
    background-color: #28a745;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
}
.social-icons {
    display: flex;
    justify-content: start;
    gap: 10px;
}
.social-icons a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
}
.contact-card h3 {
    margin-bottom: 14px;
}
/*======= contact page sec end  =======*/

.blog-content .btn.quote-btn{
    color:#fff !important;
}
.news-btns {
    float: right;
}