:root {
 --primary: #0f7a43;
 --secondary: #f44336;
 --dark: #111111;
 --light: #f8f9fa;
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: Arial, sans-serif;
 line-height: 1.7;
 color: #333;
}

img {
 max-width: 100%;
}

.custom-container {
 max-width: 1720px;
 margin: auto;

 padding-left: 40px;
 padding-right: 40px;
}
.blinking{
  background-color: #066b3b;
  color: white;
  animation: blink 1s linear infinite;
}
@keyframes blink {
  0%, 100% {background-color:#ef1010;}
  50% {background-color: #066b3b;}
}
/* === TOPBAR === */

.topbar{
    background: #066b3b;
    padding:9px 0;
}

.topbar-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:18px;
}

.topbar-right a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
}

.topbar-right a:hover{
    color:#ff6a00;
}

.topbar-right i{
    font-size:18px;
}


/* === SOCIAL ICONS === */

.social-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-icons a{
    font-size:14px;
}


/* === NAVBAR === */

.navbar{
    width:100%;
    background:#fff;
    height:95px;
    border-bottom:1px solid #f1f1f1;
    position:relative;
    z-index:999;
}

.navbar-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
}


/* === LOGO === */

.logo img{
    width:150px;
    display:block;
}


/* === NAV MENU === */

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap: 40px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    text-decoration:none;
    color:#111;
    font-size: 15px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    transition:0.3s;
    letter-spacing:0.3px;
}


/* ACTIVE MENU */

.nav-links li a.active{
    color: #066b3b;
}

.nav-links li a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-33px;
    width:100%;
    height:2px;
    background: #066b3b;
}


/* HOVER EFFECT */

.nav-links li a:hover{
    color: #066b3b;
}


/* DROPDOWN ICON */

.dropdown i{
    font-size:10px;
    margin-left:5px;
}


/* === CTA BUTTON === */

.dealership-btn{
    background: #066b3b;
    color:#fff;
    text-decoration:none;
    height:52px;
    padding:0 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:3px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    transition:0.3s;
    white-space:nowrap;
}

.dealership-btn:hover{
    background: #04522d;
}


/* === MOBILE TOGGLE === */

.menu-toggle{
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:10px;
    transition:0.3s;
}


/* === RESPONSIVE === */

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .navbar{
        height:80px;
    }

    .logo img{
        width:120px;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
        gap:25px;
        border-top:1px solid #eee;
        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
        width:100%;
    }

    .nav-links li a{
        font-size:15px;
    }

    .nav-links li a.active::after{
        display:none;
    }

    .dealership-btn{
        width:100%;
    }

}


@media(max-width:576px){

    .navbar{
        height:75px;
    }

    .logo img{
        width:110px;
    }

}
/* === HERO SECTION === */
.hero-section .carousel-caption {
    left: 10%;
    text-align: left;
    bottom: auto;
    top: 0%;
}
.hero-section {
 position: relative;
 width: 100%;
 min-height: 920px;
 max-height:920px;
 overflow: hidden;
 background: linear-gradient(
   to right,
   rgba(255, 255, 255, 0.96) 0%,
   rgba(255, 255, 255, 0.88) 38%,
   rgba(255, 255, 255, 0.15) 58%,
   rgba(255, 255, 255, 0) 100%
  ),
  url("../img/hero-bg.jpg");
 background-size: cover;
 background-position: center;
}
section.hero-section.about-us {
 position: relative;
 width: 100%;
 min-height: 920px;
 overflow: hidden;
 background: linear-gradient(
   to right,
   rgba(255, 255, 255, 0.96) 0%,
   rgba(255, 255, 255, 0.88) 38%,
   rgba(255, 255, 255, 0.15) 58%,
   rgba(255, 255, 255, 0) 100%
  ),
  url("../img/about-hero-bg.jpg");
 background-size: cover;
 background-position: center;
}
/* CONTAINER */

.hero-container {
 max-width: 1720px;

 padding-left: 70px;
 padding-right: 70px;
}

/* ROW */

.hero-row {
}

/* LEFT CONTENT */

.hero-content {
 padding-top: 70px;
}
.feature-icon img {
 width: 60%;
}
/* TOP TITLE */

.hero-top-title {
 font-size: 58px;

 font-weight: 900;

 color: #111;

 line-height: 1;

 margin-bottom: 18px;

 letter-spacing: -1px;
}

/* SUBTITLE */

.hero-subtitle {
 font-size: 34px;

 font-weight: 700;

 color: #111;

 line-height: 1.3;

 margin-bottom: 28px;
}

/* TITLE */

.hero-title {
 font-size: 104px;

 font-weight: 900;

 line-height: 0.9;

 letter-spacing: -6px;

 margin-bottom: 38px;
}

/* COLORS */

.green-text {
 color: #006b35;
}

.red-text {
 color: #ef1010;
}

/* DESCRIPTION */

.hero-description {
 max-width: 620px;

 font-size: 28px;

 line-height: 1.7;

 color: #222;

 font-weight: 500;

 margin-bottom: 52px;
}

/* FEATURES */

.hero-features {
 display: flex;

 align-items: flex-start;

 gap: 38px;

 margin-bottom: 52px;
}

h5.hero-top-title {
 font-weight: 800;
 color: #066b3b;
 margin-bottom: 12px;
 line-height: 1;
 text-transform: uppercase;
}

/* ITEM */

.feature-item {
 text-align: center;

 max-width: 170px;
}

/* ICON */

.feature-icon {
 width: 78px;
 height: 78px;

 border: 2px solid #0a6a39;

 border-radius: 50%;

 display: flex;

 align-items: center;
 justify-content: center;

 color: #0a6a39;

 margin: auto;

 margin-bottom: 18px;
}

/* TITLE */

.feature-item h6 {
 font-size: 18px;

 font-weight: 700;

 line-height: 1.4;

 color: #111;

 margin-bottom: 6px;
}

/* SUB */

.feature-item p {
 font-size: 16px;

 line-height: 1.5;

 color: #111;

 margin: 0;
}

/* BUTTONS */

.hero-buttons {
 display: flex;

 align-items: center;

 gap: 22px;
}

/* BUTTON */

.hero-btn {
 height: 66px;

 padding-left: 42px;
 padding-right: 42px;

 border-radius: 10px;

 display: inline-flex;

 align-items: center;
 justify-content: center;

 text-decoration: none;

 font-size: 18px;

 font-weight: 800;

 letter-spacing: 0.3px;

 transition: 0.3s;
}

/* PRIMARY */

.primary-btn {
 background: #006b35;

 color: #fff;
}

/* SECONDARY */

.secondary-btn {
 border: 2px solid #0a6a39;

 color: #0a6a39;

 background: #fff;
}

/* HOVER */

.primary-btn:hover {
 background: #00552b;

 color: #fff;
}

.secondary-btn:hover {
 background: #0a6a39;

 color: #fff;
}

/* IMAGE */

.hero-image-wrapper {
 position: relative;

 height: 100%;

 display: flex;

 align-items: flex-end;
 justify-content: flex-end;
}

/* PRODUCT IMAGE */

.hero-product-image {
 width: 100%;

 max-width: 980px;

 object-fit: contain;
}

/* STATS */

.stats-bar {
 position: relative;

 margin-top: -40px;

 z-index: 20;
}
.stats-row {
 display: flex;
 align-items: center;
}
/* CONTAINER */

.stats-container {
 max-width: 1640px;
}

/* BAR */

.stats-container .row {
 background: linear-gradient(90deg, #005c2e, #006f39);

 border-radius: 14px;

 overflow: hidden;

 box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* ITEM */

.stats-item {
 min-height: 132px;

 display: flex;

 flex-direction: column;

 justify-content: center;

 padding-left: 10px;

 border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* NO BORDER */

.no-border {
 border-right: none;
}

/* TITLE */

.stats-item h3 {
 font-size: 52px;

 font-weight: 900;

 color: #fff;

 line-height: 1;

 margin-bottom: 10px;
}

/* TEXT */

.stats-item p {
 font-size: 22px;

 line-height: 1.5;

 color: #fff;

 margin: 0;

 font-weight: 500;
}

/* ===
   RESPONSIVE
=== */

@media (max-width: 1600px) {
 .hero-title {
  font-size: 110px;
 }

 .hero-description {
  font-size: 24px;
 }
}

@media (max-width: 1199px) {
 .hero-section {
  min-height: auto;

  padding-top: 120px;
  padding-bottom: 120px;
 }

 .hero-row {
  min-height: auto;
 }

 .hero-content {
  padding-top: 0;

  text-align: center;

  margin: auto;

  margin-bottom: 70px;
 }

 .hero-features {
  justify-content: center;

  flex-wrap: wrap;
 }

 .hero-buttons {
  justify-content: center;
 }

 .hero-title {
  font-size: 90px;
 }

 .hero-description {
  margin-left: auto;
  margin-right: auto;
 }

 .stats-item {
  border-right: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
}

@media (max-width: 767px) {
 .hero-container {
  padding-left: 20px;
  padding-right: 20px;
 }

 .hero-top-title {
  font-size: 34px;
 }

 .hero-subtitle {
  font-size: 24px;
 }

 .hero-title {
  font-size: 62px;

  letter-spacing: -2px;
 }

 .hero-description {
  font-size: 18px;
 }

 .hero-features {
  gap: 20px;
 }

 .feature-item {
  max-width: 120px;
 }

 .hero-buttons {
  flex-direction: column;
 }

 .hero-btn {
  width: 100%;
 }

 .stats-item {
  min-height: 110px;

  padding-left: 30px;
 }

 .stats-item h3 {
  font-size: 38px;
 }

 .stats-item p {
  font-size: 16px;
 }
}

/* ===
   PRODUCTS SECTION
=== */

.products-section {
 padding-top: 30px;

 background: #fff;
}

/* HEADING */

.section-heading {
 display: flex;

 align-items: center;
 justify-content: center;

 gap: 18px;
 margin-bottom: 40px;
 margin-top: 80px;
}

/* LINE */

.title-line {
 width: 90px;
 height: 2px;

 background: #2f9c68;

 position: relative;
}

.title-line::after {
 content: "";

 width: 10px;
 height: 10px;

 background: #2f9c68;

 border-radius: 50%;

 position: absolute;

 right: -5px;
 top: -4px;
}

/* TITLE */

.section-heading h2 {
 font-size: 44px;

 font-weight: 900;

 color: #006b35;

 margin: 0;
}

/* SUBTITLE */

.section-subtitle {
 text-align: center;

 font-size: 24px;

 color: #111;

 margin-bottom: 60px;
}

/* ROW */

.product-row {
 margin-bottom: 90px;
}

/* CARD */

.product-card {
 display: flex;

 align-items: center;

 gap: 34px;

 border-radius: 18px;

 min-height: 360px;

 padding: 40px;

 overflow: hidden;

 position: relative;

 transition: 0.4s ease;
}

/* CARD BG */

.product-card-green {
 background: #eef2ed;
}

.product-card-yellow {
 background: #f9edd0;
}

.product-card-blue {
 background: #add1ff;
}

.product-card-pink {
 background: #ffc2cf;
}

/* HOVER */

.product-card:hover {
 transform: translateY(-6px);
}

/* IMAGE */

.product-image {
 width: 270px;

 flex-shrink: 0;
}

.product-image img {
 width: 100%;
}

/* CONTENT */

.product-content h5 {
 font-size: 26px;

 font-weight: 900;

 color: #006b35;

 margin-bottom: 10px;
}

.product-content h3 {
 font-size: 48px;

 line-height: 1.1;

 font-weight: 900;

 color: #111;

 margin-bottom: 22px;
}

.product-content p {
 font-size: 18px;

 line-height: 1.6;

 color: #222;

 margin-bottom: 30px;
}

/* BUTTON */

.product-btn {
 height: 60px;

 padding-left: 34px;
 padding-right: 34px;

 background: #006b35;

 color: #fff;

 border-radius: 8px;

 display: inline-flex;

 align-items: center;

 gap: 12px;

 text-decoration: none;

 font-size: 18px;

 font-weight: 800;

 transition: 0.3s;
}

.product-btn:hover {
 background: #004f27;

 color: #fff;
}

/* WHY ROW */

.why-row {
 align-items: center;
}

/* WHY TITLE */

.why-content h3 {
 font-size: 42px;

 font-weight: 900;

 color: #006b35;

 margin-bottom: 30px;
}

/* LIST */

.why-list {
 list-style: none;

 padding: 0;

 margin: 0 0 35px 0;
}

.why-list li {
 position: relative;

 padding-left: 38px;

 font-size: 24px;

 color: #111;

 margin-bottom: 22px;

 line-height: 1.5;
}

/* DOT */

.why-list li::before {
 content: ">";

 position: absolute;

 left: 0;
 top: 0;

 width: 24px;
 height: 24px;

 border-radius: 50%;

 background: #006b35;

 color: #fff;

 font-size: 14px;

 display: flex;

 align-items: center;
 justify-content: center;
}

/* BUTTON */

.know-btn {
 display: inline-flex;

 align-items: center;
 justify-content: center;

 height: 60px;

 padding-left: 34px;
 padding-right: 34px;

 background: #006b35;

 color: #fff;

 border-radius: 8px;

 text-decoration: none;

 font-size: 18px;

 font-weight: 800;

 transition: 0.3s;
}

.know-btn:hover {
 background: #004f27;

 color: #fff;
}

/* GALLERY */

.why-gallery {
 display: flex;

 gap: 18px;

 justify-content: flex-end;
 position: relative;
}

/* ITEM */

.gallery-item {
 width: 24%;
 border-radius: 18px;
 overflow: hidden;
 position: relative;
 transform: skewX(350deg);
}

.gallery-item img {
 width: 100%;
 height: 100%;

 object-fit: cover;

 transition: 0.5s;
}

/* HOVER */

.gallery-item:hover img {
 transform: scale(1.08);
}

/* LEAF */

.leaf-image {
 position: absolute;

 right: 0px;
 bottom: -20px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
 .product-card {
  flex-direction: column;

  text-align: center;
 }

 .product-content h3 {
  font-size: 38px;
 }

 .why-content {
  margin-bottom: 40px;
 }

 .why-gallery {
  flex-wrap: wrap;
 }

 .gallery-item {
  width: 48%;
 }
}

@media (max-width: 767px) {
 .products-section {
  padding-top: 60px;
  padding-bottom: 60px;
 }

 .section-heading h2 {
  font-size: 32px;
 }

 .section-subtitle {
  font-size: 18px;
 }

 .product-card {
  padding: 28px;
 }

 .product-image {
  width: 180px;
 }

 .product-content h5 {
  font-size: 20px;
 }

 .product-content h3 {
  font-size: 30px;
 }

 .product-content p {
  font-size: 17px;
 }

 .why-content h3 {
  font-size: 30px;
 }

 .why-list li {
  font-size: 18px;
 }

 .gallery-item {
  width: 100%;
 }
}

/* ===
   WORK ABOUT SECTION
=== */

.work-about-section {
 padding-top: 70px;
 padding-bottom: 50px;

 background: #fff;
}

/* CONTAINER */

/* SECTION TITLE */

.section-heading {
 display: flex;

 align-items: center;
 justify-content: center;

 gap: 18px;

 margin-bottom: 35px;
}

/* LINE */

.title-line {
 width: 90px;
 height: 2px;

 background: #2d9a67;

 position: relative;
}

.title-line::after {
 content: "";

 position: absolute;

 right: -5px;
 top: -4px;

 width: 10px;
 height: 10px;

 border-radius: 50%;

 background: #2d9a67;
}

/* TITLE */

.section-heading h2 {
 margin: 0;

 font-size: 44px;

 font-weight: 900;

 color: #006b35;
}

/* PROCESS BOX */

.process-wrapper {
 background: #f6f6f6;

 border-radius: 18px;

 min-height: 160px;

 display: flex;

 align-items: center;
 justify-content: space-between;

 padding-left: 40px;
 padding-right: 40px;

 margin-bottom: 48px;
}

/* ITEM */

.process-item {
 display: flex;

 align-items: center;

 gap: 18px;
}

/* ICON */

.process-icon {
 width: 74px;
 height: 74px;

 border-radius: 50%;

 background: #006b35;

 display: flex;

 align-items: center;
 justify-content: center;

 flex-shrink: 0;
}

.process-icon img {
 width: 45px;
}

/* CONTENT */

.process-content span {
 display: block;

 font-size: 18px;

 font-weight: 800;

 color: #006b35;

 margin-bottom: 6px;
}

.process-content h4 {
 font-size: 18px;

 line-height: 1.4;

 font-weight: 800;

 color: #006b35;

 margin-bottom: 4px;
}

.process-content p {
 font-size: 16px;

 color: #222;

 margin: 0;
}

/* ARROW */

.process-arrow {
 font-size: 32px;

 font-weight: 700;

 color: #111;
}

/* ABOUT WRAPPER */

.about-wrapper {
 display: flex;

 gap: 40px;

 align-items: stretch;
}

/* LEFT */

.about-content {
 width: 38%;

 background: #f7f7f7;

 border-radius: 18px;

 padding: 52px;
}

/* TITLE */

.about-content h3 {
 font-size: 43px;

 line-height: 1.1;

 font-weight: 900;

 color: #006b35;

 margin-bottom: 28px;
}

/* TEXT */

.about-content p {
 font-size: 25px;

 line-height: 1.9;

 color: #222;

 margin-bottom: 24px;
}

/* BUTTON */

.about-btn {
 display: inline-flex;

 align-items: center;
 justify-content: center;

 height: 60px;

 padding-left: 36px;
 padding-right: 36px;

 background: #006b35;

 color: #fff;

 border-radius: 8px;

 text-decoration: none;

 font-size: 18px;

 font-weight: 800;

 transition: 0.3s;
}

.about-btn:hover {
 background: #004f27;

 color: #fff;
}

/* IMAGE AREA */

.about-image-area {
 width: 62%;

 position: relative;

 overflow: hidden;

 border-radius: 18px;
}

.about-image-area img {
 width: 100%;
 height: 100%;

 object-fit: cover;
}

/* EXPERIENCE BADGE */

.experience-badge {
 position: absolute;

 left: 40px;
 top: 40px;

 width: 190px;
 height: 190px;

 border-radius: 50%;

 display: flex;

 align-items: center;
 justify-content: center;
}

/* INNER */

.badge-inner {
 width: 165px;
 height: 165px;

 display: flex;

 flex-direction: column;

 align-items: center;
 justify-content: center;

 text-align: center;
}

/* NUMBER */

.badge-inner h2 {
 font-size: 56px;

 line-height: 1;

 font-weight: 900;

 color: #111;

 margin-bottom: 10px;
}

/* YEARS */

.badge-inner span {
 display: block;

 font-size: 18px;

 font-weight: 700;

 color: #111;

 letter-spacing: 1px;
}

.badge-inner p {
 margin: 0;

 font-size: 18px;

 font-weight: 700;

 color: #111;
}

/* ===
   RESPONSIVE
=== */

@media (max-width: 1199px) {
 .process-wrapper {
  flex-wrap: wrap;

  gap: 30px;

  justify-content: center;

  padding-top: 40px;
  padding-bottom: 40px;
 }

 .process-arrow {
  display: none;
 }

 .about-wrapper {
  flex-direction: column;
 }

 .about-content,
 .about-image-area {
  width: 100%;
 }
}

@media (max-width: 767px) {
 .work-about-section {
  padding-top: 50px;
  padding-bottom: 60px;
 }

 .section-heading h2 {
  font-size: 32px;
 }

 .process-item {
  width: 100%;
 }

 .process-content h4 {
  font-size: 20px;
 }

 .process-content p {
  font-size: 18px;
 }

 .about-content {
  padding: 30px;
 }

 .about-content h3 {
  font-size: 34px;
 }

 .about-content p {
  font-size: 18px;
 }

 .experience-badge {
  width: 140px;
  height: 140px;

  left: 20px;
  top: 20px;
 }

 .badge-inner {
  width: 120px;
  height: 120px;
 }

 .badge-inner h2 {
  font-size: 38px;
 }

 .badge-inner span,
 .badge-inner p {
  font-size: 12px;
 }
}

/* ===
   TESTIMONIAL CTA SECTION
=== */

.testimonial-cta-section {
 padding-top: 70px;

 background: #fff;
}

/* CONTAINER */

/* SECTION TITLE */

.section-heading {
 display: flex;

 align-items: center;
 justify-content: center;

 gap: 18px;

 margin-bottom: 40px;
}

/* LINE */

.title-line {
 width: 90px;
 height: 2px;

 background: #2d9a67;

 position: relative;
}

.title-line::after {
 content: "";

 width: 10px;
 height: 10px;

 border-radius: 50%;

 background: #2d9a67;

 position: absolute;

 right: -5px;
 top: -4px;
}

/* TITLE */

.section-heading h2 {
 font-size: 44px;

 font-weight: 900;

 color: #006b35;

 margin: 0;
}

/* WRAPPER */

.testimonial-wrapper {
 display: flex;

 align-items: center;
 justify-content: center;

 gap: 28px;

 margin-bottom: 22px;
}

/* ARROW */

.testimonial-arrow {
 width: 54px;
 height: 54px;

 border: none;

 border-radius: 50%;

 background: #006b35;

 color: #fff;

 font-size: 22px;

 display: flex;

 align-items: center;
 justify-content: center;

 cursor: pointer;

 transition: 0.3s;
}

.testimonial-arrow:hover {
 background: #004f27;
}

/* BOX */

.testimonial-box {
 width: 100%;

 max-width: 1120px;

 min-height: 210px;

 border: 2px solid #e5e5e5;

 border-radius: 18px;

 background: #fff;

 display: flex;

 align-items: center;

 gap: 34px;

 padding: 36px 42px;
}

.testimonial-cta-section .testimonial-wrapper .owl-dots {
 display: flex;
 justify-content: center;
 gap: 10px;
 align-items: center;
}
.testimonial-cta-section .testimonial-wrapper .owl-item {
 display: flex;
 justify-content: center;
 align-items: center;
}
.testimonial-cta-section .testimonial-wrapper .owl-nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: absolute;
 width: 100%;
 top: 40%;
}
.testimonial-cta-section .owl-nav button span {
 width: 54px;
 height: 54px;

 border: none;

 border-radius: 50%;

 background: #006b35;

 color: #fff;

 font-size: 22px;

 display: flex;

 align-items: center;
 justify-content: center;

 cursor: pointer;

 transition: 0.3s;
}
.testimonial-cta-section .owl-nav button span:hover {
 background: #004f27;
}
.testimonial-cta-section .owl-nav button span {
}

/* IMAGE */

.client-image {
 width: 150px;
 height: 150px;

 border-radius: 50%;

 overflow: hidden;

 flex-shrink: 0;
}

.client-image img {
 width: 100%;
 height: 100%;

 object-fit: cover;
}

/* CONTENT */

.testimonial-content {
 position: relative;
}

/* QUOTE */

.quote-icon {
 font-size: 62px;

 color: #006b35;

 line-height: 1;

 position: absolute;

 left: 0;
 top: -14px;
}

/* TEXT */

.testimonial-text {
 font-size: 24px;

 line-height: 1.9;

 color: #111;

 margin-bottom: 22px;

 padding-left: 34px;
}

/* NAME */

.testimonial-content h4 {
 font-size: 28px;

 font-weight: 900;

 color: #111;

 margin-bottom: 6px;
}

/* DESIGNATION */

.testimonial-content span {
 font-size: 22px;

 color: #333;
}

/* DOTS */

.owl-dots button.owl-dot {
 display: flex;

 justify-content: center;

 gap: 10px;

 margin-bottom: 10px;
 margin-top: 20px;

 border: 1px solid #495057;
}

/* DOT */

.owl-dots button {
 width: 12px;
 height: 12px;

 border-radius: 50%;

 background: #d9d9d9;
}

.owl-dots button.active {
 background: #006b35;
}

/* ===
   CTA SECTION
=== */

.cta-section {
 background: linear-gradient(90deg, #00632f, #007437);

 overflow: hidden;
}

/* WRAPPER */

.cta-wrapper {
 min-height: 285px;

 display: flex;

 align-items: center;
 justify-content: space-between;

 position: relative;
}

/* PRODUCT */

.cta-product {
 width: 550px;

 flex-shrink: 0;
}

.cta-product img {
 width: 100%;
}

/* CONTENT */

.cta-content {
 flex: 1;

 padding-left: 30px;
}

/* TITLE */

.cta-content h3 {
 font-size: 24px;

 line-height: 1.4;

 font-weight: 900;

 color: #fff;

 margin-bottom: 24px;
}

/* BUTTON */

.cta-btn {
 display: inline-flex;

 align-items: center;

 gap: 12px;

 height: 60px;

 padding-left: 34px;
 padding-right: 34px;

 background: #fff;

 color: #006b35;

 border-radius: 8px;

 text-decoration: none;

 font-size: 18px;

 font-weight: 800;

 transition: 0.3s;
}

.cta-btn:hover {
 background: #f3f3f3;

 color: #006b35;
}

/* CONTACT */

.cta-contact {
 display: flex;

 align-items: center;

 gap: 24px;

 padding-left: 60px;

 border-left: 1px solid rgba(255, 255, 255, 0.25);
}

/* PHONE */

.phone-icon {
 width: 82px;
 height: 82px;

 border: 2px solid #fff;

 border-radius: 50%;

 display: flex;

 align-items: center;
 justify-content: center;

 color: #fff;

 font-size: 36px;
}

/* INFO */

.contact-info span {
 display: block;

 font-size: 20px;

 color: #fff;

 margin-bottom: 6px;
}

.contact-info h4 {
 font-size: 42px;

 font-weight: 900;

 color: #fff;

 margin-bottom: 6px;
}

.contact-info p {
 margin: 0;

 font-size: 18px;

 color: #fff;
}

/* ===
   RESPONSIVE
=== */

@media (max-width: 1199px) {
 .testimonial-box {
  flex-direction: column;

  text-align: center;
 }

 .quote-icon {
  position: relative;

  top: 0;
 }

 .testimonial-text {
  padding-left: 0;
 }

 .cta-wrapper {
  flex-direction: column;

  gap: 40px;

  padding-top: 50px;
  padding-bottom: 50px;
 }

 .cta-content {
  padding-left: 0;

  text-align: center;
 }

 .cta-contact {
  border-left: none;

  padding-left: 0;
 }
}

@media (max-width: 767px) {
 .testimonial-cta-section {
  padding-top: 50px;
 }

 .section-heading h2 {
  font-size: 30px;
 }

 .testimonial-wrapper {
  gap: 14px;
 }

 .testimonial-arrow {
  width: 42px;
  height: 42px;

  font-size: 16px;
 }

 .testimonial-box {
  padding: 24px;
 }

 .client-image {
  width: 100px;
  height: 100px;
 }

 .testimonial-text {
  font-size: 17px;
 }

 .testimonial-content h4 {
  font-size: 22px;
 }

 .testimonial-content span {
  font-size: 16px;
 }

 .cta-product {
  width: 220px;
 }

 .cta-content h3 {
  font-size: 26px;
 }

 .cta-btn {
  width: 100%;

  justify-content: center;
 }

 .contact-info h4 {
  font-size: 26px;
 }

 .cta-contact {
  flex-direction: column;

  text-align: center;
 }
}

/* ===
   FOOTER CSS
=== */

.clay-footer {
 background: linear-gradient(
  90deg,
  #050505 0%,
  #081116 28%,
  #0a1b24 52%,
  #081116 76%,
  #050505 100%
 );
 padding: 26px 0 12px;
 position: relative;
 overflow: hidden;
 font-family: Arial, Helvetica, sans-serif;
}

/* LOGO */
.footer-logo {
 max-width: 145px;
 margin-bottom: 8px;
}

.footer-desc {
 color: #ffffff;
 font-size: 11px;
 font-weight: 500;
 margin-bottom: 8px;
 line-height: 1.4;
}

.footer-text {
 color: #ffffff;
 opacity: 0.95;
 font-size: 15px;
 line-height: 1.55;
 margin-bottom: 20px;
 max-width: 270px;
}

/* SOCIAL */
.footer-social {
 display: flex;
 align-items: center;
 gap: 14px;
 margin-bottom: 20px;
}

.footer-social a {
 width: 34px;
 height: 34px;
 border: 1px solid rgba(255, 255, 255, 0.45);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #ffffff;
 text-decoration: none;
 font-size: 14px;
 transition: 0.3s;
}

.footer-social a:hover {
 background: #00a859;
 border-color: #00a859;
}

/* HEADINGS */
.footer-links h4,
.dealer-box h4,
.footer-contact h4 {
 color: #ffffff;
 font-size: 19px;
 font-weight: 700;
 margin-bottom: 18px;
 letter-spacing: 0.3px;
}

/* LINKS */
.footer-links ul {
 padding: 0;
 margin: 0;
 list-style: none;
}

.footer-links ul li {
 margin-bottom: 7px;
}

.footer-links ul li a {
 color: #ffffff;
 text-decoration: none;
 font-size: 14px;
 transition: 0.3s;
 font-weight: 400;
}

.footer-links ul li a:hover {
 color: #00a859;
}

/* FORM */
.dealer-box form {
 max-width: 260px;
}

.dealer-box .form-control,
.dealer-box .form-select {
 height: 38px;
 border-radius: 4px;
 border: none;
 margin-bottom: 9px;
 font-size: 13px;
 box-shadow: none !important;
 padding-left: 12px;
 background: #ffffff;
}

.dealer-box .form-control::placeholder {
 color: #8d8d8d;
}

.submit-btn {
 width: 100%;
 height: 38px;
 border: none;
 border-radius: 4px;
 background: #009245;
 color: #ffffff;
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 0.5px;
 transition: 0.3s;
}

.submit-btn:hover {
 background: #00a651;
}

/* CONTACT */
.footer-contact ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.footer-contact ul li {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 16px;
 color: #ffffff;
 font-size: 14px;
 line-height: 1.6;
}

.footer-contact ul li i {
 color: #ffffff;
 font-size: 15px;
 margin-top: 4px;
 width: 14px;
}

.footer-contact ul li a,
.footer-contact ul li span {
 color: #ffffff;
 text-decoration: none;
 font-size: 14px;
}

/* COPYRIGHT */
.copyright {
 color: rgba(255, 255, 255, 0.9);
 font-size: 13px;
 margin-bottom: 0;
}

/* BOTTOM */
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.08);
 margin-top: 18px;
 padding-top: 12px;
 display: flex;
 justify-content: flex-end;
 align-items: center;
 gap: 12px;
}

.footer-bottom a {
 color: #ffffff;
 text-decoration: none;
 font-size: 13px;
}

.footer-bottom span {
 color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 991px) {
 .footer-bottom {
  justify-content: center;
 }

 .dealer-box form {
  max-width: 100%;
 }
}

@media (max-width: 767px) {
 .clay-footer {
  text-align: center;
 }

 .footer-social {
  justify-content: center;
 }

 .footer-contact ul li {
  justify-content: center;
 }

 .footer-text {
  max-width: 100%;
 }
}

/* =========
   OUR STORY SECTION START
============ */

.about-story-section {
 padding: 70px 0;
 background: #ffffff;
 font-family: "Poppins", sans-serif;
}

/* TOP AREA */

.story-top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 50px;
 margin-bottom: 35px;
}

/* LEFT CONTENT */

.story-content {
 width: 34%;
}

.story-content h2 {
 font-size: 40px;
 font-weight: 700;
 color: #066b3b;
 margin-bottom: 28px;
 line-height: 1;
}

.story-content p {
 font-size: 22px;
 line-height: 1.9;
 color: #1e1e1e;
 margin-bottom: 22px;
 font-weight: 400;
}

/* RIGHT IMAGE */

.story-image {
 width: 66%;
 position: relative;
}

.story-image img {
 width: 100%;
 border-radius: 30px;
 display: block;
 height: 630px;
 object-fit: cover;
}

/* QUOTE CARD */

.quote-card {
 position: absolute;
 right: 25px;
 bottom: 25px;
 width: 320px;
 background: #ffffff;
 padding: 35px 30px;
 border-radius: 24px;
 box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
 font-size: 70px;
 color: #066b3b;
 line-height: 1;
 display: block;
 margin-bottom: 12px;
 font-weight: 700;
}

.quote-card p {
 font-size: 28px;
 line-height: 1.7;
 color: #222;
 font-weight: 500;
}

/* BOTTOM AREA */

.mission-vision-wrapper {
 display: flex;
 gap: 25px;
}

/* COMMON BOX */

.info-box {
 width: 50%;
 border-radius: 22px;
 padding: 35px;
 display: flex;
 align-items: center;
 gap: 28px;
}

/* MISSION */

.mission-box {
 background: #edf2ee;
}

/* VISION */

.vision-box {
 background: #f8ecd2;
}

/* ICON */

.icon-box {
 min-width: 140px;
 height: 140px;
 border-radius: 50%;
 background: #066b3b;
 display: flex;
 align-items: center;
 justify-content: center;
}

.icon-box img {
 width: 70px;
}

/* CONTENT */

.info-content h3 {
 font-size: 34px;
 font-weight: 700;
 color: #066b3b;
 margin-bottom: 15px;
}

.info-content p {
 font-size: 22px;
 line-height: 1.8;
 color: #222;
 margin: 0;
}

/* =========
   RESPONSIVE
============ */

@media (max-width: 992px) {
 .story-top {
  flex-direction: column;
 }

 .story-content,
 .story-image {
  width: 100%;
 }

 .story-image img {
  height: auto;
 }

 .mission-vision-wrapper {
  flex-direction: column;
 }

 .info-box {
  width: 100%;
 }

 .quote-card {
  width: 280px;
 }
}

@media (max-width: 768px) {
 .story-content h2 {
  font-size: 32px;
 }

 .story-content p {
  font-size: 17px;
  line-height: 1.8;
 }

 .quote-card {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  margin-top: 20px;
 }

 .quote-card p {
  font-size: 20px;
 }

 .info-box {
  flex-direction: column;
  text-align: center;
 }

 .info-content h3 {
  font-size: 28px;
 }

 .info-content p {
  font-size: 17px;
 }

 .icon-box {
  min-width: 110px;
  height: 110px;
 }
}

/* === OUR STORY END === */

/* === WHY CHOOSE START === */

.why-choose-section {
 padding: 0px 20px 50px;
 background: #ffffff;
 font-family: "Poppins", sans-serif;
}

.why-choose-section .container {
 width: 92%;
 max-width: 1320px;
 margin: auto;
}

/* SECTION TITLE */

.section-title {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 18px;
 margin-bottom: 28px;
}

.section-title .line {
 width: 65px;
 height: 2px;
 background: #0a7a44;
 position: relative;
}

.section-title .line::after {
 content: "";
 width: 7px;
 height: 7px;
 background: #0a7a44;
 border-radius: 50%;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
}

.section-title .line:first-child::after {
 right: -2px;
}

.section-title .line:last-child::after {
 left: -2px;
}

.section-title h2 {
 font-size: 24px;
 font-weight: 700;
 color: #066b3b;
 margin: 0;
 letter-spacing: 0.3px;
 text-transform: uppercase;
}

/* WRAPPER */

.choose-wrapper {
 background: #fafafa;
 border-radius: 14px;
 box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
 display: flex;
 align-items: center;
 justify-content: space-between;
 overflow: hidden;
 border: 1px solid #efefef;
}

/* ITEM */

.choose-item {
 width: 20%;
 padding: 18px 15px;
 text-align: center;
 border-right: 1px solid #d9d9d9;
}

.choose-item.no-border {
 border-right: none;
}

/* ICON */

.choose-item img {
 width: 44px;
 height: 44px;
 object-fit: contain;
 margin-bottom: 10px;
}

/* TEXT */

.choose-item h3 {
 font-size: 15px;
 line-height: 1.35;
 font-weight: 600;
 color: #1e1e1e;
 margin: 0;
}

/* =============
   RESPONSIVE
============= */

@media (max-width: 992px) {
 .choose-wrapper {
  flex-wrap: wrap;
 }

 .choose-item {
  width: 33.33%;
  border-bottom: 1px solid #d9d9d9;
 }
}

@media (max-width: 768px) {
 .section-title {
  gap: 10px;
 }

 .section-title .line {
  width: 40px;
 }

 .section-title h2 {
  font-size: 18px;
  text-align: center;
 }

 .choose-item {
  width: 50%;
  padding: 20px 12px;
 }

 .choose-item h3 {
  font-size: 14px;
 }
}

@media (max-width: 480px) {
 .choose-item {
  width: 100%;
  border-right: none;
 }
}

/* === WHY CHOOSE END === */

/* ===
   CONTACT SECTION START
==== */

.contact-section {
 width: 100%;
 background: #ffffff;
 font-family: "Poppins", sans-serif;
 border-top: 1px solid #e7e7e7;
 border-bottom: 1px solid #e7e7e7;
 padding: 60px 0;
}

.contact-section .container-fluid {
 padding: 0;
}

/* WRAPPER */

.contact-wrapper {
 display: flex;
 align-items: stretch;
}

/* BOTH SIDES */

.contact-info-area {
 width: 60%;
 padding: 34px 52px;
}

.contact-form-area {
 width: 40%;
 padding: 34px 52px;
}

/* LEFT SIDE */

.contact-form-area {
 border-right: 1px solid #dddddd;
}

/* TITLE */

.contact-title {
 margin-bottom: 26px;
}

.contact-title h2 {
 font-size: 34px;
 font-weight: 700;
 color: #066b3b;
 margin-bottom: 12px;
 line-height: 1;
 text-transform: uppercase;
}

.contact-title span {
 display: block;
 width: 55px;
 height: 3px;
 background: #066b3b;
 border-radius: 30px;
}

/* FORM */

.form-row {
 display: flex;
 gap: 15px;
}

.form-group {
 width: 100%;
 margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
 width: 100%;
 border: 1px solid #dddddd;
 background: #ffffff;
 border-radius: 6px;
 outline: none;
 padding: 0 18px;
 font-size: 15px;
 font-weight: 400;
 color: #222;
 transition: 0.3s;
 font-family: "Poppins", sans-serif;
}

/* INPUT */

.form-group input {
 height: 52px;
}

/* TEXTAREA */

.form-group textarea {
 height: 120px;
 resize: none;
 padding-top: 16px;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
 color: #9d9d9d;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
 border-color: #066b3b;
}

/* BUTTON */

.contact-btn {
 width: 100%;
 height: 54px;
 border: none;
 outline: none;
 border-radius: 6px;
 background: #066b3b;
 color: #ffffff;
 font-size: 17px;
 font-weight: 600;
 cursor: pointer;
 transition: 0.3s;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 text-transform: uppercase;
 font-family: "Poppins", sans-serif;
}

.contact-btn:hover {
 background: #055530;
}

.contact-btn span {
 display: flex;
 align-items: center;
 justify-content: center;
}

/* RIGHT SIDE */

.contact-info-wrapper {
 display: flex;
 justify-content: space-between;
 gap: 35px;
}

/* LEFT INFO */

.contact-info-list {
 width: 42%;
}

/* ITEM */

.info-item {
 display: flex;
 gap: 18px;
 margin-bottom: 34px;
}

/* ICON */

.info-icon {
 min-width: 56px;
 height: 56px;
 border-radius: 50%;
 background: #066b3b;
 display: flex;
 align-items: center;
 justify-content: center;
}

.info-icon i {
 color: #ffffff;
 font-size: 22px;
}

/* TEXT */

.info-text h3 {
 font-size: 26px;
 font-weight: 700;
 color: #066b3b;
 margin-bottom: 10px;
 line-height: 1;
}

.info-text p {
 font-size: 18px;
 line-height: 1.7;
 color: #222222;
 margin: 0;
}

/* MAP */

.map-box {
 width: 58%;
}

.map-box img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 8px;
 display: block;
}

/* ===
   RESPONSIVE
==== */

@media (max-width: 1200px) {
 .contact-wrapper {
  flex-direction: column;
 }

 .contact-form-area,
 .contact-info-area {
  width: 100%;
 }

 .contact-form-area {
  border-right: none;
  border-bottom: 1px solid #dddddd;
 }
}

@media (max-width: 992px) {
 .contact-info-wrapper {
  flex-direction: column;
 }

 .contact-info-list,
 .map-box {
  width: 100%;
 }

 .map-box img {
  height: auto;
 }
}

@media (max-width: 768px) {
 .contact-form-area,
 .contact-info-area {
  padding: 30px 20px;
 }

 .contact-title h2 {
  font-size: 26px;
 }

 .form-row {
  flex-direction: column;
  gap: 0;
 }

 .info-item {
  flex-direction: column;
  gap: 15px;
 }

 .info-text h3 {
  font-size: 22px;
 }

 .info-text p {
  font-size: 16px;
 }
}

/* === CONTACT END ==== */

/* ===
   CONTACT CTA SECTION START
==== */

.contact-cta-section{
    width: 100%;
    padding: 22px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-cta-section .container{
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/* MAIN WRAPPER */

.contact-cta-wrapper{
    background: linear-gradient(90deg, #045d33 0%, #066b3b 100%);
    border-radius: 10px;
    padding: 20px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
}

/* LEFT SIDE */

.cta-left{
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICON */

.cta-icon{
    width: 58px;
    height: 58px;
    min-width: 58px;
    /* border-radius: 50%; */
    /* background: rgba(255,255,255,0.12); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon img{
    /* width: 34px; */
    object-fit: contain;
}

/* TEXT */

.cta-text h2{
    font-size: 31px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-text p{
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
}

/* BUTTON */

.cta-call-btn{
    min-width: 255px;
    height: 56px;
    padding: 0 28px;
    border: 1.5px solid rgba(255,255,255,0.75);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-call-btn i{
    font-size: 21px;
}

.cta-call-btn:hover{
    background: #ffffff;
    color: #066b3b;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 992px){

    .contact-cta-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-right{
        width: 100%;
    }

    .cta-call-btn{
        width: 100%;
    }

}

@media(max-width: 768px){

    .contact-cta-wrapper{
        padding: 22px 20px;
    }

    .cta-left{
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2{
        font-size: 24px;
    }

    .cta-text p{
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-call-btn{
        font-size: 18px;
        min-width: 100%;
        height: 52px;
    }

}

/* ===
   CONTACT CTA SECTION END
==== */

/* ===
   PRODUCT CATALOGUE SECTION START
==== */

.catalogue-section{
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.catalogue-section .container{
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/* TITLE */

.catalogue-title{
    text-align: center;
    margin-bottom: 40px;
}

.catalogue-title h2{
    font-size: 42px;
    font-weight: 700;
    color: #066b3b;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.catalogue-title p{
    font-size: 20px;
    color: #222;
    margin: 0;
}

/* SLIDER */

.catalogue-slider{
    position: relative;
}

/* ITEM */

.catalogue-item{
    padding: 0 10px;
}

/* CARD */

.catalogue-card{
    background: #f8f8f8;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    min-height: 425px;
}

.catalogue-card:hover{
    transform: translateY(-6px);
}

/* SIDE STRIP */

.catalogue-top-strip{
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
}

.green-theme .catalogue-top-strip{
    background: #066b3b;
}

.yellow-theme .catalogue-top-strip{
    background: #f3cc73;
}

/* CONTENT */

.catalogue-content{
    padding: 18px 22px 0;
    text-align: center;
}

.catalogue-logo{
    width: 120px !important;
    margin: 0 auto 12px;
}

.catalogue-content h3{
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.catalogue-tag{
    display: inline-block;
    background: #cce7c8;
    color: #066b3b;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
    font-weight: 500;
}

.catalogue-product-img{
    width: 100% !important;
    height: 120px;
    object-fit: contain;
}

/* BUTTON */

.download-btn{
    width: calc(100% - 20px);
    margin: 0 auto 12px;
    height: 52px;
    background: #066b3b;
    border-radius: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
    position: absolute;
    left: 20px;
    bottom: 0;
}

.download-btn:hover{
    background: #044d2b;
}

/* ===
   OWL NAV
==== */

.catalogue-slider .owl-nav{
    margin-top: 0;
}

.catalogue-slider .owl-nav button.owl-prev,
.catalogue-slider .owl-nav button.owl-next{
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    background: #066b3b !important;
    color: #ffffff !important;
    font-size: 26px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.catalogue-slider .owl-nav button.owl-prev:hover,
.catalogue-slider .owl-nav button.owl-next:hover{
    background: #044d2b !important;
}

.catalogue-slider .owl-nav button.owl-prev{
    left: -70px;
}

.catalogue-slider .owl-nav button.owl-next{
    right: -70px;
}

/* DOTS */

.catalogue-slider .owl-dots{
    margin-top: 35px;
}

.catalogue-slider .owl-dots .owl-dot span{
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #cfcfcf;
    transition: 0.3s;
}

.catalogue-slider .owl-dots .owl-dot.active span{
    background: #066b3b;
    width: 28px;
    border-radius: 30px;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1400px){

    .catalogue-slider .owl-nav button.owl-prev{
        left: -25px;
    }

    .catalogue-slider .owl-nav button.owl-next{
        right: -25px;
    }

}

@media(max-width: 992px){

    .catalogue-title h2{
        font-size: 32px;
    }

    .catalogue-title p{
        font-size: 17px;
        line-height: 1.7;
    }

}

@media(max-width: 768px){

    .catalogue-section{
        padding: 50px 0;
    }

    .catalogue-title h2{
        font-size: 26px;
    }

    .catalogue-content h3{
        font-size: 22px;
    }

    .catalogue-slider .owl-nav button.owl-prev,
    .catalogue-slider .owl-nav button.owl-next{
        width: 44px;
        height: 44px;
        font-size: 20px !important;
    }

}

@media(max-width: 576px){

    .catalogue-slider .owl-nav{
        display: none;
    }

}

/* ===
   PRODUCT CATALOGUE SECTION END
==== */

/* ===
   DEALER ENQUIRY SECTION START
==== */

.dealer-enquiry-section{
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.dealer-enquiry-section .container{
    /* width: 92%; */
    /* max-width: 1320px; */
    /* margin: auto; */
}

/* WRAPPER */

.dealer-wrapper{
    display: flex;
    gap: 42px;
}

/* LEFT */

.dealer-form-area{
    width: 60%;
}

/* RIGHT */

.dealer-info-area{
    width: 40%;
}

/* TITLE */

.dealer-title{
    margin-bottom: 28px;
}

.dealer-title h2{
    font-size: 38px;
    font-weight: 700;
    color: #066b3b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dealer-title span{
    display: block;
    width: 55px;
    height: 3px;
    background: #066b3b;
    border-radius: 20px;
}

/* FORM ROW */

.dealer-row{
    display: flex;
    gap: 18px;
}

.dealer-group{
    width: 100%;
    margin-bottom: 18px;
}

/* INPUT BOX */

.input-box{
    width: 100%;
    height: 60px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #ffffff;
    transition: 0.3s;
}

.input-box:focus-within{
    border-color: #066b3b;
}

/* ICON */

.input-box i{
    color: #066b3b;
    font-size: 18px;
    margin-right: 14px;
}

/* INPUT */

.input-box input,
.input-box select,
.input-box textarea{
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #222;
    font-family: 'Poppins', sans-serif;
}

/* SELECT */

.select-box select{
    cursor: pointer;
}

/* TEXTAREA */

.textarea-box{
    height: 140px;
    align-items: flex-start;
    padding-top: 18px;
}

.textarea-box textarea{
    resize: none;
    height: 100%;
}

/* CHECKBOX */

.dealer-checkbox{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
}

.dealer-checkbox input{
    width: 17px;
    height: 17px;
    accent-color: #066b3b;
}

.dealer-checkbox label{
    font-size: 15px;
    color: #333;
}

.dealer-checkbox a{
    color: #066b3b;
    text-decoration: none;
    font-weight: 500;
}

/* BUTTON */

.dealer-btn{
    width: 265px;
    height: 58px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #04592f, #066b3b);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.dealer-btn:hover{
    transform: translateY(-2px);
}

/* BENEFITS */

.dealer-benefits{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */

.benefit-item{
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    align-items: flex-start;
}

/* ICON */

.benefit-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    border: 2px solid #066b3b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i{
    color: #066b3b;
    font-size: 20px;
}

/* TEXT */

.benefit-text h3{
    font-size: 21px;
    line-height: 1.4;
    color: #066b3b;
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-text p{
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

/* HELP BOX */

.dealer-help-box{
    margin-top: 26px;
    background: linear-gradient(90deg, #04592f, #066b3b);
    border-radius: 14px;
    padding: 28px;
    color: #ffffff;
}

.dealer-help-box h3{
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.dealer-help-box p{
    font-size: 18px;
    margin-bottom: 22px;
}

.dealer-help-box a{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.dealer-help-box a i{
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dealer-help-box span{
    font-size: 16px;
    display: block;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1200px){

    .dealer-wrapper{
        flex-direction: column;
    }

    .dealer-form-area,
    .dealer-info-area{
        width: 100%;
    }

}

@media(max-width: 768px){

    .dealer-enquiry-section{
        padding: 45px 0;
    }

    .dealer-title h2{
        font-size: 28px;
    }

    .dealer-row{
        flex-direction: column;
        gap: 0;
    }

    .dealer-btn{
        width: 100%;
    }

    .benefit-item{
        flex-direction: column;
    }

    .benefit-text h3{
        font-size: 18px;
    }

    .dealer-help-box h3{
        font-size: 24px;
    }

    .dealer-help-box a{
        font-size: 24px;
        flex-wrap: wrap;
    }

}

/* ===
   DEALER ENQUIRY END
==== */


/* ===
   PRODUCT RANGE SECTION START
==== */

.dealer-product-section{
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.dealer-product-section .container{
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/* TITLE */

.product-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 38px;
}

.product-title .line{
    width: 65px;
    height: 2px;
    background: #066b3b;
    position: relative;
}

.product-title .line::after{
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #066b3b;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.product-title .line:first-child::after{
    right: -3px;
}

.product-title .line:last-child::after{
    left: -3px;
}

.product-title h2{
    font-size: 36px;
    font-weight: 700;
    color: #066b3b;
    text-transform: uppercase;
    margin: 0;
}

/* SLIDER */

.dealer-product-slider{
    position: relative;
}

/* ITEM */

.product-item{
    padding: 0 8px;
}

/* CARD */

.dealer-product-slider .product-card{
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #ececec;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    padding: 18px 16px 20px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: grid;
    min-height: 380px;
}

.dealer-product-slider .product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.07);
}

/* IMAGE */

.dealer-product-slider .product-img{
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-product-slider .product-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* CONTENT */

.dealer-product-slider .product-content h3{
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.dealer-product-slider .product-content span{
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 18px;
    font-weight: 500;
}

/* BUTTON */

.dealer-product-slider .product-btn{
    width: 138px;
    height: 40px;
    margin: auto;
    border-radius: 5px;
    background: linear-gradient(90deg, #04592f, #066b3b);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    padding: 0;
}

.dealer-product-slider .product-btn:hover{
    background: linear-gradient(90deg, #044827, #055530);
}

.dealer-product-slider .product-btn i{
    font-size: 13px;
}

/* ===
   OWL NAV
==== */

.dealer-product-slider .owl-nav{
    margin-top: 0;
}

.dealer-product-slider .owl-nav button.owl-prev,
.dealer-product-slider .owl-nav button.owl-next{
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #066b3b !important;
    color: #ffffff !important;
    font-size: 22px !important;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.dealer-product-slider .owl-nav button.owl-prev:hover,
.dealer-product-slider .owl-nav button.owl-next:hover{
    background: #044d2b !important;
}

.dealer-product-slider .owl-nav button.owl-prev{
    left: -65px;
}

.dealer-product-slider .owl-nav button.owl-next{
    right: -65px;
}

/* DOTS */

.dealer-product-slider .owl-dots{
    margin-top: 35px;
}

.dealer-product-slider .owl-dots .owl-dot span{
    width: 11px;
    height: 11px;
    margin: 5px;
    background: #cfcfcf;
    transition: 0.3s;
}

.dealer-product-slider .owl-dots .owl-dot.active span{
    width: 26px;
    border-radius: 30px;
    background: #066b3b;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1400px){

    .dealer-product-slider .owl-nav button.owl-prev{
        left: -20px;
    }

    .dealer-product-slider .owl-nav button.owl-next{
        right: -20px;
    }

}

@media(max-width: 992px){

    .product-title h2{
        font-size: 28px;
    }

}

@media(max-width: 768px){

    .dealer-product-section{
        padding: 45px 0;
    }

    .product-title{
        gap: 10px;
    }

    .product-title .line{
        width: 40px;
    }

    .product-title h2{
        font-size: 22px;
        text-align: center;
    }

    .product-content h3{
        font-size: 16px;
    }

    .dealer-product-slider .owl-nav{
        display: none;
    }

}

/* === PRODUCT RANGE END ==== */

/* ===
   GALLERY SECTION START
==== */

.gallery-section{
    width: 100%;
    padding: 0px 0px 70px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .container{
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/* TITLE */

.gallery-title{
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title h2{
    font-size: 42px;
    font-weight: 700;
    color: #066b3b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.gallery-title p{
    font-size: 18px;
    color: #444;
    max-width: 760px;
    margin: auto;
    line-height: 1.7;
}

/* FILTER */

.gallery-filter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

/* BUTTON */

.filter-btn{
    height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover{
    border-color: #066b3b;
    color: #066b3b;
}

.filter-btn.active{
    background: linear-gradient(90deg,#04592f,#066b3b);
    color: #ffffff;
    border-color: transparent;
}

/* GRID */

.gallery-grid{
      display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:16px;
}

/* ITEM */

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f8f8f8;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* FIXED HEIGHTS */

.gallery-item{
    width:100%;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    background:#f8f8f8;
    height:255px;
    width:100%;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

/* OVERLAY */

.gallery-item::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after{
    opacity: 1;
}

/* ===
   LIGHTBOX
==== */

.gallery-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.gallery-lightbox.active{
    visibility: visible;
    opacity: 1;
}

/* IMAGE */

.lightbox-image{
    max-width: 80%;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 0 35px rgba(0,0,0,0.4);
}

/* CLOSE */

.lightbox-close{
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
}

/* NAV BUTTON */

.lightbox-prev,
.lightbox-next{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover{
    background: #066b3b;
}

/* POSITION */

.lightbox-prev{
    left: 40px;
}

.lightbox-next{
    right: 40px;
}

/* HIDE */

.gallery-item.hide{
    display: none;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1200px){

    .gallery-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width: 768px){

    .gallery-section{
        padding: 50px 0;
    }

    .gallery-title h2{
        font-size: 32px;
    }

    .gallery-title p{
        font-size: 15px;
    }

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .gallery-item{
        height: 200px;
    }

    .filter-btn{
        padding: 0 20px;
        height: 46px;
        font-size: 14px;
    }

    .lightbox-image{
        max-width: 92%;
    }

    .lightbox-prev,
    .lightbox-next{
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev{
        left: 10px;
    }

    .lightbox-next{
        right: 10px;
    }

}

@media(max-width: 480px){

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-item{
        height: 240px;
    }

}

/* === GALLERY END ==== */

/* ===
   TESTIMONIAL VIDEO START
==== */

.testimonial-video-section{
    width: 100%;
    padding: 80px 0;
    background: #f6f6f6;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.testimonial-video-section .container{
    width: 92%;
    max-width: 1380px;
    margin: auto;
}

/* SECTION TITLE */

.section-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 55px;
}

.title-line{
    width: 85px;
    height: 2px;
    background: #0a6a39;
    position: relative;
}

.title-line::after{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a6a39;
    position: absolute;
    top: -3px;
    right: -2px;
}

.section-title h2{
    font-size: 56px;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
}

.section-title h2 span{
    color: #ef2026;
}

/* VIDEO CARD */

.video-card{
    position: relative;
}

.video-thumb{
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* IMAGE */

.video-thumb img{
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* HOVER */

.video-card:hover img{
    transform: scale(1.03);
}

/* PLAY BUTTON */

.play-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background: hsl(347deg 100% 50% / 50%);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    z-index: 2;
}

/* PLAY TRIANGLE */

.play-btn i{
    color: #ffffff;
    font-size: 25px;
    margin-left: 0;
}

/* HOVER */

.play-btn:hover{
    background: #0a6a39;
    transform: translate(-50%,-50%) scale(1.08);
}

/* OWL */

.testimonial-video-slider .owl-stage{
    display: flex;
}

.testimonial-video-slider .owl-item{
    opacity: 1;
}

/* NAV */

.testimonial-video-slider .owl-nav{
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.testimonial-video-slider .owl-nav button{
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background: #0a6a39 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    transition: 0.3s;
}

.testimonial-video-slider .owl-nav button:hover{
    background: #ef2026 !important;
}

/* DOTS */

.testimonial-video-slider .owl-dots{
    margin-top: 25px;
    text-align: center;
    display: none;
}

.testimonial-video-slider .owl-dot span{
    width: 11px !important;
    height: 11px !important;
    margin: 5px !important;
    background: #c7c7c7 !important;
    transition: 0.3s;
}

.testimonial-video-slider .owl-dot.active span{
    background: #0a6a39 !important;
    width: 28px !important;
    border-radius: 30px !important;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1400px){

    .video-thumb img{
        height: 600px;
    }

}

@media(max-width: 1200px){

    .section-title h2{
        font-size: 48px;
    }

    .video-thumb img{
        height: 540px;
    }

}

@media(max-width: 991px){

    .testimonial-video-section{
        padding: 65px 0;
    }

    .section-title{
        margin-bottom: 40px;
    }

    .section-title h2{
        font-size: 40px;
    }

    .video-thumb img{
        height: 520px;
    }

}

@media(max-width: 767px){

    .section-title{
        gap: 12px;
    }

    .title-line{
        width: 45px;
    }

    .section-title h2{
        font-size: 32px;
    }

    .video-thumb img{
        height: 480px;
    }

    .play-btn{
        width: 85px;
        height: 85px;
        border-radius: 28px;
    }

    .play-btn i{
        font-size: 32px;
    }

}

@media(max-width: 575px){

    .testimonial-video-section{
        padding: 55px 0;
    }

    .section-title h2{
        font-size: 28px;
    }

    .video-thumb img{
        height: 440px;
    }

}

/* ===
   TESTIMONIAL VIDEO SECTION END
==== */

.whatsapp-testimonial-section{
    padding:80px 0;
    background:#fff;
}

.whatsapp-testimonial-section .container{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#0a7a42;
    font-weight:600;
    font-size:18px;
}

.section-title h2{
    font-size:58px;
    font-weight:800;
    margin:10px 0;
    color:#111;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.testimonial-item{
    padding:15px;
}

.chat-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    border:2px solid #d8eadf;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.chat-header{
    background:#06733f;
    padding:14px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.user-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.user-info img{
    width:55px!important;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.user-info h4{
    margin:0;
    color:#fff;
    font-size:20px;
}

.user-info span{
    color:#e6f5eb;
    font-size:13px;
}

.chat-icons{
    color:#fff;
    display:flex;
    gap:18px;
    font-size:18px;
}

.chat-body{
    background:#f6f3ee;
    padding:20px;
    min-height:340px;
}

.msg{
    max-width:85%;
    padding:15px;
    border-radius:16px;
    margin-bottom:15px;
    position:relative;
    font-size:17px;
    line-height:1.6;
}

.msg small{
    display:block;
    text-align:right;
    margin-top:8px;
    color:#777;
}

.receive{
    background:#fff;
}

.send{
    background:#dff4cf;
    margin-left:auto;
}

.client-rating{
    text-align:center;
    color:#ffc107;
    font-size:28px;
    margin-top:18px;
}

.client-location{
    text-align:center;
    font-size:16px;
    color:#333;
}

.whatsapp-testimonial-slider .owl-nav button{
    width:55px;
    height:55px;
    border-radius:50%!important;
    background:#06733f!important;
    color:#fff!important;
    font-size:26px!important;
}

.whatsapp-testimonial-slider .owl-nav{
    margin-top:25px;
    text-align:center;
}

.whatsapp-testimonial-slider .owl-dots{
    margin-top:20px;
}

.whatsapp-testimonial-slider .owl-dot span{
    width:12px;
    height:12px;
}

.whatsapp-testimonial-slider .owl-dot.active span{
    background:#06733f!important;
}

@media(max-width:991px){

    .section-title h2{
        font-size:40px;
    }

    .chat-body{
        min-height:auto;
    }

}