@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}

/*
Dark Green: #1F4D36 
Mid Grey: #505b67 
Light Grey: #f4f4f4 
Light Green: #6FCF97
font-family: "Montserrat", sans-serif; (header)
font-family: "Open Sans", sans-serif; (text)
*/
.g-recaptcha {
margin-bottom: 10px;
}
/* HEADER.................................................MOB */	
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  transition: box-shadow 0.3s ease;
}
.sticky-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* MOBILE HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 10px;
  
}

.header-icon {
  width: 44px;
  height: 44px;
  background-color: #1F4D36;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.burger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-line {
  width: 20px;
  height: 2px;
  background-color: white;
}

.header-logo img {
  height: 80px;
  width: auto;
}

.phone img {
  width: 24px;
  height: 24px;
}

/* MOBILE MENU */
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
width: 75%;
max-width: 340px;
height: 100%;
padding: 80px 20px 20px;
background: #1F4D36;
box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
overflow-y: auto;
z-index: 1001;
transition: left 0.3s ease;
font-family: 'Montserrat', sans-serif;
box-sizing: border-box;
}

.mobile-menu.open {
left: 0;
}

.mobile-menu ul {
margin: 0;
padding: 0;
list-style: none;
}

.mobile-menu li {
margin: 0;
padding: 0;
}

.mobile-menu a {
display: block;
padding: 5px 16px;
color: #ffffff;
text-decoration: none;
font-size: 18px;
font-weight: 700;
line-height: 1.4;
border-radius: 6px;
transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu a:hover {
background: #6FCF97;
color: #ffffff;
}

.mobile-submenu {
margin: 6px 0 10px;
padding: 0;
list-style: none;
}

.mobile-submenu a {
padding: 5px 16px 5px 28px;
font-size: 16px;
font-weight: 500;
color: #dbe4ef;
}

.mobile-submenu a:hover {
background: #6FCF97;
color: #ffffff;
}

.close-menu {
position: absolute;
top: 18px;
right: 20px;
font-size: 28px;
line-height: 1;
font-weight: 700;
color: #ffffff;
cursor: pointer;
transition: transform 0.2s ease, color 0.25s ease;
}

.close-menu:hover {
color: #6FCF97;
transform: scale(1.08);
}

@media (max-width: 480px) {
.mobile-menu {
width: 85%;
padding: 70px 16px 20px;
}

.mobile-menu a {
padding: 5px 14px;
font-size: 18px;
}

.mobile-submenu a {
padding: 9px 14px 9px 24px;
font-size: 15px;
}

.close-menu {
top: 16px;
right: 16px;
font-size: 26px;
}
}
/* DESKTOP HEADER */
.desktop-header {
  display: none;
}

@media (min-width: 900px) {
  .mobile-header,
  .mobile-menu {
    display: none;
  }

  .desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: white;
	max-width: 1300px;
	margin: 0 auto;
  }

  .desktop-logo img {
    height: 80px;
  }

  .desktop-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
  }
.desktop-nav li {
  position: relative;
}
  .desktop-nav li a {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
  }
  .desktop-nav li a:hover {
    color: #6FCF97;
  }
  }

  .desktop-phone .phone-icon {
    width: 44px;
    height: 44px;
    background-color: #6FCF97;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }

  .desktop-phone:hover {
  color: #fff;
  }
}

 /* Dropdown Styles */
  .desktop-nav .dropdown {
    position: relative;
  }

  .desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1F4D36;
    padding: 10px 0;
    display: none;
    list-style: none;
    min-width: 220px;
    z-index: 1002;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }

  .desktop-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    white-space: nowrap;
  }

  .desktop-nav .dropdown-menu li a:hover {
    background-color: #6FCF97;
    color: #fff;
  }

  .desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
.header-btn {
display:inline-block;
padding:10px 20px;
font-size:13px;
font-weight:600;
text-decoration:none;
font-family:"Montserrat",sans-serif;
text-transform: uppercase;
border-radius:10px;
transition:all 0.3s ease;
transform:translateY(0);
	background:#1F4D36;
	color: #fff;
	cursor: pointer;
}

/* Quote button (primary CTA) */
.header-btn:hover {
background:#6FCF97;
color:#fff;
}

/* HERO.................................................MOB */	

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5); /* dark box behind text */
  padding: 10px 15px;
  max-width: 850px;
  color: #fff;
  margin-bottom: 25px;
  border-radius: 12px;
}

.hero-content h1 {
font-size: 36px;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
font-family: 'Montserrat', sans-serif;
}

.hero-content p {
  font-size: 18px;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
}
@media only screen and (min-width: 500px) {
.hero-content h1 {
font-size: 40px;
}
}
@media only screen and (min-width: 800px) {
.hero-content h1 {
font-size: 48px;
}
}
.hero-buttons{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
margin-top:30px;
}

.hero-btn-quote,
.hero-btn-phone{
display:inline-block;
padding:14px 32px;
font-size:1.1rem;
font-weight:600;
text-decoration:none;
font-family:"Montserrat",sans-serif;
border-radius:10px;
transition:all 0.3s ease;
transform:translateY(0);
	cursor: pointer;
box-shadow: 0 10px 18px rgba(0,0,0,0.5);
}

/* Quote button (primary CTA) */
.hero-btn-quote{
background:#6FCF97;
color:#fff;
}

.hero-btn-quote:hover{
background:#1F4D36;
color:#fff;
transform:translateY(-3px);
}

/* Phone button (secondary CTA) */
.hero-btn-phone{
background:#1F4D36;
color:#fff;
}

.hero-btn-phone:hover{
background:#6FCF97;
color:#fff;
transform:translateY(-3px);
}

/* Desktop layout */
@media (min-width:500px){
.hero-buttons{
flex-direction:row;
justify-content:center;
}
}

.hero-trust {
margin-top:25px;
background:rgba(0,0,0,0.4);
padding:2px 14px;
border-radius:012px;
display:inline-block;
}
.hero-trust img {
max-width: 120px;
display:inline-block;
}
.hero-trust p {
color:#fff;
font-size:15px;
line-height: 25px;
font-weight:500;
opacity:1;
letter-spacing:0.5px;  font-family: 'Montserrat', sans-serif;

}
/* CONTENT.................................................MOB */
.content{
padding:60px 20px;
background-color: #fff;
}
.content-inner{
font-family: "Open Sans", sans-serif;
color:#333333;
max-width:800px;
margin:0 auto;
}

.content h2{
font-size: 36px;
font-family: "Montserrat", sans-serif;
margin: 0 0 15px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 4px;
color: #1F4D36;
}

.content h3{
font-size:24px;
font-family: "Montserrat", sans-serif;
	letter-spacing:2px;
text-transform:uppercase;
margin:30px 0 12px 0;
color:#1F4D36;
font-weight:600;
}

.content p{
margin:0 0 18px 0;
font-size:17px;
line-height: 27px;
color:#4a5568;
font-family: "Open Sans", sans-serif;
}

.content ul{
padding-left:20px;
}

.content li{
font-size:17px;
line-height: 27px;
color:#4a5568;
}

.content a{
color:#6FCF97;
text-decoration:none;
transition:all 0.25s ease;
}

.content a:hover{
color:#154A82;
}

/* spacing tweaks */

@media (max-width:550px){
.content{
padding:40px 16px;
}

.content h2{
font-size:26px;
letter-spacing:1px;
}

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

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

.content li{
font-size:15px;
}
}

/* Container */
.body-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 40px;
}

/* Shared button styling */
.body-call,
.body-email {
display: inline-block;
padding: 10px 20px;
font-size: 1.05rem;
font-weight: 600;
text-decoration: none;
font-family: "Montserrat", sans-serif;
border-radius: 10px;
transition: all 0.3s ease;
transform: translateY(0);
cursor: pointer;
letter-spacing: 1px;
text-transform: uppercase;
color: #fff !important;
box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Primary CTA (Call) */
.body-call {
  background: #6FCF97;
}

.body-call:hover {
  background: #1F4D36;
  transform: translateY(-3px);
  color: #fff;
}

/* Secondary CTA (Email) */
.body-email {
  background: #1F4D36;
}

.body-email:hover {
  background: #6FCF97;
  transform: translateY(-3px);
  color: #fff;
}

/* Desktop layout */
@media (min-width: 500px) {
  .body-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
}


.body-form {
  flex: 1;
	max-width: 600px;
}

.body-form form {
  display: flex;
  flex-direction: column;margin-top: 20px;
}

.body-form label {
  margin-bottom: 5px;
  font-weight: 500;
font-family: "Montserrat", sans-serif;
}

.body-form input,
.body-form textarea {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #3a4549;
  background-color: transparent;
  
  margin-bottom: 20px;
font-family: "Montserrat", sans-serif;
}

.body-form input::placeholder,
.body-form textarea::placeholder {
 color: #3a4549;
}

.body-form button {
  padding: 12px 20px;
  background-color: #6FCF97;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}
.body-form button:hover {
  background-color: #3a4549;color: #fff;
}


.trust-badges {
  padding: 40px 20px 30px;
  text-align: center;
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
}

.trust-badges__inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust-badges__logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.trust-badges__logo-which {
max-width: 120px;
  width: auto;
}
.trust-badges__logo-cat {
max-width: 170px;
  width: auto;
}
.trust-badges__text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

@media (min-width: 500px) {
.trust-badges__logo-which {
max-width: 160px;
}
.trust-badges__logo-cat {
max-width: 250px;
}
}
/* =========================================
   REASONS SECTION — CLEAN, BALANCED, PREMIUM
========================================= */

.reasons {
  width: 100%;
  background: #1F4D36;
  padding: 40px 20px 60px;
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

.reasons-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reasons-heading {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.reasons-heading h2 {
font-size: 36px;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
	color: #fff;

}

.reasons-heading p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

/* =========================================
   GRID
========================================= */

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

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

.reasons-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 55px 25px 35px;
  position: relative;
  box-shadow: 0 12px 15px rgba(0,0,0,0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reasons-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* =========================================
   ORANGE LINE — NOW BELOW THE ICON
========================================= */

.reasons-top-line {
  position: absolute;
  top: 0px; /* moved down so it sits BELOW the icon */
  left: 0;
  width: 100%;
  height: 6px;
  background: #6FCF97;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

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

.reasons-icon {
  width: 100px;
  height: 100px;
  background: #1F4D36;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border: 3px solid #ffffff;
  z-index: 2;
}

.reasons-icon img {
  width: 70px;
  height: 70px;
}

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

.reasons-card h3 {
  margin-top: 55px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #1F4D36;
  font-weight: 600;
}

.reasons-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.55;
}

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

@media (max-width: 1000px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reasons {
    padding: 30px 15px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reasons-heading h2 {
    font-size: 1.9rem;
  }

  .reasons-heading p {
    font-size: 1rem;
  }

  .reasons-card {
    padding: 50px 20px 30px;
  }

  .reasons-card h3 {
    font-size: 1.15rem;
  }
}

/* SERVICES.................................................MOB */	
.services-overview {
width: 100%;
font-family: 'Montserrat', sans-serif;
}

.services-overview-inner {
width: 100%;
margin: 0 auto;
}

.services-group {
width: 100%;
padding: 80px 20px;
box-sizing: border-box;
background: #f4f4f4;
border-top: 1px solid #e6e6e6;
}

.services-group-heading {
max-width: 850px;
margin: 0 auto 40px;
text-align: center;
}

.services-group-heading h2 {
font-size: 36px;
margin: 0 0 15px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 4px;
color: #1F4D36;
}

.services-group-heading p {
margin: 0;
font-size: 18px;
line-height: 1.7;
color: #505b67;
font-family: "Open Sans", sans-serif;
}

.services-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}

.service-card {
display: flex;
flex-direction: column;
width: 100%;
background: #ffffff;
border-radius: 10px;
overflow: hidden;
text-decoration: none;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-sizing: border-box;
}

.service-card:hover {
transform: translateY(-6px);
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.service-card-image {
width: 100%;
aspect-ratio: 1.35 / 1;
overflow: hidden;
background: #d9d9d9;
}

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

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

.service-card-body {
padding: 22px 18px 24px;
display: flex;
flex-direction: column;
flex-grow: 1;
box-sizing: border-box;
}

.service-card-body h3 {
margin: 0 0 12px;
font-size: 22px;
line-height: 1.3;
font-weight: 600;
color: #1F4D36;
}

.service-card-body p {
margin: 0 0 18px;
font-size: 15px;
line-height: 1.7;
color: #505b67;
flex-grow: 1;
}

.service-btn {
display: inline-block;
align-self: flex-start;
margin-top: auto;
padding: 10px 18px;
background: #1F4D36;
color: #ffffff;
font-size: 14px;
font-weight: 600;
line-height: 1;
border-radius: 6px;
text-decoration: none;
transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
background: #6FCF97;
transform: translateY(-2px);
}

@media screen and (max-width: 1100px) {
.services-group {
padding: 70px 20px;
}

.services-group-heading h2 {
font-size: 34px;
}

.services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media screen and (max-width: 600px) {
.services-group {
padding: 60px 15px;
}

.services-group-heading {
margin: 0 auto 30px;
}

.services-group-heading h2 {
font-size: 28px;
letter-spacing: 1px;
}

.services-group-heading p {
font-size: 16px;
line-height: 1.6;
}

.services-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.service-card {
border-radius: 8px;
}

.service-card-body {
padding: 16px 14px 18px;
}

.service-card-body h3 {
margin-bottom: 10px;
font-size: 18px;
}

.service-card-body p {
margin-bottom: 14px;
font-size: 14px;
line-height: 1.6;
}

.service-btn {
padding: 9px 14px;
font-size: 13px;
}
}

@media screen and (max-width: 520px) {
.services-group {
padding: 50px 12px;
}

.services-group-heading h2 {
font-size: 24px;
}

.services-group-heading p {
font-size: 15px;
}

.services-grid {
gap: 14px;
}

.service-card-body {
padding: 14px 12px 16px;
}

.service-card-body h3 {
font-size: 18px;
}

.service-card-body p {
font-size: 13px;
line-height: 1.5;
}

.service-btn {
padding: 8px 12px;
font-size: 12px;
}
}
/* testimonials.................................................MOB */	

.testimonials{
font-family:"Montserrat", sans-serif;
background: #1F4D36;
padding: 40px 20px;
text-align: center;

box-shadow:0 -10px 20px rgba(0,0,0,0.2);
}
.testimonials h2{
font-size: 36px;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
	color: #fff;
}
@media (max-width:550px){
.testimonials h2{
font-size:34px;
line-height: 44px;
}
}
.testimonials p {
      margin-bottom: 18px;
	  font-size: 18px;
	  line-height: 30px;
	  color: #fff;
	  max-width: 900px;
	  margin: 0 auto;
	  text-align: center;
	  padding-bottom: 40px;
	  font-family: "Open Sans", sans-serif;
    }
.viewport{
max-width:1300px;
margin:0 auto;
overflow:hidden; /* simplify this */
padding:0 20px 30px; /* 👈 add bottom space */
box-sizing:border-box;
}

.track{
display:flex;
gap:20px; /* replaces slide margins */
transition:transform 0.6s ease;
will-change:transform;
}

.slide{
flex:0 0 100%;
border:2px solid #fff;
padding:40px 30px 20px;
border-radius:10px;
text-align:center;
box-sizing:border-box;
background-color: rgba(255,255,255,0.05);
box-shadow: 0 8px 10px rgba(0, 0, 0, 0.7);
}

@media (min-width:700px){
.slide{
flex:0 0 calc((100% - 20px) / 2); /* 2 per row with 1 gap */
}
}
@media (min-width:1000px){
.slide{
flex:0 0 calc((100% - 20px) / 3); /* 2 per row with 1 gap */
}
}

.test-img{
width:100px;
height:100px;
margin:0 auto 25px;
background-image:url("../images/testimonial.webp");
background-size:cover;
background-position:center;
border-radius:50%;
}

.slide p{
font-size:17px;
font-weight:500;
color:#fff;
line-height:1.5;
margin:0 0 15px 0;
}

.author{
font-size:18px;
font-weight:700;
color:#fff;
}

.controls{
text-align:center;
margin-top:30px;
}

.arrow{
background:transparent;
border:2px solid #fff;
color:#fff;
padding:12px 22px;
font-size:22px;
font-weight:700;
cursor:pointer;
border-radius:4px;
margin:0 10px;
transition:0.3s ease;
}

.arrow:hover{
background:#777;
color:#fff;
}



/* BEFORE / AFTER.................................................MOB */	
.before-after,
.before-after-2 {
padding: 60px 20px 60px;
background:#fff;
font-family: "Montserrat", sans-serif;
}

.before-after h2,
.before-after-2 h2 {
font-size: 36px;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
	color: #1F4D36;
	text-align: center;
}


.before-after p,
.before-after-2 p {
margin-bottom: 18px;
	  font-size: 18px;
	  line-height: 30px;
	  color: #444;
	  max-width: 900px;
	  margin: 0 auto;
	  text-align: center;
	  padding-bottom: 40px;
	  font-family: "Open Sans", sans-serif;
}

.before-after-wrapper,
.before-after-wrapper-2 {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
box-sizing: border-box;
padding-top: 20px;
}

.before-after-container,
.before-after-container-2 {
position: relative;
width: 100%;
height: auto;
aspect-ratio: 2 / 2;
overflow: hidden;
margin-bottom: 0;
box-sizing: border-box;
}

/* Show only first 3 on mobile */
.before-after-container:nth-child(n+3) {
    display: none;
}

/* .before-after-2 shows ALL images */
.before-after-container-2:nth-child(n+3) {
    display: block;
}

.before-after-wrapper h3,
.before-after-wrapper-2 h3 {
margin-bottom: 15px;
}

.before-after-slider,
.before-after-slider-2 {
position: absolute;
top: 0;
left: 00;
width: 100%;
height: 100%;
}

.before-image,
.before-image-2,
.after-image,
.after-image-2 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}

.after-image,
.after-image-2 {
clip-path: inset(0 0 0 50%);
}

.slider,
.slider-2 {
position: absolute;
top: 0;
left: 50%;
width: 5px;
height: 100%;
background-color: #ffffff;
cursor: ew-resize;
}

.handle,
.handle-2 {
position: absolute;
top: 50%;
left: -18px;
width: 40px;
height: 40px;
background-color: transparent;
border-radius: 50%;
border-color: #fff;
border-style: solid;
border-width: 5px;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
cursor: ew-resize;
box-sizing: border-box;
}

.left-arrow,
.left-arrow-2,
.right-arrow,
.right-arrow-2 {
position: absolute;
width: 6px;
height: 6px;
border-top: 4px solid #fff;
border-right: 4px solid #fff;
}

.left-arrow,
.left-arrow-2 {
transform: rotate(-135deg);
left: 5px;
}

.right-arrow,
.right-arrow-2 {
transform: rotate(45deg);
right: 5px;
}

.hover-label,
.hover-label-2 {
position: absolute;
color: #ffffff;
font-size: 1.2em;
padding: 5px 10px;
display: none;
z-index: 2;
}

.before-label,
.before-label-2 {
top: 50%;
left: 15px;
padding: 10px;
background-color: #222;
border-radius: 5px;
transform: translateY(-50%);
}

.after-label,
.after-label-2 {
top: 50%;
right: 15px;
padding: 10px;
background-color: #222;
border-radius: 5px;
transform: translateY(-50%);
}

.before-after-container:hover .before-label,
.before-after-container:hover .after-label,
.before-after-container-2:hover .before-label-2,
.before-after-container-2:hover .after-label-2 {
display: block;
}

@media (min-width: 800px) {
.before-after-wrapper,
.before-after-wrapper-2 {
grid-template-columns: repeat(3, 1fr);
}

/* Show first 4 only from 800px upwards */
.before-after-container:nth-child(4) {
        display: block;
    }

    /* .before-after-2 shows ALL images */
    .before-after-container-2:nth-child(4) {
        display: block;
    }
}

@media (max-width: 600px) {
.before-after-container,
.before-after-container-2 {
aspect-ratio: 1 / 1;
}

.hover-label,
.hover-label-2 {
font-size: 1em;
}

.before-label,
.after-label,
.before-label-2,
.after-label-2 {
padding: 8px;
}
}


/* .........3 STEP PROCESS.................MOB */	

.process {
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
	padding-top:30px;
	padding-bottom:40px;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
font-family: "Montserrat", sans-serif;
}
.process h2 {
font-size: 36px;
  margin-bottom: 35px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
	color: #1F4D36;
	text-align: center;
}

.process-container {
    display: flex;
    flex-wrap: wrap; /* Ensure items wrap on small screens */
    justify-content: space-around;
    align-items: stretch;
    padding: 15px;
    gap: 20px;
    background-color: #ffffff; /* Background color for the container */
    border-radius: 8px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to the container */
}

.process-step {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 100%; /* Make each step full-width on small screens */
    max-width: none; /* Remove max-width constraint */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.step-icon img {
    width: 120px; /* Increase image size */
    height: 120px; /* Increase image size */
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 22px;
	line-height:28px;
    margin: 15px 0;
    color: #666;
	letter-spacing:1px;
}

.step-number {
    font-size: 40px; /* Increase the font size of the number */
    font-weight: bold; /* Make the number bold */
    color: #1F4D36; /* Change the color of the number */
    margin-right: 5px; /* Add some space between the number and the text */
}

.process-step p {
    font-size: 1em;
    color: #666;
    line-height: 1.5em;
	lex-grow: 1; 
}
@media only screen and (min-width: 700px) {
.process-step {
    flex: 1 1 30%; /* Make each step full-width on small screens */
    max-width: 380px; /* Remove max-width constraint */
}
}

/* .........AREAS.................MOB */	
.areas{
padding:70px 20px;
background:#fff;
font-family: "Montserrat", sans-serif;
}

.areas-content{
max-width:1300px;
margin:0 auto;
display:grid;
grid-template-columns:minmax(0,1.1fr) minmax(320px,0.9fr);
gap:40px;
align-items:center;
}

.areas-text h2{
font-size: 36px;
  margin-bottom: 35px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
	color: #1F4D36;
	text-align: left;
}

.areas-intro{
margin:0 0 26px 0;
font-size:18px;
line-height:1.7;
color:#4f5b6f;
max-width:760px;
}

.areas-list{
display:flex;
flex-wrap:wrap;
gap:12px;
margin:0 0 24px 0;
}

.area-item{
padding:12px 18px;
background:#ffffff;
border-radius:999px;
font-size:16px;
line-height:1.2;
font-weight:600;
color:#1e2f4f;
box-shadow:0 10px 24px rgba(30,47,79,0.2);
}

.areas-note{
margin:0;
font-size:16px;
line-height:1.7;
color:#5f6b7c;
max-width:760px;
}

.areas-map{
display:flex;
justify-content:center;
}

.map-card{
width:100%;
max-width:500px;
background:#ffffff;
border-radius:24px;
padding:20px;
box-shadow:0 18px 36px rgba(30,47,79,0.10);
overflow:hidden;
}

.map-image{
display:block;
width:100%;
height:auto;
border-radius:18px;
}

@media (max-width:980px){
.areas-content{
grid-template-columns:1fr;
gap:30px;
}

.areas-text h2{
font-size:36px;
}

.areas-intro{
font-size:17px;
}
}

@media (max-width:550px){
.areas{
padding:50px 16px;
}

.areas-text h2{
font-size:28px;
margin:0 0 14px 0;
letter-spacing:1px;
}

.areas-intro{
font-size:16px;
margin:0 0 20px 0;
}

.areas-list{
gap:10px;
margin:0 0 18px 0;
}

.area-item{
padding:10px 14px;
font-size:14px;
}

.areas-note{
font-size:15px;
}

.map-card{
padding:14px;
border-radius:18px;
}

.map-image{
border-radius:14px;
}
}


/* CONTACT.................................................MOB */	

.contact {
  background:#1F4D36;
  color: #fff;
  padding: 60px 20px;
font-family: "Montserrat", sans-serif;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
text-align:left;
  font-size:30px;
  margin:0 0 20px 0;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}
.contact-info p {
font-size: 18px;
line-height: 30px;
}
.contact-info a {
  color: #f4f4f4;
  text-decoration: none;
  transition: 0.5s;
}
.contact-info a:hover {
  color: #6FCF97;
  text-decoration: none;
  transition: 0.5s;
}
.contact-form {
  flex: 1;
}
.contact-form h2 {
text-align:left;
  font-size:30px;
  margin:0 0 20px 0;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}
.contact-form form {
  display: flex;
  flex-direction: column;margin-top: 20px;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  margin-bottom: 20px;
 font-family: "Montserrat", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #f4f4f4;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #6FCF97;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f4f4f4;
  color: #1F4D36;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* footer.................................................MOB */	

.footer {
	width:100%;
	height:auto;
	background-color:#6FCF97;
	padding-top:5px;
	padding-bottom:5px;
}
.footer-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: "Montserrat", sans-serif;
}
.footer-left {
	color:#fff;
	text-align:center;
	font-size:16px;
	box-sizing:border-box;
}
.footer-right {
	color:#fff;
	text-align:center;
	font-size:16px;
	box-sizing:border-box;
}
@media only screen and (min-width: 700px) {
	.footer-left {
		width:50%;
		float:left;
	text-align:left;
}
.footer-right {
	width:50%;
		float:right;
	text-align:right;
}
}

/* FAQ.................................................MOB */	

/* W9................FAQ...................MOB */	


.faq-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;

}

.faq-item {
  margin-bottom: 5px;
}

.faq-question {
font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #fff !important;
  margin: 0;
  background-color: #1F4D36;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}

.faq-answer {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color:#333;
  line-height:30px;
  display: none;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Styling for the + and - toggle sign */
.toggle-sign {
  float: right;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

/* GALLERY................................... */
.media-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}

.media-item {
cursor: pointer;
overflow: hidden;
border-radius: 8px;
}

.media-item img,
.media-item video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.media-lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}

.media-lightbox.active {
display: flex;
}

.media-lightbox-content img,
.media-lightbox-content video {
max-width: 90vw;
max-height: 80vh;
}

.media-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 30px;
background: none;
color: #fff;
border: none;
cursor: pointer;
}

.media-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 40px;
background: none;
color: #fff;
border: none;
cursor: pointer;
}

.media-prev { left: 20px; }
.media-next { right: 20px; }

.media-item {
position: relative;
overflow: hidden;
}

.media-item[data-type="video"]::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 55px;
height: 55px;
background: rgba(0,0,0,0.6);
border-radius: 50%;
z-index: 2;
pointer-events: none;
}

.media-item[data-type="video"]::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-40%, -50%);
width: 0;
height: 0;
border-left: 18px solid #fff;
border-top: 11px solid transparent;
border-bottom: 11px solid transparent;
z-index: 3;
pointer-events: none;
}

.media-item:hover img,
.media-item:hover video {
transform: scale(1.05);
transition: transform 0.3s ease;
}

.media-item[data-type="video"]:hover::before {
background: rgba(0,0,0,0.75);
}
/* body-testimonials.................................................MOB */		
.body-testimonials-wrapper {
      max-width: 1400px;
      margin: 0 auto;
	padding: 40px 0px 60px;
    }

   .body-testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

    .body-testimonial {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: block;
      position: relative;
		font-family: "Montserrat", sans-serif;
    }

    .body-testimonial h3 {
      font-size: 16px;
      margin: 0 0 5px;
	  color: #1F4D36;
    }

    .body-testimonials-stars {
      width: 130px;
      margin: 5px 0 10px;
    }
    .body-testimonial p {
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }
.body-testimonials-location {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}
    .body-testimonials-see-more-wrapper {
      text-align: center;
      margin-top: 20px;
    }

    .body-testimonials-see-more-btn {
      background: #1F4D36;
		width: 100%;
      color: #fff;
		font-size: 18px;
		letter-spacing: 1px;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .body-testimonials-see-more-btn:hover {
      background: #6FCF97;
    }

.body-testimonials-heading {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  color: #1F4D36;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Responsive columns */

@media (min-width: 600px) {
  .body-testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .body-testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* popup.................................................MOB */	

.popup {
display: none;
position: fixed;
inset: 0;
z-index: 9999;
font-family: "Montserrat", sans-serif;
overflow: auto;
}

.popup-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);
}

.popup-box {
position: relative;
z-index: 10000;
max-width: 600px;
background: #ffffff;
margin: 60px auto;
padding: 15px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
max-height: calc(100vh - 120px);
overflow-y: auto;
text-align: center;
box-sizing: border-box;
}

.popup-logo {
display: block;
max-width: 150px;
height: auto;
margin: 0 auto 15px;
}

.popup-box h2 {
margin: 0;
font-size: 26px;
letter-spacing: 3px;
line-height: 1.2;
text-transform: uppercase;
color: #1F4D36;
}

.popup-subheading {
margin: 15px 0 20px;
padding: 15px;
background: #f4f4f4;
border-radius: 6px;
font-size: 15px;
line-height: 1.5;
color: #010203;
}

.popup-form {
text-align: left;
}

.popup-form input,
.popup-form textarea {
width: 100%;
padding: 10px 12px;
margin-bottom: 12px;
border: 1px solid #ccc;
border-radius: 6px;
font-family: "Montserrat", sans-serif;
font-size: 15px;
color: #010203;
background: #ffffff;
box-sizing: border-box;
}

.popup-form textarea {
resize: vertical;
min-height: 110px;
}

.popup-form input:focus,
.popup-form textarea:focus {
outline: none;
border-color: #6FCF97;
box-shadow: 0 0 0 3px rgba(242, 111, 5, 0.12);
}

.popup-form .g-recaptcha {
margin-bottom: 15px;
}

.popup-form button {
display: block;
width: 100%;
padding: 12px;
margin-bottom: 0;
border: none;
border-radius: 6px;
background: #1F4D36;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}

.popup-form button:hover {
background: #6FCF97;
transform: translateY(-2px);
}

.popup-close {
position: absolute;
top: 12px;
right: 15px;
background: none;
border: none;
padding: 0;
font-size: 24px;
line-height: 1;
color: #1F4D36;
cursor: pointer;
transition: color 0.3s ease, transform 0.2s ease;
}

.popup-close:hover {
color: #6FCF97;
transform: scale(1.05);
}

@media (max-width: 480px) {
.popup-box {
width: 90%;
margin: 30px auto;
padding: 20px;
max-height: calc(100vh - 60px);
}

.popup-logo {
max-width: 150px;
margin-bottom: 12px;
}

.popup-box h2 {
font-size: 22px;
letter-spacing: 2px;
}

.popup-subheading {
font-size: 14px;
padding: 12px;
margin: 12px 0 18px;
}

.popup-form input,
.popup-form textarea {
font-size: 14px;
}

.popup-form button {
font-size: 15px;
}

.popup-close {
top: 10px;
right: 12px;
font-size: 22px;
}
}