/*===================================================== 
Typography ======================================================*/
 body {
  font-family:var(--body-font);
  font-size:16px;
  font-weight:400;
  line-height:1.8;
  color:var(--body-color);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x: hidden;
   width: 100%;
}

:root {
  --primary-color:#4CAF24;
  --secondary-color:#2E7D0E;
  --white-color:#FFFFFF;
  --light-bg: #F4F4F4;
  --body-color:#444444;
  --heading-color:#1F2937;
  --heading-font:'Inter', sans-serif;
  --body-font:'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family:var(--heading-font);
  color:var(--heading-color);
  margin:0 0 20px;
  letter-spacing:-0.5px;
}

h1 {
  font-size:68px;
  font-weight:800;
  line-height:1.1;
}

h2 {
  font-size:52px;
  font-weight:700;
  line-height:1.2;
}

h3 {
  font-size:40px;
  font-weight:700;
  line-height:1.3;
}

h4 {
  font-size:30px;
  font-weight:600;
  line-height:1.35;
}

h5 {
  font-size:24px;
  font-weight:600;
  line-height:1.4;
}

h6 {
  font-size:18px;
  font-weight:600;
  line-height:1.5;
  margin-bottom:15px;
}

p {
  font-family:var(--body-font);
  font-size:16px;
  font-weight:400;
  line-height:1.8;
  color:var(--body-color);
}

.section-title {
  margin-bottom: 10px;
  font-family:var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  line-height:1.2;
  color: var(--heading-color);
}

.section-subtitle {
  display:inline-block;
  margin-bottom: 6px;
  font-family:var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  text-transform:uppercase;
  color:var(--primary-color);
}

a {
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

a:hover {
  color:var(--primary-color);
}

ul, ol {
  margin:0;
  padding:0;
  list-style:none;
}

li {
  font-family:var(--body-font);
  font-size:16px;
  line-height:1.8;
  color:var(--body-color);
}

.btn1  {
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding: 10px 30px;
  background:var(--primary-color);
  color:#fff;
  font-family:var(--heading-font);
  font-size:16px;
  font-weight: 500;
  border-radius: 50px;
  overflow:hidden;
  position:relative;
  transition:all .4s ease;
  z-index:1;
  border: transparent;
}

.btn1:hover {
  background:var(--secondary-color);
  color:var(--white-color);
  transform:translateY(-4px);
}

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

/* ======================================= 
header css start here =========================================*/ 
header.header  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  border-bottom: 1px solid #ffffff52;
}

.navbar-brand img  {
  width: 180px;
}

a.navbar-brand  {
  padding: 0px;
}

.header ul.navbar-nav > li  {
  margin: 0px 24px;
}

.container  {
  max-width: 1366px;
}

.header ul.navbar-nav > li > a  {
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--heading-font);
}

.header nav.navbar  {
  padding: 4px 0px;
  /* background: #fff;
  */
  border-radius: 50px;
  /* padding: 0px 15px; */
}

.has-dropdown {
  position:relative;
}

.sub-menu {
  position:absolute;
  left:0;
  top:120%;
  min-width: 300px;
  background:#fff;
  padding: 0px;
  margin:0;
  list-style:none;
  border-radius: 0px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.35s;
  z-index: 99999;
}

.has-dropdown:hover>.sub-menu {
  top:100%;
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.sub-menu li {
  width:100%;
  border-bottom: 1px solid #cccccc8a;
}

.sub-menu li a {
  display:block;
  padding: 10px 20px;
  color: #000000;
  font-family: var(--heading-font);
  transition:.35s;
  font-weight: 400;
  font-size: 16px;
}

.sub-menu li a:hover {
  background:var(--light-bg);
  color:var(--primary-color);
}

.has-dropdown>a i {
  font-size:11px;
  transition:.35s;
}

.has-dropdown:hover>a i {
  transform:rotate(180deg);
}

.header ul.navbar-nav > li i  {
  font-size: 13px;
  color: #fff;
}

.header ul.navbar-nav li a:hover  {
  color: var(--primary-color);
}

header.header.sticky .header ul.navbar-nav li >a  {
  color: #000 !important;
}

.header.sticky ul.navbar-nav li a  {
  color: #000000;
}

.header.sticky ul.navbar-nav li i  {
  color: #000;
}

.navbar-brand img  {
  filter: brightness(0) invert(1);
}

.header.sticky a.navbar-brand img  {
  filter: none;
}

/* ======================================= 
header css end 
=========================================*/ 

/*=========================================
 Hero Section
 =========================================*/ 
 .video-sec video  {
  width: 100%;
  object-fit: cover;
}

.hero-section {
  position: relative;
  z-index: 0;
}

.hero-item {
  position: relative;
  height: 740px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*========================================= 
Overlay
 =========================================*/ 
.hero-overlay {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(90deg, rgb(59 47 47 / 95%) 0%, rgba(0, 0, 0, .45) 40%, rgb(255 255 255 / 0%) 100%);
}

/*=========================================
 Content 
 =========================================*/ 
 .hero-item .container {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
  z-index:5;
}

.hero-content {
  max-width: 720px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.hero-content .banner-heading {
  color:#fff;
  font-size: 62px;
  line-height: 80px;
  font-weight:800;
  margin-bottom:25px;
  font-family: var(--heading-font);
}

.banner-shape {
  position:absolute;
  left:0;
  bottom: -68px;
  width:100%;
  line-height:0;
  z-index:2;
}

.banner-shape svg {
  display:block;
  width:100%;
  height:140px;
}

.hero-content .banner-heading span {
  display:block;
}

.hero-content .banner-heading strong {
  display:block;
  color:var(--primary-color);
  font-weight:800;
}

.hero-content p {
  color:#ffffff;
  font-size:18px;
  line-height:1.8;
  margin: 30px 0px;
}

/*=========================================
 Buttons
  =========================================*/ 
  .hero-btn {
  margin-top: 60px;
}

.btn2 {
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 50px;
  background:#ffffff;
  color:var(--heading-color);
  font-family:var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  transition:.35s;
  padding: 14px 28px;
}

.btn2:hover {
  background:var(--primary-color);
  color:#fff;
  transform:translateY(-4px);
}

/*=========================================
 Slider Controls
  =========================================*/ 
  .carousel-control-prev, .carousel-control-next {
  width:70px;
  opacity:1;
}

.carousel-control-prev span, .carousel-control-next span {
  width: 48px;
  height: 48px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  transition:.35s;
}

.carousel-control-prev span i, .carousel-control-next span i {
  color:#fff;
  font-size: 16px;
}

.carousel-control-prev span:hover, .carousel-control-next span:hover {
  background:var(--primary-color);
}

/*=========================================
 Animation 
 =========================================*/ 
 .carousel-item.active .hero-bg {
  animation:zoomBanner 8s linear forwards;
}

@keyframes zoomBanner {
  from {
    transform:scale(1);
  }

  to {
    transform:scale(1.08);
  }

}

/*=========================================
 Responsive 
 =========================================*/
  @media(max-width:991px) {
  .hero-item {
    height:700px;
  }

  .hero-content h1 {
    font-size:48px;
  }

  .hero-content p {
    font-size:16px;
  }

  .hero-btn {
    gap:15px;
  }

  .btn1, .btn2 {
    width:100%;
  }

}

@media(max-width:576px) {
  .hero-item {
    height:620px;
  }

  .hero-content h1 {
    font-size:36px;
  }

  .hero-content p {
    font-size:15px;
  }

  .carousel-control-prev, .carousel-control-next {
    display:none;
  }

}

.hero-btn a.btn2  {
  display: initial;
  margin-left: 15px;
}

.hero-navigation button  {
  position: absolute;
  left: 20px;
  width: 48px;
  height: 48px;
  top: 50%;
}

.hero-navigation button.carousel-control-next  {
  left: auto;
  right: 20px;
}

.carousel-indicators {
  bottom: 30px;
  margin-bottom:0;
  gap:12px;
  z-index: 99;
}

.hero-section .carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius:50% !important;
  border:2px solid var(--white-color) !important;
  background:transparent !important;
  opacity:1 !important;
  margin:0 !important;
  transition:var(--transition);
}

.hero-section .carousel-indicators button.active {
  background:var(--primary-color) !important;
  border-color:var(--primary-color) !important;
  transform:scale(1.2);
}

.hero-section .carousel-indicators button:hover {
  background:var(--primary-color) !important;
  border-color:var(--primary-color) !important;
}

/*========================================= 
About Background 
=========================================*/ 
.about-section {
  position:relative;
  overflow:hidden;
  background:#fff;
  z-index:1;
}

/*========================= 
Circle 
=========================*/ 
.about-shape {
  position:absolute;
  border-radius:50%;
  z-index:-1;
}

.shape-one {
  width:420px;
  height:420px;
  left:-220px;
  top:-120px;
  background:radial-gradient(circle, rgba(76,175,36,.10), transparent 70%);
  animation:floatOne 10s ease-in-out infinite;
}

.shape-two {
  width:260px;
  height:260px;
  right:-120px;
  top:120px;
  border:2px dashed rgba(76,175,36,.20);
  animation:rotateShape 30s linear infinite;
}

.shape-three {
  width:180px;
  height:180px;
  right:8%;
  bottom:0;
  background: rgb(76 175 36 / 0%);
  animation:floatTwo 8s ease-in-out infinite;
}

/*=========================
 Dots 
 =========================*/ 
 .about-dots {
  position:absolute;
  width:110px;
  height:110px;
  background-image:radial-gradient(#4CAF24 2px,transparent 2px);
  background-size:18px 18px;
  opacity:.18;
  z-index:-1;
}

.dots-left {
  left:40px;
  bottom:80px;
}

.dots-right {
  right:40px;
  top:80px;
}

/*=========================
 Animations 
 =========================*/ 
 @keyframes floatOne {
  0%,100% {
    transform:translateY(0);
  }

  50% {
    transform:translateY(-35px);
  }

}

@keyframes floatTwo {
  0%,100% {
    transform:translateY(0);
  }

  50% {
    transform:translateY(25px);
  }

}

@keyframes rotateShape {
  from {
    transform:rotate(0deg);
  }

  to {
    transform:rotate(360deg);
  }

}

.about-image-wrap {
  position:relative;
}

.about-main-image {
  overflow:hidden;
  border-radius:30px;
}

.about-main-image img {
  width:100%;
  height:650px;
  object-fit:cover;
}

/* Experience */ .experience-card {
  position:absolute;
  left:-40px;
  bottom:60px;
  background:#fff;
  padding:25px 30px;
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.experience-card h3 {
  color:var(--primary-color);
  font-size:42px;
  margin-bottom:5px;
}

.experience-card span {
  font-weight:600;
}

.client-card-about {
  position:absolute;
  right:-30px;
  top:50px;
  background:var(--primary-color);
  color:#fff;
  padding:25px 35px;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(76,175,36,.25);
}

.client-card-about h3 {
  font-size:42px;
  color:#fff;
  margin-bottom:5px;
}

.client-card-about span {
  color:#fff;
}

/*=========================================
 ISO Certification 
 =========================================*/ 
 .about-content h2  {
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 600;
  color: #343232;
}

.about-section {
  position:relative;
  overflow:hidden;
  padding-top: 30p;
}

.about-content {
  padding-right:35px;
}

.about-content a.btn1  {
  margin-top: 15px;
}

.about-content p {
  margin-bottom: 10px;
}

/*=========================================
 Gallery 
 =========================================*/ 
 .about-gallery {
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
  align-items:stretch;
}

.about-main-image {
  position:relative;
  overflow:hidden;
  border-radius:20px;
}

.about-main-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.about-main-image:hover img {
  transform:scale(1.08);
}

.about-side-image {
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-small-image {
  overflow:hidden;
  border-radius:20px;
  height:calc(50% - 10px);
}

.about-small-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.about-small-image:hover img {
  transform:scale(1.08);
}

/*=========================================
 Video Button 
 =========================================*/ 
 .video-btn {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90px;
  height:90px;
  border-radius:50%;
  background:rgba(255,255,255,.90);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-color);
  font-size:30px;
  transition:.35s;
  box-shadow:0 15px 40px rgba(0,0,0,.20);
}

.video-btn:hover {
  background:var(--primary-color);
  color:#fff;
  transform:translate(-50%,-50%) scale(1.08);
}

/* Pulse Animation */ .video-btn::before {
  content:"";
  position:absolute;
  inset:-12px;
  border:2px solid rgba(255,255,255,.6);
  border-radius:50%;
  animation:pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform:scale(1);
    opacity:1;
  }

  100% {
    transform:scale(1.4);
    opacity:0;
  }

}

/*=========================================
 Responsive 
 =========================================*/ 
 @media(max-width:991px) {
  .about-content {
    padding-right:0;
  }

  .about-gallery {
    grid-template-columns:1fr;
  }

  .about-side-image {
    flex-direction:row;
  }

  .about-small-image {
    height:220px;
    flex:1;
  }

  .about-counter {
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:575px) {
  .about-counter {
    grid-template-columns:1fr;
  }

  .about-side-image {
    flex-direction:column;
  }

  .about-small-image {
    height:220px;
  }

  .video-btn {
    width:70px;
    height:70px;
    font-size:22px;
  }

}

/*========================================= 
Services Section 
=========================================*/ 
.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.services-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgb(76 175 36 / 7%);
  border-radius: 50%;
  top: -180px;
  right: -180px;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -180px;
  left: -180px;
  background: rgb(76 175 36 / 7%);
}

/*========================================= 
Grid 
=========================================*/ 
.services-grid {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 15px;
}

/*=========================================
 Card 
 =========================================*/ 
 .service-card {
  position:relative;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  transition:.4s;
  border:1px solid #edf2ec;
  z-index: 1;
}

.service-card:hover {
  box-shadow: 0 25px 50px rgb(0 0 0 / 3%);
}

/* Animated Top Border */ .service-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0;
  height:4px;
  background:var(--primary-color);
  transition:.4s;
  z-index:2;
}

.service-card:hover::before {
  width:100%;
}

/*=========================================
 Image 
 =========================================*/ 
 .service-img {
  position:relative;
  overflow: hidden;
}

.service-img img {
  width:100%;
  height: 250px;
  object-fit:cover;
  transition:.6s;
}

.service-card:hover .service-img img {
  transform:scale(1.08);
}

/* Dark Overlay */ .service-img::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.35),transparent);
}

/*=========================================
 Icon 
 =========================================*/ 
 .service-icon {
  position:absolute;
  bottom:-28px;
  right:30px;
  width:70px;
  height:70px;
  border-radius:18px;
  background:var(--primary-color);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  border: 4px solid #fff;
  z-index:3;
  transition:.35s;
}

.service-card:hover .service-icon {
  transform:rotate(8deg);
}

/*=========================================
 Content 
 =========================================*/ 
 .service-content {
  padding: 20px 20px;
}

.service-tag {
  display:inline-block;
  padding: 6px 20px;
  border-radius:30px;
  background: rgb(76 175 36 / 12%);
  color:var(--primary-color);
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 18px !important;
  font-weight: 600;
}

.service-content p {
  color:#666;
  line-height: 26px;
  margin-bottom: 14px;
}

/*========================================= 
Button 
=========================================*/ 
.service-btn {
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color:var(--primary-color);
  font-weight: 500;
  transition:.35s;
}

.service-btn i {
  transition:.35s;
  transform: rotate( 320deg);
}

.service-btn:hover {
  color:var(--primary-dark);
}

.service-btn:hover i {
  transform:translateX(6px);
}

/*=========================================
 Responsive 
 =========================================*/
  @media(max-width:991px) {
  .services-grid {
    grid-template-columns:1fr;
  }

  .service-img img {
    height:240px;
  }

}

@media(max-width:767px) {
  .services-grid {
    gap:25px;
  }

  .service-content {
    padding:40px 25px 25px;
  }

  .service-content h3 {
    font-size:24px;
  }

  .service-img img {
    height:220px;
  }

}

/*=========================================
 Why Counter 
 =========================================*/ 
 .why-counter {
  position:relative;
  background:var(--white-color);
}

.section-title-wrap {
  margin-bottom: 32px;
}

.counter-wrap {
  border-top:1px solid transparent;
}

.counter-box {
  text-align:center;
  padding:20px 30px;
  border-right:1px solid #e8e8e8;
  transition:var(--transition);
}

.counter-box img {
  width: 65px;
  margin-bottom:25px;
  transition:.4s;
}

.counter-box h3 {
  font-size: 42px;
  font-weight:700;
  margin-bottom:10px;
  color: var(--heading-color);
}

.counter-box p {
  font-size:18px;
  color:var(--heading-color);
  margin:0;
  line-height:1.6;
  font-family: var(--heading-font);
  font-weight: 500;
}

/* Hover */ .counter-box:hover img {
  transform:translateY(-8px) rotate(-5deg);
}

.counter-box:hover {
  background:#fff;
}

/* Responsive */ @media(max-width:991px) {
  .counter-box {
    border-right:none;
    border-bottom:1px solid #ececec;
    padding:40px 20px;
  }

}

@media(max-width:576px) {
  .section-title-wrap {
    margin-bottom:45px;
  }

  .counter-box h3 {
    font-size:42px;
  }

  .counter-box img {
    width:55px;
  }

}

/*========================================= 
Client Section 
=========================================*/ 
.client-section {
  position:relative;
  overflow:hidden;
  background:#fff;
  z-index:1;
}

/*========================================= 
Background Shapes 
=========================================*/ 
.client-shape {
  position:absolute;
  border:1px solid rgba(76,175,36,.35);
  border-radius:50%;
  z-index:-1;
}

.shape-left {
  width:260px;
  height:260px;
  left:-130px;
  top:80px;
}

.shape-right {
  width:320px;
  height:320px;
  right:-170px;
  top:-60px;
  background:rgba(76,175,36,.08);
  border:none;
}

.shape-right::after {
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  border-radius:50%;
  background: rgb(76 175 36);
  right:40px;
  bottom:30px;
}

/*========================================= 
Dots 
=========================================*/ 
.client-dots {
  position:absolute;
  width:70px;
  height:120px;
  background-image:radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size:18px 18px;
  opacity:.35;
}

.dots-left {
  left:20px;
  top:30px;
}

.dots-right {
  right:20px;
  bottom:40px;
}

/*========================================= 
Badge 
=========================================*/ 
.section-badge {
  align-items:center;
  gap:10px;
  background:#fff;
  border-radius:50px;
  color:var(--primary-color);
  font-family:var(--heading-font);
  font-weight:700;
  display: block;
  margin-bottom: 14px;
}

.section-badge i {
  font-size:18px;
}

/*========================================= 
Heading 
=========================================*/ 
.client-section .section-title {
  margin-bottom:20px;
}

.client-section .section-title span {
  position:relative;
}

.section-desc {
  max-width:700px;
  margin:25px auto 0;
}

/*========================================= 
Client Card 
=========================================*/ 
.client-card {
  position:relative;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding: 9px 25px;
  overflow:hidden;
  transition:.35s ease;
  /* Squircle */ border-radius:38px 18px 38px 18px;
  border:1px solid rgba(139,195,74,.65);
  /* 3D Effect */ box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 2px 0 #7CB342, 0 8px 20px rgba(0,0,0,.06);
}

.client-card:hover {
  transform:translateY(-8px);
  box-shadow: 0 20px 40px rgba(76,175,36,.18), -6px 6px 0 rgba(76,175,36,.8);
}

.client-logo-grid {
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 25px;
}
@media(max-width:991px){

.client-logo-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:767px){

.client-logo-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:480px){

.client-logo-grid{
    grid-template-columns: repeat(2, 1fr);
}

}
.client-card {
}

.client-card img {
  transition:.35s;
}

.client-card:hover img {
  transform:scale(1.08);
}

.client-card img {
   width:100%;
   max-width:160px;
   height:auto;
   object-fit:contain;
}

.client-card:hover img {
  transform:scale(1.08);
}

.client-card h6 {
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#555;
  margin:0;
}

/*========================================= 
Responsive 
=========================================*/ 
@media(max-width:991px) {
  .client-card {
    min-height:150px;
  }

}

@media(max-width:767px) {
  .client-card {
    border-radius:20px;
    min-height:135px;
    padding:20px;
  }

  .client-card img {
    max-width:120px;
  }

  .shape-left, .shape-right {
    display:none;
  }

  .client-dots {
    display:none;
  }

}
@media(max-width:991px){

.client-shape,
.client-dots{
    display:none;
}

}

/*========================================= 
Testimonials 
=========================================*/ 
.testimonial-section {
  position:relative;
}

.testimonial-section .section-title-wrap span.section-subtitle  {
  color: #fff;
}

.testimonial-overlay {
  position:absolute;
  inset:0;
  background: #2e7d0eed;
}

.testimonial-section .container {
  position:relative;
  z-index:2;
}

.testimonial-section .section-title {
  color:#fff;
}

.testimonial-slider {
}

/*=========================================
 Card 
 =========================================*/ 
 .testimonial-item {
  position:relative;
  background:#fff;
  border-radius:18px;
  padding: 30px;
  min-height: 330px;
  transition:.4s;
}

.testimonial-item:hover {
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.quote-icon {
  width: 60px;
  height: 60px;
  border-radius:50%;
  background:rgba(76,175,36,.12);
  color:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 32px;
  margin-bottom:20px;
}

.testimonial-item p {
  font-size: 16px;
  line-height:1.8;
  margin-bottom:30px;
}

.testimonial-item h5 {
  margin-bottom:5px;
  font-size: 18px;
  font-family: var(--heading-font);
}

.testimonial-item span {
  color:#666;
  font-size:15px;
}

.testimonial-shape {
  position:absolute;
  right:20px;
  bottom:20px;
  font-size:70px;
  color:#f2f2f2;
}

/*========================================= Dots =========================================*/ .testimonial-slider .owl-dots {
  margin-top:40px;
  text-align:center;
}

.testimonial-slider .owl-dot {
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.45)!important;
  margin:0 6px;
  transition:.35s;
}

.testimonial-slider .owl-dot.active {
  width: 12px;
  border-radius:30px;
  background:var(--primary-color)!important;
  height: 12px;
}

.testimonial-slider .owl-dot:hover {
  background:var(--primary-color)!important;
}

/*========================================= 
Responsive 
=========================================*/
@media(max-width:991px) {
  .testimonial-item {
    min-height:auto;
  }

}

@media(max-width:767px) {
  .testimonial-section {
    padding:70px 0;
  }

  .testimonial-item {
    padding:30px;
  }

}

.testimonial-item p {
  height:120px;
  overflow-y:auto;
  padding-right:10px;
  margin-bottom:25px;
  line-height:1.8;
}

/*========================================= 
Custom Scrollbar 
=========================================*/ 
.testimonial-item p::-webkit-scrollbar {
  width:6px;
}

.testimonial-item p::-webkit-scrollbar-track {
  background:#f1f1f1;
  border-radius:10px;
}

.testimonial-item p::-webkit-scrollbar-thumb {
  background:var(--primary-color);
  border-radius:10px;
}

.testimonial-item p::-webkit-scrollbar-thumb:hover {
  background:var(--primary-dark);
}

/* Firefox */ .testimonial-item p {
  scrollbar-width:thin;
  scrollbar-color:var(--primary-color) #f1f1f1;
}

/*========================================= 
Blog Section 
=========================================*/ 
.blog-section {
  position:relative;
  background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.blog-section .section-title {
  margin-bottom:0;
}

/*========================================= 
Blog Card 
=========================================*/ 
.blog-item {
  background:var(--white-color);
  border:1px solid #ececec;
  border-radius:18px;
  overflow:hidden;
  transition:all .35s ease;
  height:100%;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.blog-item:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/*========================================= 
Image 
=========================================*/ 
.blog-image {
  overflow:hidden;
  position:relative;
}

.blog-image img {
  width:100%;
  height:250px;
  object-fit:cover;
  transition:all .5s ease;
  object-position: top;
}

.blog-item:hover .blog-image img {
  transform:scale(1.08);
}

/*========================================= 
Content
 =========================================*/ 
 .blog-content {
  padding:28px;
}

/*=========================================
 Meta 
 =========================================*/ 
 .blog-meta {
  display:flex;
  align-items:center;
  gap:18px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
  flex-wrap:wrap;
}

.blog-meta li {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  color: #353333;
  font-weight: 600;
}

.blog-meta li i {
  color:var(--primary-color);
}

.blog-content h4 {
  margin-bottom:15px;
  font-size: 20px;
  line-height:1.4;
  font-family: var(--heading-font);
}

.blog-content h4 a {
  color:var(--heading-color);
  transition:.35s;
}

.blog-content h4 a:hover {
  color:var(--primary-color);
}
.blog-content p {
  margin-bottom:25px;
  color:var(--body-color);
}
.read-more {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--heading-font);
  font-weight:600;
  color:var(--primary-color);
  transition:.35s;
}
.read-more i {
  transition:.35s;
}
.read-more:hover {
  color:var(--primary-dark);
}
.read-more:hover i {
  transform:translateX(6px);
}
 @media(max-width:991px) {
  .blog-content {
    padding:24px;
  }

  .blog-content h4 {
    font-size:22px;
  }

  .blog-image img {
    height:220px;
  }

}

@media(max-width:767px) {
  .blog-section {
    padding:70px 0;
  }

  .blog-image img {
    height:220px;
  }

  .blog-content {
    padding:20px;
  }

  .blog-content h4 {
    font-size:20px;
  }

  .blog-meta {
    gap:12px;
  }

}

/*========================================= 
CTA Section 
=========================================*/ 
.cta-section {
  background: linear-gradient(90deg, #4CAF24 0%, #41b317 100%);
  border-radius: 0px;
  padding: 35px 45px;
  overflow: hidden;
  position: relative;
}

 .cta-wrapper::before {
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:220px;
  height:220px;
  background:rgba(255,255,255,.06);
  border-radius:50%;
}

.cta-wrapper::after {
  content:"";
  position:absolute;
  left:-40px;
  bottom:-40px;
  width:150px;
  height:150px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
}
.cta-content {
  display:flex;
  align-items:center;
  gap:25px;
}

.cta-icon {
  width:75px;
  height:75px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.cta-icon img {
  width:42px;
}

.cta-text h2 {
  color:#fff;
  font-size: 32px;
  margin-bottom:10px;
}

.cta-text p {
  color: rgb(255 255 255);
  margin:0;
  font-size:17px;
}
.cta-wrapper .btn2 {
  background:#fff;
  color:var(--primary-color);
  min-width:220px;
}

.cta-wrapper .btn2:hover {
  background: #fff;
  color: #44b21b;
}
@media(max-width:991px) {
  .cta-wrapper {
    padding:35px 25px;
  }

  .cta-content {
    flex-direction:column;
    text-align:center;
  }

  .cta-text h2 {
    font-size:30px;
  }

}

@media(max-width:575px) {
  .cta-text h2 {
    font-size:26px;
  }

  .cta-wrapper .btn2 {
    width:100%;
  }

}

/*========================================= 
Footer
 =========================================*/ 
 .footer {
  position:relative;

  padding:80px 0 0;
  color:#fff;
  overflow:hidden;
} 
.footer-widget {
  position:relative;
  z-index:2;
}

.footer-logo {
  display:inline-block;
  margin-bottom:25px;
}

.footer-logo img {
  max-width:180px;
}

.footer-widget p {
  color: rgb(255 255 255);
  margin-bottom:30px;
  line-height:1.9;
}

.footer-widget h4 {
  color:#fff;
  font-size: 20px;
  margin-bottom:30px;
}
.footer-links {
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li:last-child {
  margin-bottom:0;
}

.footer-links li a {
  color: rgb(255 255 255);
  transition:.35s;
  position:relative;
}

.footer-links li a:hover {
  color:#fff;
  padding-left:8px;
} 
.footer-contact {
  margin:0;
  padding:0;
  list-style:none;
}

.footer-contact li {
  display:flex;
  align-items: center;
  gap:15px;
  margin-bottom: 14px;
}

.footer-contact li:last-child {
  margin-bottom:0;
}

.footer-contact i {
  width:42px;
  height:42px;
  border-radius:50%;
  background: rgb(255 255 255);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-color);
  flex-shrink:0;
}

.footer-contact a, .footer-contact span {
  color: rgb(255 255 255);
  line-height:1.8;
} 
.footer-social {
  display:flex;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.footer-social li a {
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgb(255 255 255);
  color: #337b15;
  transition:.35s;
}

.footer-social li a:hover {
  background: #ffffff;
  transform:translateY(-5px);
}

/*=========================================
 Bottom 
 =========================================*/ 
.footer-bottom {
  margin-top:60px;
  padding:22px 0;
  border-top: 1px solid rgb(255 255 255 / 99%);
  position: relative;
}

.copyright {
  margin:0;
  color: #fff;
  text-align: center;
}

.footer-bottom-links {
  display:flex;
  justify-content:flex-end;
  gap:30px;
  margin:0;
  padding:0;
  list-style:none;
}

.footer-bottom-links li {
  position:relative;
}

.footer-bottom-links li:not(:last-child)::after {
  content:"";
  position:absolute;
  right:-15px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:14px;
  background: rgb(255 255 255);
}

.footer-bottom-links a {
  color: #ffffff;
  transition:.35s;
}

.footer-bottom-links a:hover {
  color:#fff;
}

/*=========================================
 Scroll Top 
 =========================================*/ 
.scroll-top {
  position:absolute;
  right:35px;
  bottom:28px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fff;
  color:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  transition:.35s;
}

.scroll-top:hover {
  background:var(--primary-color);
  color:#fff;
  transform:translateY(-5px);
} 
@media(max-width:991px) {
  .footer {
    padding-top:70px;
  }

  .footer-bottom-links {
    justify-content:flex-start;
    margin-top:20px;
    flex-wrap:wrap;
  }

  .scroll-top {
    right:20px;
    bottom:20px;
  }

}

@media(max-width:767px) {
  .footer {
    text-align: left;
  }

  .footer-contact li {
    justify-content: flex-start;
    text-align:left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align:center;
  }

  .footer-bottom-links {
    justify-content:center;
  }

}

.cta-icon i  {
  font-size: 56px;
  color: #fff;
}

.footer:before  {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2e7d0eed;
}

.copyright p:hover a, .copyright a:hover  {
  color: #fff;
}

.header.sticky {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  background:#ffffff;
  animation:headerSlide .5s ease forwards;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  z-index: 999;
}

@keyframes headerSlide {
  0% {
    transform:translateY(-100%);
  }

  100% {
    transform:translateY(0);
  }

}

.why-stats {
  background: #ffffff;
}

.stats-box {
  background:#fff;
  border-radius:30px;
  padding: 60px 30px 100px;
  position:relative;
  overflow:hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 6px 0px;
  border: 1px solid #cccccc7a;
}

.stats-box::before {
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:radial-gradient(circle,rgba(76,175,36,.08),transparent 70%);
  top:-170px;
  right:-170px;
}

.stats-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.stat-card {
  background:#fff;
  border:1px solid #edf2ec;
  border-radius:22px;
  padding:35px 25px;
  text-align:center;
  transition:.35s;
}

.stat-card:hover {
  transform:translateY(-8px);
  border-color:#4CAF24;
  box-shadow:0 15px 35px rgba(76,175,36,.15);
}

.stat-card h3 {
  font-size:58px;
  color:#4CAF24;
  margin-bottom:12px;
  font-weight:700;
}

.stat-card h5 {
  font-size:22px;
  margin-bottom:12px;
}

.stat-card p {
  color:#666;
  line-height:1.7;
  margin:0;
}

@media(max-width:991px) {
  .stats-grid {
    grid-template-columns:1fr;
    margin-top:40px;
  }

  .stats-box {
    padding:40px 25px;
  }

}

.stats-box {
  background-size:24px 24px;
  background-position:98% 10%;
}

.stats-content::before {
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  left:-80px;
  top:-80px;
  border:2px solid rgba(76,175,36,.12);
  border-radius:50%;
}

.stat-card {
  position:relative;
}

.stat-card::before {
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#4CAF24;
  right:20px;
  top:20px;
  opacity:.15;
}

/* waves */ .ocean  {
  height: 75px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
}

.wave  {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%234CAF24'/%3E%3C/svg%3E");
  position: absolute;
  width: 200%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2)  {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3)  {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave  {
  0%  {
    transform: translateX(0);
  }

  50%  {
    transform: translateX(-25%);
  }

  100%  {
    transform: translateX(-50%);
  }

}

/*** ==================================================================== 
 * Work Section 
 * ==================================================================== ***/ 
 .work-section .shape-one  {
  position: absolute;
  top: 98px;
  left: 93px;
  pointer-events: none;
}

@media (max-width: 991.98px)  {
  .work-section .shape-one  {
    display: none;
  }

}

.work-section .shape-two  {
  position: absolute;
  top: 86px;
  right: 97px;
  pointer-events: none;
}

@media (max-width: 991.98px)  {
  .work-section .shape-two  {
    display: none;
  }

}

.work-section .shape-three  {
  position: absolute;
  bottom: 68px;
  right: 92px;
  pointer-events: none;
}

@media (max-width: 991.98px)  {
  .work-section .shape-three  {
    display: none;
  }

}

.work-section .inner-container  {
  padding: 70px 0;
  background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
  position: relative;
  margin: 0 auto;
  border-radius: 0px;
}
section.work-section {
    padding-top: 0px;
}

@media (max-width: 991.98px)  {
  .work-section .inner-container  {
    padding: 80px 0;
  }

}

.work-section .outer-box  {
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 50px 44px 100px 60px;
  position: relative;
  margin-top: 65px;
}

@media (max-width: 991.98px)  {
  .work-section .outer-box  {
    margin-top: 0;
  }

}

@media (max-width: 575.98px)  {
  .work-section .outer-box  {
    padding: 50px 20px 100px 20px;
  }

}

.work-section .outer-box:before  {
  background-color: #42990e;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: -61px;
  left: 0;
}

@media (max-width: 991.98px)  {
  .work-section .outer-box:before  {
    display: none;
  }

}

.work-section .sec-title  {
  margin-bottom: 117px;
}

@media (max-width: 991.98px)  {
  .work-section .sec-title  {
    margin-bottom: 30px;
  }

}

.work-section .bottom-box  {
  background-color: #fff;
  border-radius: 55px;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 923px;
  margin: 0 auto;
  margin-top: -38px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px)  {
  .work-section .bottom-box  {
    padding: 25px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}

.work-section .bottom-box .images  {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 20px;
}

.work-section .bottom-box .images img  {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid var(--theme-color-white);
  margin-left: -20px;
}

.work-block .inner-block  {
  position: relative;
}

@media (max-width: 991.98px)  {
  .work-block .inner-block  {
    margin-bottom: 50px;
  }

}

.work-block .inner-block:hover .step-count  {
  background-color: #4caf24;
  color: #fff;
}

.work-block .inner-block:hover .icon  {
  background-color: #4caf24;
}

.work-block .inner-block:hover .icon img, .work-block .inner-block:hover .icon i  {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  color: var(--theme-color-dark);
}

.work-block .icon  {
  width: 86px;
  height: 86px;
  line-height: 113px;
  text-align: center;
  border-radius: 15px;
  background-color: #ffffff;
  margin-bottom: 36px;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.work-block .icon img, .work-block .icon i  {
  color: var(--theme-color1);
  font-size: 42px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.work-block .title  {
  margin-bottom: 18px;
  font-size: 22px;
}

.work-block .text  {
  max-width: 330px;
}

.work-block .step-count  {
  background-color: #ffffff;
  border-radius: 29px;
  color: #212621;
  display: inline-block;
  font-weight: 500;
  padding: 4px 19px;
  position: absolute;
  top: -130px;
  left: 0;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 991.98px)  {
  .work-block .step-count  {
    top: 0;
    left: auto;
    right: 30px;
  }

}

@media (max-width: 575.98px)  {
  .work-block .step-count  {
    right: 0;
  }

}

.work-block .inner-block:hover .icon i  {
  color: #fff;
}

/*** ==================================================================== 
 Work Section Layout 2 
 ==================================================================== 
 * ***/ 

  .cta-section2 .outer-box  {
  position: relative;
  background-color: #E8F5D3;
  border-radius: 40px;
  z-index: 1;
}

@media (max-width: 991.98px)  {
  .cta-section2 .outer-box  {
    overflow: hidden;
  }

}

.cta-section2 .outer-box:before  {
  position: absolute;
  content: "";
  width: 854px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px 0 0 40px;
}

.cta-section2 .content-column .inner-column  {
  position: relative;
  padding: 86px 77px 100px;
}

@media (max-width: 575.98px)  {
  .cta-section2 .content-column .inner-column  {
    padding: 30px 20px 30px;
  }

}

.cta-section2 .content-column .inner-column .title  {
  max-width: 600px;
  margin-bottom: 30px;
  color: #000000;
}

@media (max-width: 575.98px)  {
  .cta-section2 .content-column .inner-column .title  {
    margin-bottom: 20px;
    font-size: 22px;
  }

}

.cta-section2 .content-column .inner-column .shape-2  {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 575.98px)  {
  .cta-section2 .content-column .inner-column .shape-2  {
    display: none;
  }

}

.cta-section2 .image-column .inner-column  {
  position: relative;
  margin-left: -179px;
}

@media (max-width: 991.98px)  {
  .cta-section2 .image-column .inner-column  {
    display: none;
  }

}

.cta-section2 .image-column .inner-column .image  {
  position: absolute;
  top: -1px;
  right: 50px;
}

.cta-section2 .image-column .inner-column .shape-1  {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

.cta-section2 .image-column .inner-column .image img  {
  width: 475px;
}

/*** ==================================================================== 
 *rating-section-layout2 
  ==================================================================== 
 ***/ 
  .projects-section  {
}

@media (max-width: 991.98px)  {
  .projects-section  {
    padding: 80px 0;
  }

}

.projects-block .inner-block  {
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  height: 650px;
}

@media (max-width: 1199.98px)  {
  .projects-block .inner-block  {
    margin-bottom: 20px;
  }

}

@media (max-width: 767.98px)  {
  .projects-block .inner-block  {
    border-radius: 20px;
    height: 400px;
  }

}

.projects-block .inner-block:hover:before  {
  opacity: 0;
}

.projects-block .inner-block:hover:after  {
  opacity: 1;
}

.projects-block .inner-block:hover .image img  {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects-block .inner-block:hover .content-box .sub-title .text  {
  background-color: #F6F8F3;
  color: #4caf24;
}

.projects-block .inner-block:before  {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(63.93%, rgba(255, 255, 255, 0)), color-stop(104.63%, #212621));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 63.93%, #212621 104.63%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.projects-block .inner-block:after  {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(63.93%, rgba(255, 255, 255, 0)), color-stop(104.63%, #42990E));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 63.93%, #42990E 104.63%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 767.98px)  {
  .projects-block .image  {
    width: 100%;
    height: 100%;
  }

}

.projects-block .image img  {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.projects-block .content-box  {
  position: absolute;
  right: 30px;
  bottom: 150px;
  z-index: 1;
}

@media (max-width: 767.98px)  {
  .projects-block .content-box  {
    right: 0;
    bottom: 0;
    padding: 10px;
  }

}

.projects-block .content-box .inner-box  {
  background-color: #fff;
  border-radius: 20px;
  max-width: 599px;
  overflow: hidden;
  padding: 20px;
}

@media (max-width: 767.98px)  {
  .projects-block .content-box .inner-box  {
    max-width: 100%;
  }

}

@media (max-width: 575.98px)  {
  .projects-block .content-box .inner-box  {
    padding: 20px;
  }

}

.projects-block .content-box .sub-title  {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.projects-block .content-box .sub-title .text  {
  background-color: #E8F5D3;
  border-radius: 14px;
  color: #212621;
  font-weight: 500;
  display: inline-block;
  padding: 3px 9.2px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.projects-block .content-box .title  {
  margin-bottom: 18px;
  font-size: 33px;
}

@media (max-width: 575.98px)  {
  .projects-block .content-box .title  {
    font-size: 24px;
  }

}

.projects-block .content-box .title:hover a  {
  background-size: 100% 1px;
}

.projects-block .content-box .title a  {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}

.projects-block .content-box .text  {
  margin-bottom: 23px;
}

.projects-block .content-box .button-box  {
  position: relative;
  text-align: right;
}

.projects-block .content-box .button-box:before  {
  content: "";
  background-color: rgba(33, 38, 33, 0.1);
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  width: 73%;
  height: 1px;
}

.projects-block .content-box .theme-btn  {
  background-color: var(--theme-color1);
}

.projects-block .content-box .theme-btn:before  {
  background-color: var(--theme-color2);
}

.des-portfolio-wrap  {
  margin-top: 30px;
}

.des-portfolio-panel  {
  position: sticky;
  top: 100px;
  min-height: 650px;
}
.projects-block .inner-block:last-child {
    margin-bottom: 0px;
}
.projects-block:last-child .content-box {
    bottom: 30px;
}

/* ============================
 aos animations css start here 
 =============================*/
.hero-animate{
    animation:fadeUp .8s ease forwards;
}

.hero-text{
    opacity:0;
    animation:fadeUp .8s .25s forwards;
}

.hero-btn-animate{
    opacity:0;
    animation:fadeUp .8s .45s forwards;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}
.footer-bottom{
    opacity: 0;
    transform: translateY(30px);
    animation: footerFade .8s ease forwards;
    animation-delay: .3s;
}

@keyframes footerFade{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ============================
 aos animations css start here 
 =============================*/

 /*==============================
BOOKING SECTION
==============================*/

.booking-section{
    position: relative;
    overflow:hidden;
    background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.booking-section:before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-180px;
    top:-180px;
    background:radial-gradient(circle,rgba(76,175,36,.12),transparent 70%);
    border-radius:50%;
}

.booking-section:after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-220px;
    bottom:-220px;
    background:radial-gradient(circle,rgba(76,175,36,.08),transparent 70%);
    border-radius:50%;
    z-index: 1;
}

/*==============================
WRAPPER
==============================*/

.booking-wrapper{

position:relative;

overflow:hidden;
}



/*==============================
LEFT
==============================*/

.booking-list{

margin: 25px 0 20px;

padding:0;

list-style:none;
}

.booking-list li{

display:flex;

align-items:flex-start;

gap:12px;

margin-bottom: 15px;

font-size: 16px;

color:#444;
}

.booking-list i{

    color:#4CAF24;

    margin-top:4px;

}

/*==============================
RIGHT GALLERY
==============================*/

.booking-gallery{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    position:relative;

}


.booking-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* Slanted */

.image-one{

    clip-path:polygon(12% 0,100% 0,88% 100%,0 100%);

}

.image-two{

    clip-path:polygon(12% 0,100% 0,88% 100%,0 100%);

    margin-top:35px;

}

.image-three{

    clip-path:polygon(12% 0,100% 0,88% 100%,0 100%);

    margin-top:-35px;

}

/*==============================
BADGE
==============================*/

.green-badge{

    position:absolute;

    left:32%;

    bottom:80px;

    width:135px;

    height:135px;

    background:#fff;

    border:8px solid #dff2d7;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.green-badge h5{

    margin:0;

    font-size:34px;

    color:#4CAF24;

    font-weight:700;

}

.green-badge span{

    font-size:14px;

    line-height:1.4;

    text-align:center;

}

/*==============================
BOTTOM REVIEW
==============================*/

.review-strip{

display:grid;

grid-template-columns: repeat(4,1fr);

margin-top: 20px;

background: #fff;

padding: 10px 20px;

border-radius: 10px;
}

.review-item{

position:relative;

text-align: center;
}

.review-item:not(:last-child):after{

    content:"";

    position:absolute;

    right:-15px;

    top:10px;

    width:1px;

    height:90px;

    background:#ececec;

}

.review-item img{width: 200px;}

.review-stars{

color:#ffb400;

font-size: 18px;
}

.review-stars i{

    margin:0 2px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.booking-wrapper{padding: 0px;}

.booking-content{

padding-right:0;

margin-bottom:50px;

}

.booking-content h2{

font-size:40px;

}

.booking-gallery{

flex-direction:column;

}

.booking-image{

width:100%;

        height: auto;

clip-path:none;

margin:0!important;

}

.green-badge{

left:50%;

transform:translateX(-50%);

bottom:20px;

}



.review-item:after{

display:none;

}

}
.review-strip .review-text {
    text-align: left;
}

.review-strip .review-text h3 {
    font-size: 22px;
    margin: 5px 0px;
    font-weight: 700;
    color: var(--heading-color);
}
/*==============================
QUOTE SECTION
==============================*/

.quote-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
}


.quote-card{
    position:relative;
    z-index:2;
    background: #f1f9ee;
    border-radius: 18px;
    padding: 25px;
    border:1px solid #edf4e8;
    /* box-shadow:0 20px 70px rgba(0,0,0,.08); */
}

/*==============================
HEADER
==============================*/


.quote-icon{
    width:88px;
    height:88px;
    min-width:88px;
    border-radius: 50px;
    background: #def0c8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#4CAF24;
    box-shadow:0 10px 30px rgba(76,175,36,.12);
}

.quote-content .sub-title{
    display:block;
    color:#4CAF24;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.quote-content h2{
    font-size: 42px;
    line-height:1.1;
    margin-bottom:12px;
    font-weight:700;
    color:#111;
}

.quote-content p{
    max-width:520px;
    color:#666;
    line-height:1.8;
    margin:0;
}

/*==============================
BADGE
==============================*/

.response-box{
    display:flex;
    align-items:center;
    gap:16px;
    background: #4caf24;
    border-radius:18px;
    padding: 16px 12px;
    min-width:220px;
}

.response-icon{
    width: 48px;
    height: 48px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#4CAF24;
    font-size:26px;
    box-shadow:0 5px 20px rgba(76,175,36,.15);
}

.response-box strong{
    display:block;
    font-size: 22px;
    color: #ffffff;
}

.response-box span{
    color: #ffffff;
}

/*==============================
FORM
==============================*/

.quote-form{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 15px;
}

.form-group{
    position:relative;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group i{
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
    color:#808080;
    font-size:18px;
    pointer-events:none;
}

.form-group.textarea i{
    top: 18px;
    transform:none;
}

.form-group input,
.form-group select{
    width:100%;
    height: 50px;
    border:1px solid #dde6d7;
    border-radius: 50px;
    padding:0 22px 0 60px;
    font-size:16px;
    line-height:normal;
    color:#333;
    outline:none;
    background:#fff;
    transition:.35s;
}

.form-group textarea{
    width:100%;
    height: 112px;
    border:1px solid #dde6d7;
    border-radius: 50px;
    padding: 12px 15px 15px 54px;
    resize:none;
    font-size:16px;
    line-height:1.5;
    outline:none;
    transition:.35s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#4CAF24;
    box-shadow:0 0 0 4px rgba(76,175,36,.12);
}

.form-group select{
    appearance:none;
    cursor:pointer;
}

.form-group::after{
    content:"\f107";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    color:#777;
    pointer-events:none;
}

.form-group:not(:has(select))::after{
    display:none;
}
/*====================================
BUTTON
====================================*/

.form-btn{
    grid-column:1/-1;
    display:flex;
    justify-content:flex-end;
    margin-top:8px;
}

.form-btn .btn1{
    height: 50px;
    border:none;
    border-radius: 50px;
    background:#4CAF24;
    color:#fff;
    font-size: 16px;
    font-weight: 500;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    cursor:pointer;
    transition:.35s;
}

.form-btn .btn1:hover{
    background:#2E7D32;
    transform:translateY(-3px);
}

.form-btn .btn1 i{
    transition:.35s;
}

.form-btn .btn1:hover i{
    transform:translateX(6px);
}

/*====================================
FOOTER
====================================*/

.quote-footer{
    margin-top: 30px;
    padding-top:25px;
    border-top:1px solid #edf1eb;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/*====================================
REVIEWS
====================================*/

.review-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.review-users{
    display:flex;
}

.review-users img{
    width:52px;
    height:52px;
    border-radius:50%;
    border:3px solid #fff;
    object-fit:cover;
    margin-left:-12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.review-users img:first-child{
    margin-left:0;
}

.review-content .stars{
    color:#ffb400;
    margin-bottom:4px;
}

.review-content strong{
    display:block;
    font-size: 16px;
    line-height:1.4;
    color:#222;
    font-weight: 600;
}

.review-content span{
    color:#4CAF24;
}

/*====================================
TRUST ITEMS
====================================*/

.trust-items{
    display:flex;
    align-items:center;
    gap:45px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#222;
    font-weight:500;
    position:relative;
}

.trust-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-23px;
    width:1px;
    height:26px;
    background:#e6ece3;
}

.trust-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f4faef;
    color:#4CAF24;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/*====================================
INPUT PLACEHOLDER
====================================*/

input::placeholder,
textarea::placeholder{
    color:#777;
}

select{
    color:#777;
}

/*====================================
HOVER
====================================*/

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover{
    border-color:#bfd7b3;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1199px){

.quote-content h2{
    font-size:40px;
}

.quote-header{
    flex-direction:column;
}

.response-box{
    width:100%;
}

.quote-form{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.quote-card{
    padding:25px;
    border-radius:24px;
}

.quote-title-wrap{
    flex-direction:column;
}

.quote-content h2{
    font-size:32px;
}

.quote-form{
    grid-template-columns:1fr;
}

.form-group.full{
    grid-column:auto;
}

.form-btn{
    justify-content:center;
}

.form-btn .btn1{
    width:100%;
}

.quote-footer{
    flex-direction:column;
    align-items:flex-start;
}

.trust-items{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
}

.trust-item::after{
    display:none !important;
}

}

/*====================================
SMOOTH EFFECT
====================================*/

.quote-card,
.response-box,
.form-group input,
.form-group textarea,
.form-group select,
.btn1{
    transition:all .35s ease;
}
.quote-section{
    position:relative;
    overflow:hidden;
    padding-bottom: 0px;
}

.quote-circle-left{
    position:absolute;
    width:260px;
    height:260px;
    border:1px solid rgba(76,175,36,.25);
    border-radius:50%;
    left:-150px;
    top:120px;
}

.quote-circle-right{
    position:absolute;
    width:260px;
    height:260px;
    background:#4CAF24;
    opacity:.08;
    border-radius:50%;
    right:-170px;
    top:80px;
}

.quote-card{
    position:relative;
    z-index:2;
    margin-top: 30px;
}
.form-group input:focus, .form-group select:focus {
    box-shadow: none;
}

.form-group textarea:focus {
    box-shadow: none;
}

/*=========================================
INNER BANNER
=========================================*/

.inner-banner{
    position:relative;
    padding: 180px 0px 100px;
    z-index:1;
    background-size: cover !important;
}

.inner-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
        rgba(16,30,16,.82) 0%,
        rgba(16,30,16,.65) 40%,
        rgba(16,30,16,.25) 70%,
        rgba(16,30,16,.15) 100%);
    z-index:-1;
}



/*=========================================
CONTENT
=========================================*/

.inner-banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
}


.inner-banner .section-title{
    color:#fff;
    font-size: 44px;
    line-height:1.1;
    margin-bottom:20px;
}

.inner-banner p{
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.8;
    max-width:620px;
    margin:0;
}

/*=========================================
BREADCRUMB
=========================================*/

.breadcrumb-list{
    display:flex;
    align-items:center;
    gap:12px;
    padding:0;
    margin:0 0 20px;
    list-style:none;
}

.breadcrumb-list li{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.breadcrumb-list li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-list li a:hover{
    color:#4CAF24;
}

.breadcrumb-list i{
    color: #ffffff;
    font-size:12px;
}

/*=========================================
DECORATION
=========================================*/

.inner-banner .container{
    position:relative;
}



/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

.inner-banner{
    padding:100px 0;
}

.inner-banner .section-title{
    font-size:42px;
}

.inner-banner p{
    font-size:16px;
}

}

@media (max-width:767px){

.inner-banner{
    padding:80px 0;
}

.inner-banner .section-title{
    font-size:34px;
}

.breadcrumb-list{
    flex-wrap:wrap;
    gap:8px;
}

}
/*======================================
SERVICES GRID
======================================*/

.services-grid-section{
    position: relative;
    overflow: hidden;
    background: #fff;
}
	.projects-section {
    overflow: initial;
}
.services-grid-section::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(76,175,36,.05);
    left: -180px;
    top: -120px;
}

.services-grid-section::after{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(76,175,36,.05);
    right: -140px;
    bottom: -120px;
}

.services-grid-section .container{
    position: relative;
    z-index: 2;
}

/*======================================
CARD
======================================*/

.service-box{

    position: relative;

    background: #fff;

    padding: 40px 35px;

    border-radius: 24px;

    border: 1px solid #edf2ec;

    box-shadow: 0 10px 40px rgba(0,0,0,.06);

    transition: .4s;

    overflow: hidden;

    height: 100%;

}

.service-box::before{

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: #4CAF24;

    transform: scaleX(0);

    transition: .4s;

}

.service-box:hover{

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);

}

.service-box:hover::before{

    transform: scaleX(1);

}

/*======================================
ICON
======================================*/

.service-icon{

    width: 90px;

    height: 90px;

    background: #eef8eb;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    transition: .4s;

}

.service-box:hover .service-icon{

    background: #4CAF24;

    transform: rotate(-8deg);

}

.service-icon img{

    width: 48px;

    transition: .4s;

}

.service-box:hover .service-icon img{

    filter: brightness(0) invert(1);

}

/*======================================
TEXT
======================================*/

.service-box h4{

    font-size: 26px;

    margin-bottom: 15px;

    color: #222;

}

.service-box p{

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

/*======================================
LINK
======================================*/

.service-box a{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

    color: #4CAF24;

    text-decoration: none;

    transition: .3s;

}

.service-box a i{

    transition: .3s;

}

.service-box:hover a{

    color: #2e7d32;

}

.service-box:hover a i{

    transform: translateX(6px);

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.service-box{

padding:35px 28px;

}

.service-box h4{

font-size:22px;

}

}

@media(max-width:767px){

.service-box{

text-align:center;

}

.service-icon{

margin:auto auto 25px;

}

}

/*=========================================
 Garden Service Section
=========================================*/

.garden-service-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.garden-service-section img{
    width:100%;
    display:block;
}

.garden-service-section ul{
    margin:0;
    padding:0;
    list-style:none;
}

.garden-service-section a{
    text-decoration:none;
}


/*=========================================
 Sidebar
=========================================*/

.service-sidebar{
    display:flex;
    flex-direction:column;
    gap:35px;
}


/*=========================================
 Service Menu
=========================================*/

.service-menu{
    background:#fff;
    border-radius:28px;
    padding:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    border:1px solid #eef2ea;
}

.service-item{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-radius:18px;
    margin-bottom:15px;
    transition:.35s;
    color:#1c1c1c;
}

.service-item:last-child{
    margin-bottom:0;
}

.service-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.service-number{
    font-size:34px;
    font-weight:700;
    color:#57a639;
    min-width:48px;
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#eef7e8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:#57a639;
    transition:.35s;
}

.service-item span:last-child{
    font-size:20px;
    font-weight:600;
}

.service-item>i{
    font-size:18px;
    color:#444;
    transition:.35s;
}


/* Active */

.service-item.active{
    background:#4b980d;
    color:#fff;
    overflow:visible;
}

.service-item.active .service-number,
.service-item.active .service-icon,
.service-item.active>i{
    color:#fff;
}

.service-item.active .service-icon{
    background:rgba(255,255,255,.15);
}

.service-item.active::after{

    content:"";
    position:absolute;
    right:-18px;
    top:50%;
    transform:translateY(-50%);
    border-left:18px solid #4b980d;
    border-top:18px solid transparent;
    border-bottom:18px solid transparent;

}


/* Hover */

.service-item:hover{
    transform:translateX(8px);
    background:#4b980d;
    color:#fff;
}

.service-item:hover .service-number,
.service-item:hover .service-icon,
.service-item:hover>i{
    color:#fff;
}

.service-item:hover .service-icon{
    background:rgba(255,255,255,.15);
}


/*=========================================
 Call Card
=========================================*/

.call-card{

    position:relative;
    background:linear-gradient(180deg,#f8fff4,#eef8e5);
    border-radius:26px;
    padding:35px;
    min-height:220px;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.call-icon{

    width:72px;
    height:72px;
    border-radius:50%;
    background:#4b980d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    flex-shrink:0;

}

.call-card small{

    display:block;
    color:#777;
    font-size:15px;
    margin-bottom:6px;

}

.call-card h4{

    font-size:36px;
    margin:0;
    font-weight:700;
    color:#111;

}

.leaf-shape{

    position:absolute;
    right:20px;
    bottom:20px;
    font-size:90px;
    color:#9bcf87;
    opacity:.18;
    transform:rotate(-15deg);

}
/*=========================================
 Hero Content
=========================================*/

.tagline{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border:1px solid #8bc34a;
    border-radius:50px;
    color:#4b980d;
    background:#f8fff3;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.tagline i{
    font-size:15px;
}

.garden-service-section h2{
    font-size:68px;
    line-height:1.05;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.title-line{
    width:70px;
    height:5px;
    background:#4b980d;
    border-radius:20px;
    display:block;
    margin-bottom:30px;
}

.garden-service-section p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:0;
}


/*=========================================
 Hero Image
=========================================*/

.hero-image{
    position:relative;
    background:#f7fbf5;
    border-radius:40px;
    overflow:hidden;
    padding:30px;
    min-height:420px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:2px solid #dcefd3;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.hero-image img{
    width:100%;
    max-width:330px;
    object-fit:contain;
    transition:.45s;
}

.hero-image:hover img{
    transform:scale(1.05);
}

/* Decorative Leaf */

.hero-image::before{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:250px;
    height:250px;
    background:rgba(95,168,53,.08);
    border-radius:50%;
}

.hero-image::after{
    content:"";
    position:absolute;
    left:-70px;
    top:-70px;
    width:180px;
    height:180px;
    border:2px dashed rgba(76,152,13,.15);
    border-radius:50%;
}


/*=========================================
 Features
=========================================*/

.feature-row{
    margin-top:70px;
    margin-bottom:70px;
}

.feature-box{
    text-align:center;
    padding:20px;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:95px;
    height:95px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#eef8e8;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#4b980d;
    font-size:38px;
    transition:.35s;
}

.feature-box:hover .feature-icon{
    background:#4b980d;
    color:#fff;
    transform:rotate(8deg);
}

.feature-box h5{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    line-height:1.3;
}

.feature-box p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin:0;
}


/*=========================================
 Animation
=========================================*/

.hero-image,
.feature-box,
.service-item,
.call-card{
    transition:.35s ease;
}
/*=========================================
 Bottom Banner
=========================================*/

.bottom-banner{
    position:relative;
    background:linear-gradient(135deg,#4b980d 0%,#6dbd3d 100%);
    border-radius:35px;
    padding:45px;
    overflow:hidden;
    color:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.bottom-banner::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-150px;
    right:-120px;
}

.bottom-banner::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-90px;
    left:-70px;
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h3{
    color:#fff;
    font-size:42px;
    line-height:1.25;
    font-weight:700;
    margin:0;
}

.bottom-banner ul{
    position:relative;
    z-index:2;
    margin:0;
    padding:0;
    list-style:none;
}

.bottom-banner ul li{
    color:#fff;
    margin-bottom:16px;
    font-size:17px;
    display:flex;
    align-items:center;
}

.bottom-banner ul li:last-child{
    margin-bottom:0;
}

.bottom-banner ul li i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:15px;
    font-size:14px;
}


/*=========================================
 Banner Image
=========================================*/

.banner-image{
    position:relative;
    z-index:2;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.banner-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.banner-image:hover img{
    transform:scale(1.08);
}


/*=========================================
 Hover Effects
=========================================*/

.bottom-banner:hover{
    transform:translateY(-6px);
    transition:.35s;
}

.call-card:hover{
    transform:translateY(-8px);
}

.hero-image:hover{
    transform:translateY(-8px);
}


/*=========================================
 Responsive
=========================================*/

@media(max-width:1199px){

.garden-service-section h2{
    font-size:54px;
}

.banner-content h3{
    font-size:34px;
}

.feature-icon{
    width:80px;
    height:80px;
    font-size:30px;
}

}

@media(max-width:991px){

.service-sidebar{
    margin-bottom:50px;
}

.hero-image{
    margin-top:40px;
}

.feature-row{
    margin-top:50px;
    margin-bottom:50px;
}

.feature-box{
    margin-bottom:30px;
}

.bottom-banner{
    padding:35px;
}

.banner-image{
    margin-top:35px;
}

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

}

@media(max-width:767px){

.garden-service-section{
    padding:70px 0;
}

.garden-service-section h2{
    font-size:40px;
}

.service-item{
    padding:15px;
}

.service-number{
    font-size:24px;
    min-width:30px;
}

.service-icon{
    width:50px;
    height:50px;
    font-size:20px;
}

.service-item span:last-child{
    font-size:16px;
}

.call-card{
    padding:25px;
    flex-direction:column;
    text-align:center;
}

.call-card h4{
    font-size:28px;
}

.hero-image{
    min-height:320px;
    padding:20px;
}

.hero-image img{
    max-width:240px;
}

.feature-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.feature-box h5{
    font-size:20px;
}

.banner-content h3{
    font-size:28px;
}

.bottom-banner{
    padding:25px;
}

.banner-image img{
    height:200px;
}

.bottom-banner ul li{
    font-size:15px;
}

}

@media(max-width:575px){

.garden-service-section h2{
    font-size:34px;
}

.tagline{
    font-size:13px;
    padding:8px 18px;
}

.garden-service-section p{
    font-size:16px;
}

.call-card h4{
    font-size:24px;
}

.banner-content h3{
    font-size:24px;
}

.bottom-banner ul li{
    align-items:flex-start;
}

.bottom-banner ul li i{
    width:30px;
    height:30px;
    font-size:12px;
    margin-right:10px;
}

}

.spiffy-gdn-section{padding: 60px 0;background:#fff;overflow:hidden}
.spiffy-gdn-section img{width:100%;display:block}
.spiffy-gdn-sidebar{display:flex;flex-direction:column;gap:30px}

/* Menu */
.spiffy-gdn-menu{background:#fff;padding:20px;border-radius: 12px;box-shadow:0 15px 40px rgba(0,0,0,.08);border: 1px solid #cccccc75;}
.spiffy-gdn-menu-item{display:flex;justify-content:space-between;align-items:center;padding: 13px 20px;border-radius: 5px;color:#222;text-decoration:none;transition:.3s;margin-bottom:12px}
.spiffy-gdn-menu-item:last-child{margin-bottom:0}
.spiffy-gdn-menu-left{display:flex;align-items:center;gap:15px}
.spiffy-gdn-menu-icon{width: 45px;height: 45px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#eef8e8;color:#4b980d;font-size:22px;transition:.3s}
.spiffy-gdn-menu-item span{font-size: 16px;font-weight:600}
.spiffy-gdn-menu-item>i{transition:.3s}
.spiffy-gdn-menu-item.active,
.spiffy-gdn-menu-item:hover{background:#4b980d;color:#fff}
.spiffy-gdn-menu-item.active .spiffy-gdn-menu-icon,
.spiffy-gdn-menu-item:hover .spiffy-gdn-menu-icon{background:rgba(255,255,255,.15);color:#fff}
.spiffy-gdn-menu-item.active>i,
.spiffy-gdn-menu-item:hover>i{color:#fff}

/* Call Card */
.spiffy-gdn-call-card{position:relative;padding: 30px 15px;border-radius: 12px;background: #5fac2a;display:flex;align-items:center;gap:18px;box-shadow:0 15px 35px rgba(0,0,0,.06)}
.spiffy-gdn-call-icon{width:70px;height:70px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#4b980d;color:#fff;font-size:24px}
.spiffy-gdn-call-card small{display:block;color: #ffffff;}
.spiffy-gdn-call-card h4{margin:5px 0 0;font-size:30px;font-weight:700;color: #fff;}
.spiffy-gdn-leaf-shape{position:absolute;right:20px;bottom:15px;font-size:80px;color:#4b980d;opacity:.08}

/* Content */
.spiffy-gdn-tagline{display:inline-flex;align-items:center;gap:8px;padding: 6px 18px;border-radius:40px;background:#f8fff4;color:#4b980d;font-weight:600;margin-bottom:18px;border: 1px solid #cccccc75;}
.spiffy-gdn-title{font-size: 38px;font-weight: 700;line-height:1.1;margin-bottom:15px;color:#111}
.spiffy-gdn-title-line{display:block;width:70px;height:4px;background:#4b980d;border-radius:10px;margin-bottom:25px}
.spiffy-gdn-section p{color:#666;line-height:1.8;font-size: 14px;margin: 0px;}

/* Hero */
.spiffy-gdn-hero-image{background:#f8fbf6;border-radius:32px;display:flex;align-items: center;justify-content: flex-start;border:1px solid #e7f1e1}
.spiffy-gdn-hero-image img{max-width: 100%;border-radius: 12px;}

/* Features */
.spiffy-gdn-feature-row{margin: 12px 0;}
.spiffy-gdn-feature-box{text-align:center;padding: 10px;border: 1px solid #cccccc9c;border-radius: 5px;}
.spiffy-gdn-feature-icon{width: 65px;height: 65px;margin: auto auto 12px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#eef8e8;color:#4b980d;font-size: 24px;transition:.3s}
.spiffy-gdn-feature-box:hover .spiffy-gdn-feature-icon{background:#4b980d;color:#fff}
.spiffy-gdn-feature-box h5{font-size: 17px;margin-bottom:12px;font-weight: 500;}

/* Banner */
.spiffy-gdn-bottom-banner{padding: 20px;border-radius: 14px;background:linear-gradient(135deg,#4b980d,#70bd43);color:#fff}
.spiffy-gdn-bottom-banner ul{margin:0;padding:0;list-style:none}
.spiffy-gdn-bottom-banner li{display:flex;align-items:center;margin-bottom:16px;color: #fff;}
.spiffy-gdn-bottom-banner li:last-child{margin-bottom:0}
.spiffy-gdn-bottom-banner li i{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;margin-right:12px}
.spiffy-gdn-banner-image{overflow:hidden;border-radius:20px}
.spiffy-gdn-banner-image img{height:230px;object-fit:cover}

.spiffy-gdn-extra-content{margin: 30px 0 12px;}
.spiffy-gdn-extra-content h4{font-size: 26px;margin-bottom:15px;}
.spiffy-gdn-extra-content-body{color:#666;line-height:1.8;}
.spiffy-gdn-extra-content-body p{color:#666;line-height:1.8;margin-bottom:15px;}
.spiffy-gdn-extra-content-body p:last-child{margin-bottom:0}

.spiffy-gdn-faq-content{max-width:820px;margin:0 auto;margin-top:40px;}

/* Responsive */
@media(max-width:991px){
.spiffy-gdn-sidebar{margin-bottom:40px}
.spiffy-gdn-hero-image{margin-top:30px}
.spiffy-gdn-feature-box{margin-bottom:25px}
}
@media(max-width:767px){
.spiffy-gdn-title{font-size:40px}
.spiffy-gdn-bottom-banner{padding:25px}
.spiffy-gdn-call-card{flex-direction:column;text-align:center}
}

.about-gallery-section{
    padding: 70px 0;
    position:relative;
    overflow:hidden;
    background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.about-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:0;
    height:100%;
}

.about-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.about-gallery-item:hover img{
    transform:scale(1.06);
}

/* Top Images */

.about-gallery-top{
    height: 300px;
}

/* Bottom Left */

.about-gallery-large{
    height: 250px;
}

/* Right Images */

.about-gallery-small{
    height: 250px;
}

/* Remove Bootstrap Padding */

.about-gallery-section .row{
    --bs-gutter-x:30px;
    --bs-gutter-y:30px;
}

/* Responsive */

@media(max-width:1399px){

.about-gallery-top{
    height:500px;
}

.about-gallery-large{
    height:650px;
}

.about-gallery-small{
    height:310px;
}

}

@media(max-width:1199px){

.about-gallery-top{
    height:420px;
}

.about-gallery-large{
    height:560px;
}

.about-gallery-small{
    height:265px;
}

}

@media(max-width:991px){

.about-gallery-section{
    padding:80px 0;
}

.about-gallery-top,
.about-gallery-large,
.about-gallery-small{
    height:420px;
}

}

@media(max-width:767px){

.about-gallery-section{
    padding:60px 0;
}

.about-gallery-top,
.about-gallery-large,
.about-gallery-small{
    height:320px;
}

.about-gallery-section .row{
    --bs-gutter-x:20px;
    --bs-gutter-y:20px;
}

}

@media(max-width:575px){

.about-gallery-top,
.about-gallery-large,
.about-gallery-small{
    height:260px;
}

}
/* Spiffy About Section */
.spiffy-about-section{padding: 70px 0;background:#fff;overflow:hidden}
.spiffy-about-image-wrap{position:relative;padding-right:60px}
.spiffy-about-image{overflow:hidden;border-radius:30px;box-shadow:0 25px 60px rgba(0,0,0,.12)}
.spiffy-about-image img{width:100%;height:680px;object-fit:cover;display:block}
.spiffy-about-card{position:absolute;right:0;bottom:40px;width:280px;background:#4CAF24;color:#fff;padding:30px;border-radius:24px;box-shadow:0 20px 45px rgba(0,0,0,.18)}
.spiffy-about-card-icon{width:65px;height:65px;border-radius:50%;background:#fff;color:#4CAF24;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px}
.spiffy-about-card h4{margin:0 0 10px;font-size:26px;font-weight:700;color: #fff;}
.spiffy-about-card span{display:block;width:55px;height:3px;background:#fff;margin-bottom:18px}
.spiffy-about-card p{margin:0;line-height:1.8;color:#f5f5f5}
.spiffy-about-tag{display:inline-flex;gap:10px;align-items:center;color:#4CAF24;font-weight:700;font-size:14px}
.spiffy-about-content h2{font-size: 36px;font-weight:800;margin: 10px 0 15px;color: var(--heading-color);}
.spiffy-about-content h2 span{}
.spiffy-about-line{width:70px;height:4px;background:#4CAF24;border-radius:10px;margin-bottom:25px}
.spiffy-about-desc{font-size:17px;line-height:1.9;color:#666;margin-bottom:35px}
.spiffy-about-title{display:flex;align-items:center;gap:12px;margin-bottom:15px}
.spiffy-about-title i{color:#4CAF24}
.spiffy-about-title h3{margin:0;font-size:28px}
.mission-intro{margin-bottom:25px;color:#555}
.spiffy-about-item{display:flex;gap:20px;padding:18px 0;border-bottom:1px solid #ececec}
.spiffy-about-item:last-child{border:none}
.spiffy-about-item .number{width:58px;height:58px;border-radius:50%;background:#eef8e8;color:#4CAF24;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.spiffy-about-item .text h5{margin:0 0 8px;font-size:21px}
.spiffy-about-item .text p{margin:0;color:#666;line-height:1.8}
.spiffy-about-feature{display:flex;align-items:center;gap:18px;background:#fff;border:1px solid #edf0ed;border-radius:20px;padding:25px;box-shadow:0 10px 35px rgba(0,0,0,.05)}
.spiffy-about-feature i{width:70px;height:70px;border-radius:18px;background:#4CAF24;color:#fff;display:flex;align-items:center;justify-content:center;font-size:28px}
.spiffy-about-feature h5{margin:0 0 8px;font-size: 18px;}
.spiffy-about-feature p{margin:0;color:#666}
@media(max-width:991px){.spiffy-about-section{padding:70px 0}.spiffy-about-image-wrap{padding-right:0;padding-bottom:80px}.spiffy-about-card{right:20px;bottom:0;width:250px}.spiffy-about-image img{height:520px}.spiffy-about-content h2{font-size:42px}}
@media(max-width:767px){.spiffy-about-image img{height:380px}.spiffy-about-card{position:relative;right:auto;bottom:auto;width:100%;margin-top:20px}.spiffy-about-content h2{font-size:34px}.spiffy-about-feature{flex-direction:column;text-align:center}}
/*=====================================
 Spiffy Stats Section
=====================================*/

.spiffy-stats-section{
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.spiffy-stats-wrapper{
    background:#fff;
    border-radius: 12px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.spiffy-stats-item{
    position:relative;
    text-align:center;
    padding: 40px 0px;
    height:100%;
    transition:.4s;
    border-right: 1px solid #cccccc99;
}

.spiffy-stats-item:hover{
}

.spiffy-stats-item::after{
    content:"";
    position:absolute;
    right:0;
    top:60px;
    width:1px;
    height:calc(100% - 120px);
    background:#e8e8e8;
}

.spiffy-stats-item:last-child::after{
    display:none;
}



section.spiffy-stats-section .col-lg-4:last-child .spiffy-stats-item {
    border: transparent;
}
.spiffy-stats-item:last-child::before{
    right:40px;
}

/* Bottom Dot */

.spiffy-stats-item span{
    position:absolute;
    bottom:-7px;
    left:50%;
    transform:translateX(-50%);
    width:14px;
    height:14px;
    background:#4CAF24;
    border-radius:50%;
}

/* Icon */

.spiffy-stats-icon{
    width: 70px;
    height: 70px;
    margin:auto;
    margin-bottom:30px;
    border-radius:50%;
    background:#eef8e8;
    border:2px solid #d9efd0;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.spiffy-stats-icon i{
    font-size: 30px;
    color:#4CAF24;
}

.spiffy-stats-item:hover .spiffy-stats-icon{
    background:#4CAF24;
    transform:rotate(8deg);
}

.spiffy-stats-item:hover .spiffy-stats-icon i{
    color:#fff;
}

/* Number */

.spiffy-stats-item h2{
    font-size: 36px;
    line-height:1;
    font-weight:800;
    color:#228B22;
    margin-bottom:12px;
}

/* Title */

.spiffy-stats-item h4{
    font-size: 20px;
    font-weight: 600;
    color:#111;
    margin-bottom: 10px;
}

/* Text */

.spiffy-stats-item p{
    font-size: 16px;
    line-height: 26px;
    color:#666;
    max-width: 345px;
    margin: 0 auto;
}

/* Responsive */

@media(max-width:1199px){

.spiffy-stats-item{
    padding:50px 30px;
}

.spiffy-stats-item h2{
    font-size:62px;
}

.spiffy-stats-item h4{
    font-size:28px;
}

}

@media(max-width:991px){

.spiffy-stats-item::after{
    display:none;
}

.spiffy-stats-item{
    border-bottom:1px solid #eee;
}

.spiffy-stats-item:last-child{
    border-bottom:none;
}

}

@media(max-width:767px){

.spiffy-stats-section{
    padding:70px 0;
}

.spiffy-stats-item{
    padding:40px 25px;
}

.spiffy-stats-icon{
    width:85px;
    height:85px;
}

.spiffy-stats-icon i{
    font-size:32px;
}

.spiffy-stats-item h2{
    font-size:50px;
}

.spiffy-stats-item h4{
    font-size:24px;
}

.spiffy-stats-item p{
    font-size:15px;
}

.spiffy-stats-item::before{
    left:40px;
    right:40px;
}

}

.spiffy-choose-section{padding: 70px 0;background:#f7faf7}
.spiffy-choose-wrapper{background:#fff;border-radius:34px;box-shadow:0 25px 70px rgba(0,0,0,.08);padding:60px;position:relative;overflow:hidden}
.spiffy-choose-wrapper:before{content:"";position:absolute;left:0;top:0;width:100%;height:6px;background:#4CAF24}
.spiffy-choose-wrapper:after{content:"";position:absolute;right:-120px;bottom:-120px;width:420px;height:420px;background:#4CAF24;border-radius:50%;z-index: -1;}
.spiffy-choose-content,.spiffy-gallery{position:relative;z-index: 10;}
.spiffy-choose-tag{display:inline-flex;align-items:center;gap:10px;color:#2f9a28;font-weight:700;letter-spacing:.08em}
.spiffy-choose-tag i{font-size:10px}
.spiffy-choose-content h2{font-size: 36px;line-height:1.05;font-weight:800;color:#0c2340;margin:20px 0}
.spiffy-choose-content h2 span{color:#2f9a28}
.spiffy-choose-line{width:70px;height:4px;background:#4CAF24;border-radius:4px;margin:0 0 25px}
.spiffy-choose-content p{font-size: 16px;line-height:1.9;color:#555;margin-bottom:18px}
.spiffy-feature-card{background:#fff;border:1px solid #edf1ed;border-radius:18px;padding:20px 15px;text-align:center;height:100%;box-shadow:0 10px 25px rgba(0,0,0,.05);transition:.35s}
.spiffy-feature-card:hover{transform:translateY(-6px)}
.spiffy-feature-card i{width:60px;height:60px;border-radius:16px;background:#eef8e8;color:#4CAF24;display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 12px}
.spiffy-feature-card h6{margin:0;font-size:16px;font-weight:700}
.spiffy-gallery{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.spiffy-gallery-left{display:grid;gap:20px}
.spiffy-gallery-right{display:grid}
.spiffy-img-card{position:relative;border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 20px 45px rgba(0,0,0,.12)}
.spiffy-img-card img{width:100%;height:300px;object-fit:cover;display:block;transition:.4s}
.spiffy-img-card.tall img{height:620px}
.spiffy-img-card:hover img{transform:scale(1.06)}
.spiffy-img-info{position:absolute;left:18px;right:18px;bottom:18px;background:#fff;border-radius:18px;padding:14px;display:flex;align-items:center;gap:14px;box-shadow:0 10px 30px rgba(0,0,0,.12)}
.spiffy-img-info i{width:52px;height:52px;background:#4CAF24;color:#fff;border-radius:14px;display:flex;align-items:center;justify-content:center}
.spiffy-img-info h5{margin:0;font-size:18px}
.spiffy-img-info p{margin:4px 0 0;font-size:14px;color:#666}
@media(max-width:991px){
.spiffy-choose-wrapper{padding:35px}
.spiffy-choose-content h2{font-size:46px}
.spiffy-gallery{grid-template-columns:1fr;margin-top:40px}
.spiffy-img-card.tall img,.spiffy-img-card img{height:320px}
.spiffy-choose-wrapper:after{display:none}
}
@media(max-width:767px){
.spiffy-choose-section{padding:70px 0}
.spiffy-choose-wrapper{padding:25px}
.spiffy-choose-content h2{font-size:36px}
.spiffy-choose-content p{font-size:16px}
}
.spiffy-simple-cta{
    padding: 70px 0;
}

.spiffy-simple-cta-box{
    background: #4caf24;
    border-radius:30px;
    padding: 29px;
    position:relative;
    overflow:hidden;
}

.spiffy-simple-cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background: rgb(187 240 165 / 13%);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.spiffy-simple-tag{
    display:inline-block;
    background: rgb(255 255 255);
    color:#7bd957;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.spiffy-simple-cta h2{
    color:#fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
    margin-bottom:20px;
}

.spiffy-simple-cta h2 span{
    color: #ffffff;
}

.spiffy-simple-cta p{
    color: #ffffff;
    font-size: 16px;
    line-height:1.8;
    max-width:700px;
    margin:0;
}

.spiffy-simple-action{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:20px;
}

.spiffy-phone{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    text-decoration:none;
}

.spiffy-phone i{
    width:60px;
    height:60px;
    border-radius:50%;
    background: #ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color: #4caf24;
}

.spiffy-phone small{
    display:block;
    color: #ffffff;
    font-size:14px;
}

.spiffy-phone strong{
    font-size:26px;
    color:#fff;
}

.spiffy-simple-action .btn-style1{
    min-width:230px;
    text-align:center;
}

@media(max-width:991px){

.spiffy-simple-cta-box{
    padding:50px 35px;
}

.spiffy-simple-action{
    align-items:flex-start;
    margin-top:40px;
}

.spiffy-simple-cta h2{
    font-size:40px;
}

}

@media(max-width:767px){

.spiffy-simple-cta{
    padding:70px 0;
}

.spiffy-simple-cta-box{
    padding:35px 25px;
}

.spiffy-simple-cta h2{
    font-size:30px;
}

.spiffy-simple-cta p{
    font-size:16px;
}

.spiffy-phone strong{
    font-size:20px;
}

.spiffy-simple-action .btn-style1{
    width:100%;
}

}
.spiffy-contact-section {
  padding: 70px 0;
  background: #fff
}

.spiffy-contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4CAF24;
  font-weight: 700;
  font-size: 14px
}

.spiffy-contact-tag i {
  font-size: 8px
}

.spiffy-contact-left h2,
.spiffy-contact-form-wrap h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0b1f35;
  margin: 12px 0
}

.spiffy-contact-line {
  width: 70px;
  height: 4px;
  background: #4CAF24;
  border-radius: 4px;
  margin: 0 0 35px
}

.spiffy-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08)
}

.spiffy-contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: #4CAF24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0
}

.spiffy-contact-content {
  flex: 1
}

.spiffy-contact-content h5 {
  margin: 0px 0 6px;
  font-size: 18px;
}

.spiffy-contact-content p {
  margin: 0;
  color: #666;
  line-height: 24px;
}

.spiffy-contact-image {
  width: 150px;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0
}

.spiffy-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.spiffy-contact-form-wrap {
  padding-left: 35px;
  border-left: 1px solid #ececec
}

.spiffy-contact-form-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px
}

.spiffy-contact-form-wrap .form-control,
.spiffy-contact-form-wrap .form-select {
  height: 56px;
  border: 1px solid #dfe8dc;
  border-radius: 6px;
  box-shadow: none
}

.spiffy-contact-form-wrap textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px
}

.spiffy-contact-form-wrap .btn-style1 {
  padding: 16px 34px
}

@media(max-width:991px) {
  .spiffy-contact-form-wrap {
    padding-left: 0;
    border-left: none;
    margin-top: 30px
  }

  .spiffy-contact-left h2,
  .spiffy-contact-form-wrap h2 {
    font-size: 38px
  }
}

@media(max-width:767px) {
  .spiffy-contact-section {
    padding: 70px 0
  }

  .spiffy-contact-card {
    flex-direction: column;
    align-items: flex-start
  }

  .spiffy-contact-image {
    width: 100%;
    height: 180px
  }

  .spiffy-contact-left h2,
  .spiffy-contact-form-wrap h2 {
    font-size: 30px
  }
}
.spiffy-contact-form-wrap button.btn1 {
    border: transparent;
}
section.spiffy-map-section {
    padding-bottom: 50px;
}

section.spiffy-map-section .spiffy-map-wrapper iframe {
    display: block;
}
/*=========================================
BLOG LIST
=========================================*/

.blog-list{
    position: relative;
    background: #fff;
}

.blog-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #edf2ec;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    transition: all .4s ease;
    height: 100%;
}

.blog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,.12);
}

.blog-image{
    display: block;
    overflow: hidden;
}

.blog-image img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-image img{
    transform: scale(1.08);
}

/*=========================================
CONTENT
=========================================*/

.blog-content{
    padding: 15px;
}

.blog-meta{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px;
    gap: 15px;
}

.blog-category{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: #4CAF24;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-date{
    color: #7a7a7a;
    font-size: 14px;
}

.blog-date i{
    color: #4CAF24;
    margin-right: 6px;
}

/*=========================================
TITLE
=========================================*/

.blog-content h3{
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
}

.blog-content h3 a{
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.blog-content h3 a:hover{
    color: #4CAF24;
}

.blog-content p{
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/*=========================================
READ MORE
=========================================*/

.read-more{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4CAF24;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.read-more i{
    transition: .3s;
}

.read-more:hover{
    color: #222;
}

.read-more:hover i{
    transform: translateX(6px);
}

/*=========================================
PAGINATION
=========================================*/

.blog-pagination{
    margin-top: 60px;
}

.blog-pagination .pagination{
    gap: 10px;
}

.blog-pagination .page-link{
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 600;
    background: #fff;
    transition: .3s;
}

.blog-pagination .page-link:hover{
    background: #4CAF24;
    border-color: #4CAF24;
    color: #fff;
}

.blog-pagination .page-item.active .page-link{
    background: #4CAF24;
    border-color: #4CAF24;
    color: #fff;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.blog-image img{
    height:220px;
}

.blog-content{
    padding:20px;
}

.blog-content h3{
    font-size:21px;
}

}

@media(max-width:767px){

.blog-image img{
    height: auto;
}

.blog-meta{
    flex-wrap:wrap;
}

.blog-content h3{
    font-size:20px;
}

.blog-content p{
    font-size:15px;
}

.blog-pagination .page-link{
    width:42px;
    height:42px;
}

}


/*=========================================
BLOG DETAILS
=========================================*/

.blog-details{
    background:#f8faf8;
}

.blog-single{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    padding: 20px;
}

/*=========================================
BLOG IMAGE
=========================================*/

.blog-thumb{
    overflow:hidden;
}

.blog-thumb img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    border-radius: 10px;
}

/*=========================================
BLOG CONTENT
=========================================*/

.blog-single>*:not(.blog-thumb){
    /* padding-left:45px; */
    /* padding-right:45px; */
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    align-items:center;
    margin: 15px 0 15px;
}

.blog-category{
    background:#4CAF24;
    color:#fff;
    padding:6px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.blog-meta span{
    color:#777;
    font-size:14px;
}

.blog-meta i{
    color:#4CAF24;
    margin-right:6px;
}

.blog-title{
    font-size:42px;
    line-height:1.25;
    margin-bottom:25px;
    color:#222;
}

.blog-single h2{
    font-size: 26px;
    margin: 20px 0 20px;
    font-weight: 600;
}

.blog-single p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom: 15px;
}

/*=========================================
BLOCKQUOTE
=========================================*/

.blog-single blockquote{

position:relative;

background:#f4fbf2;

border-left:5px solid #4CAF24;

padding: 20px;

margin: 40px 40px;

border-radius:18px;
}

.blog-single blockquote i{

    font-size:42px;

    color:#4CAF24;

    margin-bottom:20px;

}

.blog-single blockquote p{

    font-size:22px;

    line-height:1.7;

    color:#222;

    font-weight:500;

    margin:0;

}

/*=========================================
LIST
=========================================*/

.blog-list{margin: 20px 0;/* padding-left: 64px !important; */}

.blog-list li{

margin-bottom:14px;

color:#555;

font-size:17px;

list-style: circle;
}

/*=========================================
GALLERY
=========================================*/

.blog-gallery{

margin: 10px 0;
}

.blog-gallery img{

    width:100%;

    border-radius:18px;

    height:260px;

    object-fit:cover;

}

/*=========================================
BOTTOM
=========================================*/

.blog-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:25px;padding: 28px 0px;border-top:1px solid #eee;margin-top: 21px;}

.blog-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.blog-tags a{

text-decoration:none;

background:#f4f4f4;

padding: 4px 18px;

border-radius:50px;

color:#444;

transition:.3s;
}

.blog-tags a:hover{

    background:#4CAF24;

    color:#fff;

}

.blog-share{

    display:flex;

    align-items:center;

    gap:10px;

}

.blog-share span{

    font-weight:600;

}

.blog-share a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#f4f4f4;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#444;

    transition:.3s;

}

.blog-share a:hover{

    background:#4CAF24;

    color:#fff;

}

/*=========================================
AUTHOR
=========================================*/

.author-box{margin: 0 0px 0px;padding: 20px;background: #e8efe8;border-radius:20px;display:flex;gap:25px;align-items: flex-start;}

.author-box img{width: 100px;height: 100px;border-radius:50%;object-fit:cover;margin-top: 10px;}

.author-box span{

    color:#4CAF24;

    font-size:14px;

    font-weight:600;

}

.author-box h4{

    margin:10px 0;

    font-size:26px;

}

.author-box p{

    margin:0;

}

/*=========================================
COMMENT FORM
=========================================*/

.comment-form{

    padding:0 45px 45px;

}

.comment-form h3{

font-size: 26px;

margin-bottom:30px;
}

.comment-form .form-control{

border-radius: 6px;

border:1px solid #ddd;

padding: 12px 20px;

margin-bottom:20px;

min-height: 50px;

box-shadow:none;
}

.comment-form textarea{

    min-height:180px;

    resize:none;

}

/*=========================================
SIDEBAR
=========================================*/

.blog-sidebar{

position:sticky;

top: 20px;
}

.sidebar-widget{

background:#fff;

border-radius: 10px;

padding: 20px;

margin-bottom:30px;

box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.sidebar-widget h4{

    margin-bottom:25px;

    font-size:24px;

}

/*=========================================
SEARCH
=========================================*/

.search-box{

    position:relative;

}

.search-box input{

width:100%;

height: 52px;

border:1px solid #ddd;

border-radius: 8px;

padding:0 55px 0 20px;

outline:none;
}

.search-box button{

    position:absolute;

    right:6px;

    top:6px;

    width:46px;

    height:46px;

    border:none;

    border-radius:10px;

    background:#4CAF24;

    color:#fff;

}

/*=========================================
RECENT POSTS
=========================================*/

.recent-posts{

    list-style:none;

    margin:0;

    padding:0;

}

.recent-posts li{

    display:flex;

    gap:15px;

    margin-bottom:20px;

    align-items:center;

}

.recent-posts li:last-child{

    margin-bottom:0;

}

.recent-posts img{

    width:90px;

    height:80px;

    border-radius:12px;

    object-fit:cover;

}

.recent-posts a{display:block;text-decoration:none;color:#222;font-weight: 500;margin-bottom:8px;transition:.3s;line-height: 22px;}

.recent-posts a:hover{

    color:#4CAF24;

}

.recent-posts span{

    color:#888;

    font-size:13px;

}

/*=========================================
CATEGORY
=========================================*/

.category-list{

    list-style:none;

    margin:0;

    padding:0;

}

.category-list li{

    border-bottom:1px solid #eee;

}

.category-list li:last-child{

    border:none;

}

.category-list a{

display:flex;

justify-content:space-between;

align-items:center;

padding: 14px 0;

text-decoration:none;

color:#444;

transition:.3s;
}

.category-list a:hover{

    color:#4CAF24;

    padding-left:8px;

}

.category-list span{

    width:34px;

    height:34px;

    background:#f4f4f4;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.blog-single>*:not(.blog-thumb),
.blog-bottom,
.author-box,
.comment-form{

padding-left:25px;
padding-right:25px;

}

.blog-title{

font-size:34px;

}

.blog-thumb img{height: auto;}

.blog-sidebar{

margin-top:40px;
position:static;

}

}

@media(max-width:767px){

.blog-title{

font-size:28px;

}

.blog-single h2{

font-size:24px;

}

.blog-bottom{

flex-direction:column;
align-items:flex-start;

}

.author-box{

flex-direction:column;
text-align:center;

}

.blog-thumb img{

height:260px;

}

.blog-single blockquote{

padding:25px;

}

.blog-single blockquote p{

font-size:18px;

}

}
.blog-category {
    color: #fff !important;
}


.comment-form button.btn1 {
    border: transparent;
}
.blog-pagination ul li {
    list-style: none;
}
.spiffy-gdn-feature-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    margin: 40px 0px;
}

.spiffy-gdn-feature-row > div {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.spiffy-gdn-feature-box {
    height: 100%;
}

/* Tablet */
@media (max-width: 991px) {
    .spiffy-gdn-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 575px) {
    .spiffy-gdn-feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.about-gallery-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(96.42deg, #E8F5D3 27.79%, #F6F8F3 105.33%);
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-service-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

.about-service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.about-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-service-card:hover .about-service-image img {
    transform: scale(1.05);
}

.about-service-card h4 {
    margin: 0;
    padding: 10px 10px;
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #0d2d5c;
}


/* Tablet */
@media (max-width: 991px) {

    .about-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-service-image {
        height: 240px;
    }
}


/* Mobile */
@media (max-width: 575px) {

    .about-gallery-section {
        padding: 50px 0;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-service-image {
        height: 230px;
    }

    .about-service-card h4 {
        padding: 18px 12px;
        font-size: 18px;
    }
}
/* =========================================
   FAQ SECTION
========================================= */

.spiffy-faq-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.spiffy-faq-grid {
    display: grid;

    /* IMPORTANT: % use nahi karna */
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;
    gap: 60px;

    width: 100%;
}


/* =========================
   LEFT IMAGE
========================= */

.spiffy-faq-image {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.spiffy-faq-image img {
    display: block;

    width: 100%;
    max-width: 520px;
    height: auto;
}


/* =========================
   RIGHT FAQ
========================= */

.spiffy-faq-content {
    width: 100%;
    min-width: 0; /* VERY IMPORTANT */

    overflow: hidden;
}


.spiffy-faq-item {
    width: 100%;

    margin-bottom: 12px;

    border: 1px solid #ddd;

    background: #fff;

    transition: border-color .25s ease;
}

.spiffy-faq-item:last-child {
    margin-bottom: 0;
}

.spiffy-faq-item.active {
    border-color: #4CAF24;
}


/* =========================
   QUESTION
========================= */

.spiffy-faq-question {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border: 0;
    background: transparent;
    color: #111;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}


/* Text ko overflow nahi hone dega */

.spiffy-faq-question > span:first-child {
    flex: 1;
    min-width: 0;
}


/* =========================
   PLUS / MINUS RIGHT
========================= */

.spiffy-faq-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f4f4;

    color: #4CAF24;

    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}


/* Font Awesome ki zarurat nahi */

.spiffy-faq-icon::before {
    content: "+";
}

.spiffy-faq-item.active .spiffy-faq-icon {
    background: #4CAF24;
    color: #fff;
}

.spiffy-faq-item.active .spiffy-faq-icon::before {
    content: "-";
}


/* Agar HTML me i icon pada hai to hide */

.spiffy-faq-icon i {
    display: none !important;
}


/* =========================
   ANSWER
========================= */

.spiffy-faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows .35s ease,
        opacity .3s ease;
}

.spiffy-faq-answer-inner {
    min-height: 0;
    overflow: hidden;

    padding: 0 18px;

    color: #666;

    font-size: 14px;
    line-height: 1.7;

    transition: padding .35s ease;
}


.spiffy-faq-item.active .spiffy-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.spiffy-faq-item.active .spiffy-faq-answer-inner {
    padding-bottom: 18px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .spiffy-faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .spiffy-faq-image img {
        max-width: 430px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .spiffy-faq-section {
        padding: 55px 0;
    }

    .spiffy-faq-grid {
        gap: 30px;
    }

    .spiffy-faq-image img {
        max-width: 310px;
    }

    .spiffy-faq-question {
        min-height: 55px;

        gap: 12px;

        padding: 14px 15px;

        font-size: 14px;
    }

    .spiffy-faq-icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        font-size: 18px;
    }

    .spiffy-faq-answer-inner {
        padding-left: 15px;
        padding-right: 15px;

        font-size: 13px;
    }

}

.spiffy-thankyou-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(76, 175, 36, 0.08), transparent 35%),
        #f7f9f6;
}

.spiffy-thankyou-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8eee5;
}

.spiffy-thankyou-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #4CAF24;
    color: #fff;

    font-size: 34px;

    box-shadow: 0 10px 30px rgba(76, 175, 36, 0.25);
}

.spiffy-thankyou-subtitle {
    display: block;
    margin-bottom: 10px;

    color: #4CAF24;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.spiffy-thankyou-box h1 {
    margin: 0 0 18px;
    color: #222;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
}

.spiffy-thankyou-text {
    max-width: 700px;
    margin: 0 auto 38px;

    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.spiffy-thankyou-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    margin-bottom: 38px;
}

.spiffy-thankyou-info-item {
    padding: 24px 18px;

    border: 1px solid #e8e8e8;
    border-radius: 16px;

    background: #fff;

    transition: all 0.3s ease;
}

.spiffy-thankyou-info-item:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 175, 36, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.spiffy-thankyou-info-item > i {
    width: 46px;
    height: 46px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef8ea;
    color: #4CAF24;

    font-size: 18px;
}

.spiffy-thankyou-info-item strong {
    display: block;

    margin-bottom: 6px;

    color: #222;

    font-size: 15px;
    font-weight: 700;
}

.spiffy-thankyou-info-item span {
    display: block;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}

.spiffy-thankyou-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.spiffy-thankyou-btn {
    min-width: 180px;
    min-height: 50px;

    padding: 13px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 8px;

    background: #4CAF24;
    border: 1px solid #4CAF24;

    color: #fff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.spiffy-thankyou-btn:hover {
    background: #2E7D0E;
    border-color: #2E7D0E;
    transform: translateY(-2px);
}

.spiffy-thankyou-btn-outline {
    background: transparent;
    color: #2E7D0E !important;
}

.spiffy-thankyou-btn-outline:hover {
    background: #2E7D0E;
    color: #fff !important;
}


/* Tablet */
@media (max-width: 991px) {

    .spiffy-thankyou-section {
        padding: 70px 0;
    }

    .spiffy-thankyou-box {
        padding: 45px 30px;
    }

    .spiffy-thankyou-box h1 {
        font-size: 38px;
    }

    .spiffy-thankyou-info {
        grid-template-columns: 1fr;
    }
}


/* Mobile */
@media (max-width: 575px) {

    .spiffy-thankyou-section {
        padding: 50px 0;
    }

    .spiffy-thankyou-box {
        padding: 35px 18px;
        border-radius: 18px;
    }

    .spiffy-thankyou-icon {
        width: 70px;
        height: 70px;
        font-size: 27px;
    }

    .spiffy-thankyou-box h1 {
        font-size: 30px;
    }

    .spiffy-thankyou-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .spiffy-thankyou-actions {
        flex-direction: column;
    }

    .spiffy-thankyou-btn {
        width: 100%;
    }
}

.spiffy-404-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(76, 175, 36, 0.08), transparent 35%),
        #f7f9f6;
}

.spiffy-404-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eee5;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
}

.spiffy-404-number {
    margin-bottom: 10px;

    color: #4CAF24;

    font-size: 120px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -6px;
}

.spiffy-404-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #4CAF24;

    font-size: 15px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.spiffy-404-box h1 {
    margin: 0 0 18px;
    color: #222;
    font-size: 33px;
    line-height: 1.2;
    font-weight: 700;
}

.spiffy-404-text {
    max-width: 620px;

    margin: 0 auto 35px;

    color: #666;

    font-size: 17px;
    line-height: 1.8;
}

.spiffy-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.spiffy-404-btn {
    min-width: 180px;
    min-height: 50px;

    padding: 13px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 8px;

    background: #4CAF24;
    border: 1px solid #4CAF24;

    color: #fff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.spiffy-404-btn:hover {
    background: #2E7D0E;
    border-color: #2E7D0E;

    transform: translateY(-2px);
}

.spiffy-404-btn-outline {
    background: transparent;

    color: #2E7D0E !important;
}

.spiffy-404-btn-outline:hover {
    background: #2E7D0E;

    color: #fff !important;
}


/* Tablet */
@media (max-width: 991px) {

    .spiffy-404-section {
        padding: 70px 0;
    }

    .spiffy-404-box {
        padding: 55px 30px;
    }

    .spiffy-404-number {
        font-size: 95px;
    }

    .spiffy-404-box h1 {
        font-size: 38px;
    }
}


/* Mobile */
@media (max-width: 575px) {

    .spiffy-404-section {
        padding: 50px 0;
    }

    .spiffy-404-box {
        padding: 40px 18px;

        border-radius: 18px;
    }

    .spiffy-404-number {
        font-size: 78px;

        letter-spacing: -3px;
    }

    .spiffy-404-box h1 {
        font-size: 30px;
    }

    .spiffy-404-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .spiffy-404-actions {
        flex-direction: column;
    }

    .spiffy-404-btn {
        width: 100%;
    }
}
span.wpcf7-spinner {
    display: none;
}
.form-group .wpcf7-not-valid-tip {}
.wpcf7-not-valid-tip {
    font-size: 12px !important;
}
/* Date input */
.quote-form input[type="date"] {
    position: relative;
    padding-left: 62px !important;
}

/* Native calendar icon: stretched to cover the whole field and made fully
   transparent, so clicking anywhere in the date field opens the picker ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â
   not just a small icon-sized hit area. The decorative FA calendar icon
   (`.form-group i`, pointer-events:none) stays visible underneath it, same
   as every other field, instead of being hidden and replaced. */
.quote-form input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    background: transparent;
    opacity: 0;
    cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
    margin: 0px !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #4caf24 !important;
}

.spiffy-contact-form-wrap .wpcf7-form p .wpcf7-submit {
    margin-bottom: 10px !important;
} 
