/*
Theme Name: Everleaf
Theme URI: http://localhost/everleaf
Author: I.R.
Description: Custom theme for Everleaf project
Version: 1.0
*/
/* Navbar */
/*
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Regular.woff2") format("woff2"),
    url("fonts/Nexa-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;

}
  *
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Trial-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
  */
@font-face {
  font-family: "Nexa";
  src: url("fonts/NEXAREGULAR.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Bold.woff2") format("woff2"),
    url("fonts/Nexa-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Heavy.woff") format("truetype");
  font-weight: bold;
  font-weight: 900;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1 !important;
  font-family: "Nexa", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  overflow-x: hidden;
  touch-action: manipulation;
}
p {
  font-family: "Nexa", sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 15px 0;
}

body {
	margin-top:40px !important;
}



:root {
	--evl-brand-color: #a1d183;
	--evl-text-dark: #2d3436;
	--evl-text-light: #636e72;
	--evl-white: #ffffff;
	--evl-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}


/* 4️⃣ H1 */
h1 {
  font-family: "Nexa", sans-serif;
  font-weight: 900; /* Heavy */
  font-style: normal;
  font-size: 50px;
  line-height: 1.2;
  margin: 0 0 30px 0;
}
.custom-container {
  padding-left: clamp(2.5rem, 6.897vw + 0.56rem, 8.75rem);
  padding-right: clamp(2.5rem, 6.897vw + 0.56rem, 8.75rem);
  margin: 0 auto;
  max-width: 1920px;
}

body,
html {
  margin: 0;
  padding: 0;
}

.site,
.content,
main {
  padding: 0 !important;
  margin: 0 !important;
}

/* Navbar */
.navbar {
  background: #145459;
  height: 153px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* left | center | right */
  align-items: center;
  width: 90%;
  margin: auto;
  overflow: visible;
}

/* Center block (logo + menu) */
.center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: normal;
  /* vertically center logo + menu */
  height: 165px;
  /* same as navbar height */
  overflow: visible;
  margin: -7px;
}

.logo img {
  width: 300px;
  margin-bottom: 8px;
  /* small gap between logo and menu */
  max-height: 100px;
  margin-left: -35px;
  /* prevents logo from overflowing */
} 

.optional-heading {
    text-align: center;
    color: #a1d183;
    margin-bottom: 95px;
	font-size: 20px;
}

.page-template-page-case-study-php .overlay {
	    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgb(255 255 255 / 0%)) !important;
}

.optional-heading i {
    margin-right: 12px;
}



.page-template-page-case-study-php .hero-content {
    position: absolute;
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%);
    max-width: 100% !important;
    width: 100% !important;
	text-align: center;
}

.page-template-page-case-study-php .hero {
	    background-position: 100% 35% !important;
	    min-height: 60vh;
}

.main-nav .menu {
  display: flex;
  justify-content: center;
  /* center horizontally under logo */
  gap: 30px;
  /* spacing between links */
  list-style: none;
  /* remove dots */
  padding: 0;
  margin: 3px;
}

.main-nav .menu li {
  display: inline-block;
  /* horizontal layout */
}
/*
.main-nav .menu li a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  text-decoration: none;
  font-family: "Nexa", sans-serif;
}
*/
.main-nav .menu li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400; /* REGULAR */
  font-style: normal;
  text-decoration: none;
  font-family: "Nexa", sans-serif;
}


/* Dropdown (desktop) */
.main-nav .menu > li {
  position: relative;
}

.main-nav .menu li.menu-item-has-children > a::after {
  content: "\25BE";
  /* small down caret */
  margin-left: 8px;
  font-size: 14px;
}

.main-nav .menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #145459;
  padding: 10px 0;
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}

.main-nav .menu li:hover > .sub-menu {
  display: block;
}

.main-nav .menu li .sub-menu li {
  display: block;
}

.main-nav .menu li .sub-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 20px;
}

.main-nav .menu li a:hover {
  text-decoration: none;
}

/* Right side */
.right-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
  font-weight: 900 !important;
}

.language-dropdown select {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}

.search-icon svg {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

/* Mobile */
.hamburger {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  /* ensure it's on top */
}

/* Show hamburger only on mobile */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .right-controls {
    display: none;
    /* hide search + lang on mobile */
  }

  .main-nav {
    display: none;
    /* hide desktop menu */
  }
}

/* Mobile menu container */
.mobile-menu {
  display: none;
  position: fixed;
  top: 165px; /* adjust if navbar height changes */
  left: 0;
  width: 100%;
  height: calc(100vh - 165px);
  background: #145459;
  padding: 30px 20px;
  z-index: 1000;
  overflow-y: auto;
  font-family: "Nexa", sans-serif; /* Nexa font for all items */
}

/* Show menu when active */
.mobile-menu.active {
  display: block;
}

/* Menu items */
.mobile-menu .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .mobile-menu-list li a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none; /* remove underline */
  padding: 10px 0;
  display: block;
  transition: color 0.3s;
}

.mobile-menu .mobile-menu-list li a:hover {
  color: #a1d183; /* hover color */
}

/* Submenus */
.mobile-menu .mobile-menu-list .sub-menu {
  display: none; /* hide initially */
  padding-left: 20px;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu .mobile-menu-list li.menu-item-has-children:hover > .sub-menu {
  display: flex; /* show on hover */
}

.mobile-menu .mobile-menu-list .sub-menu li a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none; /* remove underline */
}
.mobile-menu .mobile-menu-list li.menu-item-has-children > a::after {
  content: "▾"; /* small down arrow */
  margin-left: 8px;
  font-size: 14px;
}
/* Mobile submenu toggle arrow */
.mobile-menu .submenu-toggle {
  margin-left: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}

/* Hide submenu by default */
.mobile-menu .sub-menu {
  display: none;
  padding-left: 16px;
}

/* Show submenu when parent is open */
.mobile-menu .menu-item-has-children.open > .sub-menu {
  display: block;
}
.mobile-menu .mobile-menu-list li a {
  font-family: "Nexa", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 10px 0;
}
/* Arrow button for mobile submenus */
.submenu-toggle {
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
  color: #fff;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

/* Optional: rotate instead of switching arrow */
.submenu-toggle.rotate {
  transform: rotate(180deg);
}

/* Submenu hidden by default */
.mobile-menu .sub-menu {
  display: none;
  padding-left: 16px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 80vh; /* do të zgjerohet vetëm sa duhet */
  padding: 100px 0; /* hapësirë sipër e poshtë */
  background-size: cover;
  background-position: center;
}

.hero1 {
  position: relative;
  height: 742px;
  background-size: cover;
  background-position: center;
}

.hero1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgb(255 255 255 / 0%)
  );
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgb(255 255 255 / 0%)
  );
}
.ikonat {
  display: flex;
  justify-content: center;
}
img[alt="Linkedin"] {
  width: 22px;
}
img[alt="Instagram"] {
  width: 26px;
}
.ikonat a {
  width: 22px;
}
.hero-content {
  position: absolute;
  top: 60%;
  left: 140px;
  transform: translateY(-50%);
  max-width: 770px;
}

.hero-content h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-content p {
  font-size: 18px;
  font-style: normal;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #145459;
  color: #fff;
  padding: 15px 30px;
  border-radius: 29px;
  text-decoration: none;
  min-width: 180px;
  font-weight: 900;
  text-align: center;
}

.hero-btn:hover {
  background: #a1d183 ;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
   /* font-size: 32px;*/
	  font-size:23px;
    font-weight: 900;
  }

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

  .hero-btn {
    width: auto;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 165px;
    /* same height as navbar */
    left: 0;
    width: 100%;
    background: #145459;
    text-align: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links.active {
    display: block;
    max-height: 500px;
    /* adjust if menu has many items */
    padding: 20px 0;
  }

  .nav-links .menu li {
    display: block;
    margin: 15px 0;
  }
}

/* sectio dy fillim  */
.features {
  width: 100%;
  padding: 35px 0; /* lowered further */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-bottom: -62px;
}

.features .container {
  width: 90%;
  max-width: 950px; /* narrower for 4 items */
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
  justify-items: center;
}

.feature-item {
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centers icon + text vertically */
  padding: 8px 10px; /* less internal spacing */
}

.feature-icon {
  margin-bottom: 6px;
}

.feature-item h1 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.feature-item p {
  font-size: 17px;
  line-height: 1.3;
  color: #707070;
  max-width: 220px;
  color: #000 !important;
}

/* ✅ Responsive Adjustments */

/* Tablets */
@media (max-width: 992px) {
  .features {
    padding: 30px 0;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-item h1 {
    font-size: 18px;
  }
  .feature-item p {
    font-size: 13px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .features {
    padding: 25px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-item h1 {
    font-size: 17px;
  }
  .feature-item p {
    font-size: 13px;
  }
}

/* sectio dy perfundim */

/* Services Section */
.services {
  padding: 60px 0;
}

.services .container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-title .top {
  font-size: 26px;
  color: #73b66b;
  letter-spacing: 2px;
}

.services-title .bottom {
  font-size: 30px;
  font-weight: 700;
  color: #145459;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 812px));
  gap: 28px;
  justify-content: center;
  /* center the two columns within container */
  justify-items: center;
  /* center each card column */
}

.service-card {
  background: #fffaf6;
  /* requested */
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.containeri {
  display: flex;
}
.service-card-inner {
  max-width: 100%;
  height: auto;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: space-between;
}

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

.service-title {
  font-size: 25px;
  font-weight: 900;
  color: #000;
  margin: 0;
}

.service-text {
  font-size: 18px;
  line-height: 30px;
  max-width: 600px;
  color: #000;
  margin: 0;
}

.service-button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 58px;
  font-weight: 900;
  border-radius: 30px;
  background: #145459;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.service-button:hover {
  background: #0f4549;
}

.service-intro {
  padding: 50px 0 20px;
  text-align: center;
}

.service-intro-title {
  margin: 0 0 12px;
  font-size: 35px;
  font-weight: 900;
  font-style: normal;
  line-height: 40px;
	text-align:left !important;
}

.service-intro-title .title-base {
  color: #fff !important;
  margin-right: 8px;
  font-family: "Nexa", sans-serif;
  font-weight: 900; /* e thërret Nexa Heavy */
  font-style: normal;
}

@media (min-width: 1024px) {
  .grid-header {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.service-intro-title .title-span {
  color: #a1d183;
  font-weight: 300;
  font-family: "Nexa", sans-serif;
  font-weight: 900; /* e thërret Nexa Heavy */
  font-style: normal;
}

.service-intro-text {
  font-size: 18px;
  line-height: 28px;
  color: #000;
/*   max-width: 820px; */
  margin: 0 auto;
}



/* Mid Intro (title + span + paragraph) */
.service-mid-intro {
  padding: 40px 0 20px;
  text-align: center;
}

.service-mid-title {
  font-size: 35px;
  line-height: 41px;
  margin: 0 0 10px;
  font-weight: 900;
}

.service-mid-title .title-base {
  color: #145459;
  font-weight: 900;
  margin-right: 6px;
}

.service-mid-title .title-span {
  color: #a1d183;
  font-weight: 900;
}

.service-mid-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  max-width: 760px;
  margin: 0 auto;
}

/* Two-column cards */
.service-two-col {
  padding: 20px 0 10px;
}

.service-two-col .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.two-card {
  background: #fffaf6;
  border-radius: 6px;
  padding: 30px;
}

.two-title {
  font-size: 35px;
  width: 40%;
  line-height: 30px;
  color: #145459;
  font-weight: 900;
  margin: 0 0 12px;
}

.two-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

@media (max-width: 1024px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1102px) {
  .containeri {
    flex-direction: column;
  }
}

.two-col-grid {
  padding: 110px;
}

.two-card {
  height: 435px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Split hero + two cols */
.service-split {
  padding: 110px;
}

.service-split .split-hero img {
  width: 100%;
  height: 555px;
  object-fit: cover;
  display: block;
  margin-top: -127px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}

.split-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.split-card {
  background: #fffaf6;
  height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 6px;
}

.split-title {
  font-size: 35px;
  line-height: 35px;
  margin: 0 0 12px;
  font-weight: 900;
}

.split-title .title-base {
  color: #145459;
  font-weight: 900;
}

.split-title .title-span {
  color: #a1d183;
  font-weight: 900;
}

.split-text {
  font-size: 18px;
  line-height: 25px;
  color: #000;
}

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA 80px */
.service-cta-80 {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.service-cta-80 .cta-80-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.service-cta-80 .cta-80-title {
  font-size: 55px;
  line-height: 80px;
  margin: 0 0 20px;
  font-weight: 900;
}

.service-cta-80 .cta-80-title .title-base {
  color: #145459;
  font-weight: 900;
}

.service-cta-80 .cta-80-title .title-span {
  color: #a1d183;
  font-weight: 900;
}

.service-cta-80 .hero-btn {
  margin-top: 10px;
}

/* Prices page */
.prices-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.prices-title {
  font-size: 35px;
  line-height: 50px;
  font-weight: 900 !important;
  margin: 0 0 10px;
}

.prices-title .title-base {
  color: #145459;
  font-weight: 900;
}

.prices-title .title-span {
  color: #a1d183;
  font-weight: 900;
}

.prices-sub {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto 24px;
}
.prices-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; /* a bit more breathing space between cards */
  align-items: start;
  justify-items: center;
  margin-top: 0px; /* lowered a bit from 140px for better visual balance */
}

.price-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* Icon wrapper (auto width, centered) */
.price-icon {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Actual SVG size control */
.price-icon svg {
  width: 28px; /* ↓ smaller icon size */
  height: 28px; /* proportional */
  display: inline-block;
  margin-bottom: 10px;
  fill: #145459; /* brand color */
  transition: transform 0.3s ease;
}

/* Optional: add a hover grow effect */
.price-icon svg:hover {
  transform: scale(1.1);
}

/* Text under each icon */
.price-icon-text {
  font-size: 20px; /* reduced from 25px to keep proportional */
  line-height: 1.3;
  font-weight: 800;
  color: #000;
  text-align: center;
}

/* ========== Responsive tweaks ========== */
@media (max-width: 992px) {
  .prices-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
  }

  .price-icon svg {
    width: 24px;
    height: 24px;
  }

  .price-icon-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .prices-icons {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }

  .price-icon svg {
    width: 22px;
    height: 22px;
  }

  .price-icon-text {
    font-size: 16px;
  }
}

/* Prices - plans */
.prices-plans {
  padding: 90px 0;
  background-size: cover;
  background-position: center;
}

.pricing-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.toggle-btn {
  background: #184f53;
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 6px 18px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn.active {
  background: #a1d183;
  color: #184f53;
}

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

.plan-card {
  background: #fff;
  height: 515px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-title {
  color: #145459;
  font-size: 35px;
  font-weight: 900;
}

.plan-ab {
  color: #145459;
  font-size: 35px;
  font-weight: 400;
  margin-top: 6px;
}

.plan-price {
  color: #a1d183;
  font-size: 50px;
  font-weight: 700;
  margin-left: 6px;
}

.plan-suffix {
  color: #a1d183;
  font-size: 30px;
  margin-left: 2px;
}

.plan-divider {
  height: 0;
  border-top: 3px solid #dcead1;
  margin: 10px 0 12px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #707070;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li img {
  width: 26px;
  height: 26px;
}

.plan-features li span {
  font-size: 20px;
  line-height: 20px;
}

.plan-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-more {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  color: #707070;
}

.plans-group {
  display: none;
}

.plans-group.active {
  display: block;
}

.prices-bottom-cta {
  text-align: center;
  margin-top: 140px;
}

.prices-bottom-title {
  /*font-size: 55px;*/
  /*line-height: 70px;*/
  margin: 0 0 16px;
}

.prices-bottom-title .title-base {
  color: #145459;
  font-weight: 900;
  font-size: 45px;
}

.prices-bottom-title .title-span {
  color: #a1d183;
  font-weight: 900;
}

.toggle-btn-container {
  background: #184f53;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    height: auto;
  }

  .prices-bottom-title {
    font-size: 56px;
    line-height: 60px;
  }
}

/* Additional responsive refinements for service-hero page */
@media (max-width: 1200px) {
  .two-title {
    font-size: 34px;
    line-height: 36px;
    width: auto;
  }

  .two-text {
    font-size: 18px;
    line-height: 20px;
  }

  .split-title {
    font-size: 42px;
    line-height: 44px;
  }

  .split-text {
    font-size: 18px;
    line-height: 20px;
  }

  .service-cta-80 .cta-80-title {
    font-size: 64px;
    line-height: 68px;
  }
}

@media (max-width: 992px) {
  .two-col-grid {
    gap: 16px;
    padding: 40px 24px;
  }

  .two-card {
    height: auto;
    padding: 24px;
  }

  .split-grid {
    gap: 16px;
  }

  .split-media img,
  .split-card {
    height: auto;
  }

  .service-split .split-hero img {
    height: 520px;
    padding-top: 127px;
  }

  .service-cta-80 {
    padding: 60px 0;
  }

  .service-cta-80 .cta-80-title {
    font-size: 52px;
    line-height: 56px;
  }

  .service-split {
    padding: 0px !important;
  }
}

@media (max-width: 768px) {
  .service-mid-title {
    font-size: 36px;
    line-height: 40px;
  }

  .service-mid-text {
    font-size: 18px;
    line-height: 20px;
    padding: 0 12px;
  }

  .two-title {
    font-size: 28px;
    line-height: 32px;
  }

  .two-text {
    font-size: 16px;
    line-height: 18px;
  }

  .split-title {
    font-size: 34px;
    line-height: 38px;
  }

  .service-cta-80 .cta-80-title {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 480px) {
  .service-mid-title {
    font-size: 28px;
    line-height: 32px;
  }

  .two-col-grid {
    padding: 24px 12px;
  }

  .service-split .split-hero img {
    height: 380px;
    padding-top: 116px;
  }

  .split-title {
    font-size: 28px;
    line-height: 32px;
  }

  .split-text {
    font-size: 16px;
    line-height: 18px;
  }

  .service-cta-80 .cta-80-title {
    font-size: 34px;
    line-height: 38px;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 16px;
  }
}

.service-features {
  padding: 30px 0;
}

.service-features .container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 820px 1fr;
  gap: 30px;
  align-items: start;
  margin: 30px 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr 820px;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.feature-media img {
  width: 710px;
  max-width: 100%;
  height: auto;
  display: block;
}

.feature-title {
  font-size: 35px;
  line-height: 50px;
  color: #145459;
  margin: 0 0 10px;
  font-weight: 900;
}

.feature-title-base {
  color: #145459;
  font-weight: 900;
  font-size: 35px;
}

.feature-title-span {
  color: #a1d183;
  font-weight: 900;
  font-size: 35px;
}

.image-text-section  .feature-list {
	padding-left:20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.feature-list .check-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: block;
}

.feature-list .bullet-text {
  font-size: 28px;
  line-height: 28px;
  color: #0e4850;
  font-weight: 700;
}

.feature-text {
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

/* Service Quote Section */
.service-quote {
  padding: 40px 0;
  background-size: cover;
  background-position: center;
	display:none;
}

.service-quote .container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.quote-row {
  display: grid;
  grid-template-columns: 820px 1fr;
  gap: 30px;
  align-items: center;
}

.quote-media img {
  width: 851px;
  max-width: 67%;
  height: auto;
  display: block;
}

.quote-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-copy {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  max-width: 620px;
}

.quote-icon {
  position: absolute;
  right: 0;
  bottom: -38px;
  width: 60px;
  height: auto;
  opacity: 0.9;
}

.quote-name {
  margin-top: 20px;
  font-size: 22px;
  color: #a1d183;
  font-weight: 700;
}
@media (max-width: 1500px) {
	  .quote-row {
    grid-template-columns: 714px 1fr;
  }
}

@media (max-width: 1024px) {
  .quote-row {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    max-width: 100%;
  }

  .quote-icon {
    position: static;
    margin-top: 10px;
  }
}

/* End CTA */
.service-end-cta {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding-bottom: 0;
  height: 65vh;
  display: flex;
  align-items: center;
}

.service-end-cta .end-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.service-end-cta .end-cta-title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 20px;
}

.service-end-cta .end-cta-title .title-base {
  color: #145459;
  font-weight: 600;
}

.service-end-cta .end-cta-title .title-span {
  color: #a1d183;
  font-weight: 600;
}

.service-end-cta .hero-btn {
  margin-top: 10px;
}

/* ======================== */
/* Responsive tweaks (Service page) */
/* ======================== */
@media (max-width: 1200px) {
  .service-intro-title {
    font-size: 44px;
    line-height: 48px;
  }

  .feature-title {
    font-size: 42px;
    line-height: 44px;
  }

  .feature-list .bullet-text {
    font-size: 24px;
    line-height: 26px;
  }

  .quote-name {
    font-size: 34px;
  }

  .service-end-cta .end-cta-title {
    font-size: 55px;
  }
}

@media (max-width: 992px) {
  .service-intro {
    padding: 40px 0 10px;
  }

  .service-intro-title {
    font-size: 38px;
    line-height: 42px;
  }

  .service-intro-text {
    font-size: 18px;
    line-height: 20px;
    padding: 0 12px;
    padding-top: 13px;
  }

  .service-features .container {
    max-width: 95%;
  }

  .feature-row {
    gap: 20px;
    margin: 24px 0;
  }

  .feature-title {
    font-size: 36px;
    line-height: 40px;
  }

  .feature-list .bullet-text {
    font-size: 22px;
    line-height: 24px;
  }

  .feature-text {
    font-size: 18px;
    line-height: 20px;
  }

  .service-quote {
    padding: 30px 0;
  }

  .quote-copy {
    font-size: 18px;
    line-height: 20px;
  }

  .quote-name {
    font-size: 30px;
  }

  .service-end-cta {
    height: auto;
    padding: 60px 0 40px;
  }

  .service-end-cta .end-cta-title {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .service-intro-title {
    font-size: 32px;
    line-height: 36px;
  }

  .feature-title {
    font-size: 30px;
    line-height: 34px;
  }

  .feature-list .bullet-text {
    font-size: 20px;
    line-height: 22px;
  }

  .quote-name {
    font-size: 26px;
  }

  .service-end-cta .end-cta-title {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .service-intro-title {
    font-size: 28px;
    line-height: 32px;
  }

  .service-intro-text {
    font-size: 16px;
    line-height: 18px;
  }

  .feature-title {
    font-size: 26px;
    line-height: 30px;
  }

  .feature-list .bullet-text {
    font-size: 18px;
    line-height: 20px;
  }

  .feature-text {
    font-size: 16px;
    line-height: 18px;
  }

  .quote-copy {
    font-size: 16px;
    line-height: 18px;
  }

  .quote-name {
    font-size: 22px;
  }

  .service-end-cta .end-cta-title {
    font-size: 36px;
  }

  .hero-btn {
    padding: 12px 22px;

    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-media img {
    width: 100%;
  }
}

/* Services responsive */
@media (max-width: 1200px) {
  .service-card-inner {
    height: auto;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: minmax(0, 812px);
  }

  .service-card-inner {
    height: auto;
  }
}

@media (max-width: 576px) {
  .services-title .top {
    font-size: 20px;
  }

  .services-title .bottom {
    font-size: 24px;
  }

  .service-title {
    font-size: 24px;
  }

  .service-text {
    font-size: 16px;
  }

  .service-button {
    width: 160px;
    height: 52px;
  }
}
@media (min-width: 1201px) and (max-width: 1360px) {
  .service-card:first-child .service-button {
    width: 100%; /* let button take full width of its container */
    max-width: 185px; /* but don't exceed 185px */
    box-sizing: border-box; /* include padding/border in width */
  }
}

/* section tre fillim  */
/*
.difference {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  overflow: hidden;
}
*/

.redbull {
  margin-left: 150px;
}

/* ========================= */
/* 🔹 BASE LAYOUT (Desktop) */
/* ========================= */

/* Image container */
.difference-slide .slide-image {
  overflow: hidden;
}

.difference-slide .slide-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Text column */
.slide-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px; /* allow wider text block */
}

.slide-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #a1d183;
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 22px;
  line-height: 1.7;
  max-width: 700px;
}

/* ========================= */
/* 💻 LARGE SCREENS (≥1400px) */
/* ========================= */
@media (min-width: 1400px) {
  .difference-slide .slide-inner {
    grid-template-columns: 1.1fr 1.2fr; /* give text more room */
    gap: 70px;
    width: 90%;
    max-width: 1700px;
  }

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

  .slide-text p {
    font-size: 24px;
  }
}

/* ========================= */
/* 🖥️ DESKTOP (≥992px) */
/* ========================= */
@media (min-width: 992px) and (max-width: 1399px) {
  .difference-slide .slide-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    width: 92%;
  }

  .slide-text {
    max-width: 650px;
  }

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

  .slide-text p {
    font-size: 20px;
  }
}

/* ========================= */
/* 📱 TABLET (≤991px) */
/* ========================= */
@media (max-width: 991px) {
  .difference-slide .slide-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    width: 95%;
  }

  .difference-slide .slide-image img {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .slide-text {
    max-width: 90%;
    margin: 0 auto;
  }

  .slide-text h2 {
    font-size: 28px;
  }

  .slide-text p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ========================= */
/* 📱 SMALL PHONES (≤576px) */
/* ========================= */
@media (max-width: 576px) {
  .difference-slide .slide-inner {
    gap: 32px;
    width: 100%;
  }

  .difference-slide .slide-image img {
    max-width: 95%;
  }

  .slide-text h2 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 16px;
  }
}

.difference-swiper {
  width: 100%;
  height: 100%;
  /* makes room for upcoming peek */
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 90%;
  height: 100%;
}

/* ==================== */
/* 📱 RESPONSIVE STYLES */
/* ==================== */
@media (max-width: 992px) {
  .difference-title {
    text-align: center;
  }

  .difference-slide .slide-inner {
    grid-template-columns: 1fr;
  }

  .difference-slide .slide-image img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .difference-slide .slide-image img {
    height: 320px;
  }
}

/* Large tablets */
@media (max-width: 1200px) {
  .difference-title {
    font-size: 30px;
  }

  .slide-text h2 {
    font-size: 26px;
  }

  .slide-text p {
    font-size: 18px;
  }

  .difference-swiper {
    padding-right: 15%;
  }

  .difference-swiper .swiper-slide {
    width: 85% !important;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .difference {
    height: auto;
    padding: 30px 0;
  }

  .slide-inner {
    flex-direction: column;
    gap: 20px;
  }

  .slide-image {
    flex: 0 0 100%;
    height: auto;
  }

  .slide-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .difference-swiper {
    padding-right: 10%;
  }

  .difference-swiper .swiper-slide {
    width: 90% !important;
  }
}

/* Phones */
@media (max-width: 768px) {
  .difference-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .slide-text h2 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .difference-swiper {
    padding-right: 5%;
  }

  .difference-swiper .swiper-slide {
    width: 95% !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .difference-title {
    font-size: 22px;
  }

  .slide-text h2 {
    font-size: 18px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .difference-swiper {
    padding-right: 0;
    /* no peek, full width */
  }

  .difference-swiper .swiper-slide {
    width: 100% !important;
  }
}

/* section tre mbarim */

/* section kater fillim  */
/* ✅ Testimonials Section (Desktop base) */
.testimonials {
  padding: 80px 0;
  text-align: center;
}

.testimonials-title {
  position: relative;
  display: inline-block;
  text-align: left;
  font-size: 35px;
  font-weight: 900;
  color: #145459;
  line-height: 1.1;
  margin-bottom: 50px;
}

.testimonials-title .highlight {
  color: #a1d183;
}

/* ✅ Position SVG directly above "SAID" */
.title-icon {
  position: absolute;
  right: 103px; /* Aligns it with the end of SAID */
  bottom: 50%; /* Moves it above the text */
  width: 60px;
  height: auto;
  transform: translateY(-10%);
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 28px;
  }
  .swiper-wrapper {
    transform: translate3d(0, 0px, 0px) !important;
  }
  .title-icon {
    width: 45px;
  }
}

/* ✅ Wrapper keeps alignment */
.testimonials-wrapper {
  width: 100%;
  overflow: hidden;
  padding-left: calc((100% - 1200px) / 2 + 15px);
}

/* ✅ Swiper core */
.testimonials-swiper {
  width: 100%;
  padding-bottom: 80px;
  /* leave space for arrows */
}

/* ✅ Fix slide sizing */
.testimonials-swiper .swiper-slide {
  width: 674px;
  /* fixed width desktop */
  height: 378px !important;
  /* fixed height desktop */
  flex-shrink: 0;
  margin-right: 30px;
}

/* ✅ Card style */
.testimonial-slide {
  background-color: #fffaf6;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.testimonial-slide h3 {
  font-size: 25px;
  font-weight: bold;
  color: #73b66b;
  margin-bottom: 20px;
}

.testimonial-slide p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  color: black !important;
}

.testimonial-slide .author {
  font-size: 20px;
  font-weight: 600;
  color: #707070;
}

/* ✅ Arrows under cards */
.testimonials .swiper-controls {
  display: flex;
  justify-content: center;
  margin-top: -26px;
  gap: 20px;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* Adjust space as needed */
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  /* Optional: control size */
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  width: 50px; /* rrit madhësinë */
  height: 50px; /* rrit madhësinë */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* Shtojmë hapësirë mes arrow-ve dhe slider-it */
.testimonials .swiper-button-prev {
  left: -0.3px; /* largon majtas */
}

.testimonials .swiper-button-next {
  right: -0.3px; /* largon djathtas */
}

/* Disabled arrows */
.testimonials-swiper .swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Remove Swiper default arrows */
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  display: none !important;
}

/* Hide Swiper default arrows globally (prevents overlay on custom icons) */
.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after,
.swiper-button-prev:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none !important;
}

/* ✅ RESPONSIVENESS */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .testimonial-slide {
    width: 90% !important;
    height: auto;
    padding: 25px;
  }

  .testimonial-slide h3 {
    font-size: 26px;
  }

  .testimonial-slide p,
  .testimonial-slide .author {
    font-size: 18px;
  }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}
.testimonials-title {
  font-size: 28px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .testimonials .swiper-slide {
    height: auto !important;
  }

  .testimonials-wrapper {
    margin-left: 0;
    /* remove left margin on small screens */
  }
  @media (max-width: 767px) {
    .testimonials .swiper-slide {
      /* ✅ push the card right */
    }
  }

  .testimonial-slide {
    width: 100% !important;
    height: auto;
    padding: 20px;
  }

  .testimonial-slide h3 {
    font-size: 22px;
  }

  .testimonial-slide p,
  .testimonial-slide .author {
    font-size: 16px;
  }

  .testimonials-swiper {
    padding-bottom: 60px;
  }

  .testimonials-swiper .swiper-controls {
    margin-top: 20px;
  }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 40px 0;
  }

  .testimonials-title {
    font-size: 22px;
  }

  .testimonial-slide {
    width: 100% !important;
    padding: 15px;
  }

  .testimonial-slide h3 {
    font-size: 20px;
  }

  .testimonial-slide p,
  .testimonial-slide .author {
    font-size: 14px;
  }

  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

/* section kater mbarim */

/* Founders Section */
.founders {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    rgba(20, 84, 89, 0.92),
    rgba(20, 84, 89, 0.78)
  );
}
.blog-featured-body {
  margin-top: 60px;
}
/* Blogs page */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
  padding: 110px;
}
.time_last {
  background-color: #fffaf6;
  padding: 65px;
}

.blog-featured-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-featured-title {
  font-size: 30px;
  color: #145459;
  margin: 0;
  font-weight: 300;
}

.blog-featured-excerpt {
  font-size: 20px;
  line-height: 20px;
  margin: 4px 0 0;
}

.blog-featured-btn {
  float: right;
  margin-top: 8px;
}

.blogs-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 110px;
}

/*JONAAAAAAA*/

.blogspage {
  background-color: #fffaf6;
  padding-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 0; /* ⛔ no rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: none; /* ⛔ remove hover animation */
}

.blog-thumb {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps images looking consistent */
  transform: none; /* ⛔ no image zoom */
  transition: none; /* ⛔ no transition on hover */
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* keep existing button styles */
.blog-card .service-button {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-thumb {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .blog-card {
    margin-bottom: 20px;
  }

  .blog-thumb {
    height: 200px;
  }

  .blog-title {
    font-size: 1.1rem;
  }
}

.blogs-search {
  border: 3px solid #145459;
  height: 60px;
  padding: 0 12px;
  width: 280px;
}

.blogs-cat {
  width: 350px;
  height: 60px;
  background: #145459;
  color: #fff;
  border: 0;
  appearance: none;
  padding: 0 14px;
}

.blogs-search-btn {
  height: 60px;
  padding: 0 18px;
  border: 3px solid #145459;
  background: transparent;
  color: #145459;
  cursor: pointer;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 110px;
}

.blog-card {
  background: #fffaf6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-thumb {
  height: 50%;
  padding: 20px;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.blog-card-title {
  font-size: 25px;
  color: #a1d183;
  margin: 0 0 6px;
  font-weight: 900 !important;
}

.blog-card-excerpt {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 8px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-btn {
}

.blog-card-date {
  font-size: 16px;
  color: #777;
}

.blogs-pagination {
  text-align: center;
  margin: 20px 0 40px;
}

.blogs-pagination .page-numbers {
  display: inline-block;
  margin: 0 8px;
  color: #6f8184;
  text-decoration: none;
}

.blogs-pagination .page-numbers.current {
  color: #145459;
  font-weight: 700;
}

.blogs-pagination .pg-arrow {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid #6f8184;
  border-radius: 50%;
  position: relative;
}

.blogs-pagination .pg-arrow.prev:before {
  content: "";
  border: solid #6f8184;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(135deg);
  position: absolute;
  top: 8px;
  left: 12px;
}

.blogs-pagination .pg-arrow.next:before {
  content: "";
  border: solid #6f8184;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  left: 12px;
}

@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-search {
    width: 200px;
  }

  .blogs-cat {
    width: 260px;
  }
}

/* Careers page */
.careers-hero {
  position: relative;
  height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.careers-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.2)
  );
}

.careers-hero-inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.careers-hero-title {
	 
  font-size: 35px;
  color: #a1d183;
  margin: 0;
  font-weight: 900;
  padding-bottom: 136px;
  padding-left: 100px;
}

@media (max-width: 768px) {
  .careers-hero {
    height: 280px;
  }

  .careers-hero-title {
    font-size: 36px;
    margin-left: -85px;
    margin-bottom: -72px;
  }
}

.careers-intro {
  padding: 60px 0;
}

.careers-intro-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.careers-intro-title {
  font-size: 35px;
  line-height: 34px;
  color: #145459;
  margin: 0 0 16px;
  font-weight: 900;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.careers-intro-title span {
  color: #a1d183;
}

.careers-intro-paragraph {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  max-width: 800px;
  margin: 0 auto 40px;
}

.careers-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 100px;
}

.careers-feature {
  padding: 10px;
}

.slider-arrows {
  margin-left: -121px;
  margin-bottom: -44px;
}

.careers-feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.careers-feature-icon img {
  height: 72px;
  width: auto;
}

.careers-feature-title {
  font-size: 25px;
  line-height: 23px;
  margin: 0 0 8px;
  font-weight: 900;
}

.careers-feature-text {
  font-size: 18px;
  line-height: 18px;
  color: #000;
  margin: 0;
}

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

@media (max-width: 576px) {
  .careers-intro-title {
    font-size: 29px;
    line-height: 40px;
  }

  .careers-intro-paragraph {
    font-size: 18px;
    line-height: 20px;
  }

  .careers-feature-title {
    font-size: 24px;
  }

  .careers-feature-text {
    font-size: 18px;
  }

  .careers-features {
    grid-template-columns: 1fr;
  }
}

.careers-cta {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-cta-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.careers-cta-eyebrow {
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-cta-title {
  font-size: 45px;
  line-height: 45px;
  color: #ffffff;
  margin: 0 0 24px;
  font-weight: 800;
}

.careers-cta-title span {
  color: #a1d183;
}

.careers-cta .service-button {
  /*width: 390px; */
  width: 348px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #145459;
  color: #fff;
  border-radius: 30px;
}

.careers-cta .service-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .careers-cta {
    padding: 60px 0;
  }

  .careers-cta-title {
    font-size: 34px;
    line-height: 38px;
    margin-bottom:6px;
  }

  .careers-cta-eyebrow {
    font-size: 22px;
    line-height:1.1;
  }
}

.founders .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.founders-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.founders-title {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.founders-subtitle {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  color: #a1d183;
}

.founders-photo-wrap {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.founders-photo {
  width: 100%;
  height: auto;
  display: block;
}
.founders-quotes {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 70px;
  height: auto;
  z-index: 3;
}

.founders-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 2;
}

.founders-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 4;
  text-align: left;
  opacity: 0;
  transition: opacity 200ms ease;
}

.founders-info .founders-name {
  font-size: 28px;
  font-weight: 700;
}

.founders-info .founders-role {
  font-size: 14px;
  color: #a1d183;
}

.founder-hotspot {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  cursor: pointer;
  z-index: 5;
}

.founder-hotspot:hover ~ .founders-overlay,
.founder-hotspot:focus ~ .founders-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .founders-info .founders-name {
    font-size: 22px;
  }
}

/* Growth Section */
.growth {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.growth .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.growth-heading {
  text-align: center;
  margin-bottom: 30px;
}

.growth-title {
  font-size: 35px;
  font-weight: 900;
  margin: 0 0 10px;
  color: #145459;
}

.growth-title span {
  color: #73b66b;
  font-weight: 900;
}

.growth-text {
  font-size: 18px;
  line-height: 25px;
  color: #000;
  max-width: 760px;
  margin: 0 auto;
}

.growth-stats {
  margin: 30px auto 0;
  background: #fffaf6;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 60px;
  max-width: 100%;
}

.growth-stat {
  text-align: center;
}

.growth-number {
  font-size: 100px;
  line-height: 1;
  color: #145459;
  font-weight: 900;
}

.growth-label {
  font-size: 25px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 992px) {
  .growth-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
  }

  .growth-number {
    font-size: 60px;
  }

  .growth-label {
    font-size: 26px;
  }
}

/* Video Section */
.container-fluid {
  padding: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.video-section {
  padding: 50px 0;
}

.video-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.video-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play img {
  width: 165px;
  height: 165px;
}

.video-play:hover {
  background: rgba(0, 0, 0, 0.5);
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.video-modal.active {
  display: block;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 960px;
}

.video-close {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.video-embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Leaf CTA */
.leaf-cta {
  position: relative;
  background: url("assets/img/leaf.png") center/contain no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.leaf-cta-inner {
  padding: 60px 20px;
}

.leaf-cta-title {
  font-size: 65px;
  line-height: 1;
  margin: 0 0 20px;
  color: #0e4850;
  font-weight: 900;
}

.leaf-cta-title span {
  color: #a1d183;
}

@media (max-width: 992px) {
  .leaf-cta-title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .leaf-cta-title {
    font-size: 36px;
  }
}

/* Footer */
.site-footer {
  background: #145459;
  color: #fff;
  padding: 40px 0 20px;
}

.site-footer .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.tel-footer {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 450px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-col-title {
  font-size: 20px;
  color: #a1d183;
  margin: 0 0 12px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 2px solid rgba(161, 209, 131, 0.5);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  color: #a1d183;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 300px;
  }
}

/* Blogs page */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.blog-featured-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-featured-title {
  font-size: 25px;
  color: #145459;
  margin: 0;
  font-weight: 900;
}

.blog-featured-excerpt {
  font-size: 18px;
  line-height: 20px;
  margin: 4px 0 0;
}

.blog-featured-btn {
  float: right;
  margin-top: 8px;
}

.blogs-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 24px;
}

.blogs-search {
  border: 3px solid #145459;
  height: 60px;
  padding: 0 12px;
  width: 280px;
}

.blogs-cat {
  width: 350px;
  height: 60px;
  background: #145459;
  color: #fff;
  border: 0;
  appearance: none;
  padding: 0 14px;
}

.blogs-search-btn {
  height: 60px;
  padding: 0 18px;
  border: 3px solid #145459;
  background: transparent;
  color: #145459;
  cursor: pointer;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.blog-card {
  background: #fffaf6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-thumb {
  height: 50%;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.blog-card-title {
  font-size: 30px;
  color: #a1d183;
  margin: 0 0 6px;
  font-weight: 700;
}

.blog-card-excerpt {
  font-size: 20px;
  line-height: 20px;
  margin: 0 0 8px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-btn {
}

.blog-card-date {
  font-size: 16px;
  color: #777;
}

.blogs-pagination {
  text-align: center;
  margin: 20px 0 40px;
}

.blogs-pagination .page-numbers {
  display: inline-block;
  margin: 0 8px;
  color: #6f8184;
  text-decoration: none;
}

.blogs-pagination .page-numbers.current {
  color: #145459;
  font-weight: 700;
}

.blogs-pagination .pg-arrow {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid #6f8184;
  border-radius: 50%;
  position: relative;
}

.blogs-pagination .pg-arrow.prev:before {
  content: "";
  border: solid #6f8184;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(135deg);
  position: absolute;
  top: 8px;
  left: 12px;
}

.blogs-pagination .pg-arrow.next:before {
  content: "";
  border: solid #6f8184;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  left: 12px;
}

@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-search {
    width: 200px;
  }

  .blogs-cat {
    width: 260px;
  }

  .blog-featured {
    padding: 10px;
  }

  .blogs-filter {
    padding: 10px;
  }

  .blogs-grid {
    padding: 10px;
  }
}

/* Blogs super-responsive refinements */
@media (max-width: 1200px) {
  .blog-featured-title {
    font-size: 26px;
  }

  .blog-featured-excerpt {
    font-size: 18px;
    line-height: 20px;
  }

  .blog-card-title {
    font-size: 26px;
  }

  .blog-card-excerpt {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .blogs-filter {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blogs-search {
    width: 100%;
    max-width: 100%;
  }

  .blogs-cat {
    width: 100%;
    max-width: 100%;
  }

  .blogs-search-btn {
    width: 100%;
  }

  .blog-featured-btn {
    float: none;
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .blog-featured-title {
    font-size: 22px;
  }

  .blog-featured-excerpt {
    font-size: 16px;
    line-height: 18px;
  }

  .blog-card-title {
    font-size: 22px;
  }

  .blog-card-excerpt {
    font-size: 16px;
    line-height: 18px;
  }

  .blogs-pagination .pg-arrow {
    width: 28px;
    height: 28px;
  }
}

/*JONA*/

.hero-section {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 100px;
  left: 90px;
  color: white;
  font-size: 35px;
  font-weight: 900;
  padding: 10px 15px;
}

.one-section {
  padding: 80px 20px;
}

.one-container {
  max-width: 900px;
  margin: 0 auto;
}

.one-title {
  font-size: 35px;
  font-weight: 900 !important;
  margin: 0 auto 30px;
  color: #145459;
  text-align: center;
}

.max-width {
  max-width: 650px;
}

.one-subtitle {
  font-size: 18px;
}

.image-text-section {
  padding: 80px 0;
}

.section-title {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #707070;
}

.center-text-section {
  padding: 100px 20px;
}

.center-text {
  font-size: 55px;
  font-weight: 900 !important;
  color: #145459;
  max-width: 950px;
  margin: 0 auto;
  line-height: 1.2;
}

.process-container .section-title {
	text-align:left !important;
}

.image-text-section .section-title {
  /* font-size: 35px; */
  font-weight: 900;
  color: #145459;
	    padding-left: 20px;
}

.image-text-section .section-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #000;
  line-height: 27px;
	padding-left: 20px;
}

.image-text-section img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.img-section-wrapper img {
    min-height: 700px !important;
}

.card-body {
  padding: 60px;
}

.cards-section .card {
  max-width: 812px;
  margin: 0 auto;
}

.cards-section .card-title {
  font-size: 28px;
  color: #145459;
  font-weight: 900 !important;
  margin-bottom: 70px;
}

.cards-section .card-text {
  font-size: 18px;
  color: #000;
  line-height: 25px;
}

@media (max-width: 992px) {
  .cards-section .card {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
	.img-section-wrapper img {
		height:auto !important;
	}
  .cards-section .card {
    min-height: 400px;
  }
}

.last-section {
  height: 600px;
  display: flex;
}

.last-center {
  margin: auto;
}

.gap-64 {
  gap: 64px;
}

.gutter-64 {
  --bs-gutter-x: 64px;
}

.cta-button {
  background-color: #145459;
  color: white;
  font-size: 20px;
  font-weight: 900;
  padding: 17px 24px;
  border-radius: 29px;
  text-decoration: none;
}

.max-width-800 {
  width: 800px;
  margin: auto;
}

.text-footer {
  font-size: 40px;
  font-weight: 800;
  color: #145459;
}

.text-800 {
  max-width: 820px;
  line-height: 22px;
}

.icons-title {
  color: #145459;
  font-size: 50px;
  text-align: center;
}

.icons-section {
  background-color: #fffaf6;
  padding: 80px 0;
}

.icons-title {
  color: #145459;
  font-size: 35px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 50px;
}

.icons-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 32px;
  flex-wrap: wrap;
}

.icon-item {
  flex: 1 1 13%;
  min-width: 140px;
}

@media (max-width: 1200px) {
  .card-body {
    padding: 80px;
  }

  .cards-section .card-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1100px) {
  .icon-item {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  .one-title,
  .f50 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  .one-subtitle.max-width-800 {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  .icon-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .icon-item {
    flex: 1 1 100%;
  }

  .icons-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .icon-item p {
    font-size: 18px;
  }

  .last-center {
    padding: 0 !important;
  }
}

.icon-item img {
  max-width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}
img[alt="icon 2"] {
  max-width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 5px;
}
.icon-item p {
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  margin: 0;
}

.social-section {
  background-color: #fff;
}

.social-title {
  font-size: 40px;
  font-weight: 800;
  color: #145459;
  text-align: left;
}

.social-title span {
  color: #a1d183;
}

.follow-btn {
  background-color: #145459;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.follow-btn:hover {
  background-color: #0f3d34;
}

.social-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.social-card {
  max-width: none;
}

.social-card {
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease;
}

.social-card img {
  width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 1024px) {
  .social-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .social-wrapper {
    grid-template-columns: 1fr;
  }

  .social-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .follow-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

.testimonials-title {
  font-size: 30px !important;
  font-weight:600 !important;

  color: #145459;
  margin-bottom: 50px;
}

.testimonials-viewport {
  overflow: hidden;
  margin: 0 auto 24px;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  scroll-snap-type: x mandatory;
  /* snap on scroll */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 8px;
  overflow: hidden;
}

/* Cards */
.testimonial-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background-color: #fffaf6;
  padding: 80px 40px;
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  scroll-snap-align: start;
}

.testimonial-company {
  font-size: 22px;
  font-weight: 700;
  color: #a1d183;
  margin-bottom: 18px;
}

.testimonial-text {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.1;
  color: #707070;
}

.testimonial-author {
  margin: 0;
  color: #707070;
}

@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}

@media (max-width: 650px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.tst-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #a1d183;
  color: #145459;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

.tst-btn-next {
  border-color: #145459;
}

.tst-btn:hover {
  transform: translateY(-2px);
}

.tst-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 992px) {
  .hero-section {
    max-height: unset;
  }

  .hero-text {
    bottom: 24px;
    left: 24px;
    font-size: clamp(22px, 6vw, 36px);
  }
}

.join-team-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #145459 0%, #0e6d69 100%);
}

.join-core {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.join-title {
  color: #a1d183;
  font-weight: 900;
  font-size: 35px;
  font-size: clamp(28px, 2.6vw, 40px);
  margin-bottom: 14px;
}

.join-subtitle {
  color: #ffffff;
  opacity: 0.9;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 640px;
}

.join-cta {
  display: inline-block;
  background: #145459;
  color: #fff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.join-cta:hover {
  transform: translateY(-2px);
  background: #0f4a44;
}
.join-bubble {
  position: absolute;
  transform: translateY(-27%); /* 👈 move all bubbles higher */
  transition: transform 0.3s ease;
}

.join-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.join-bubble.sm {
  width: 72px;
  height: 72px;
}

.join-bubble.md {
  width: 110px;
  height: 110px;
}

.join-bubble.lg {
  width: 180px;
  height: 180px;
} /* 💻 Between 992px and 1442px — make bubbles smaller on mid-size screens */
@media (min-width: 992px) and (max-width: 1442px) {
  .join-bubble.lg {
    width: 130px;
    height: 130px;
  }

  .join-bubble.md {
    width: 90px;
    height: 90px;
  }

  .join-bubble.sm {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 992px) {
  .join-bubble.lg {
    width: 110px;
    height: 110px;
  }

  .join-bubble.md {
    width: 75px;
    height: 75px;
  }

  .join-bubble.sm {
    width: 50px;
    height: 50px;
  }
}

/* 📱 Mobile (max-width: 720px) — even smaller */
@media (max-width: 720px) {
  .join-bubble.lg {
    width: 70px;
    height: 70px;
  }

  .join-bubble.md {
    width: 50px;
    height: 50px;
  }

  .join-bubble.sm {
    width: 35px;
    height: 35px;
  }

  /* Optional: hide a few bubbles for clarity */
  .join-bubble:nth-child(2),
  .join-bubble:nth-child(3),
  .join-bubble:nth-child(6) {
    display: none;
  }

  .join-core {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .card-body {
    padding: 28px;
  }

  .cards-section .card-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .cards-section .card-text {
    font-size: 16px;
  }
}

.cards-section .card-text {
  word-break: break-word;
}

.center-text-section {
  background-position: right center;
  background-repeat: no-repeat;
}

@media (max-width: 1400px) {
  .center-text-section {
    background-size: 900px !important;
  }
}

@media (max-width: 1200px) {
  .center-text-section {
    background-size: 750px !important;
  }
}

@media (max-width: 992px) {
  .center-text-section {
    background-size: 560px !important;
  }
}

@media (max-width: 768px) {
  .center-text-section {
    background-size: 420px !important;
  }
}

@media (max-width: 520px) {
  .center-text-section {
    background-size: 300px !important;
  }
}

@media (max-width: 1200px) {
  .text-footer {
    font-size: 56px;
  }

  .cta-button {
    font-size: 18px;
    padding: 14px 22px;
  }
}

@media (max-width: 768px) {
  .text-footer {
    font-size: 40px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 18px;
  }

  .center-text-section .custom-container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

.difference-image {
  width: 100%;
  max-width: 812px;
  height: auto;
  max-height: 553px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .difference-image {
    max-width: 100%;
    max-height: none;
  }
}

.difference-slide .slide-image img {
  display: block;
  width: 100%;
  height: 520px;
  /* visual height like the design */
  object-fit: contain;
}

.difference-slide .slide-text h2 {
  color: #a1d183;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
}

/* Force slide text perfectly centered inside its column */
.difference-slide .slide-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-self: center;
  text-align: left; /* or center if you prefer */
}

.difference-slide .slide-text p {
  color: #d9eff0;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.55;
  max-width: 58ch;
  margin: 0;
}

.difference .swiper-pagination {
  position: static;
  margin-top: clamp(14px, 2vw, 24px);
  display: flex;
  justify-content: center;
}

.difference .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #23a2b6;
  opacity: 0.45;
}

.difference .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

@media (max-width: 1024px) {
  .difference-slide .slide-image img {
    width: 600px;
    height: auto;
  }

  .difference-slide .slide-text h2 {
    font-size: 20px;
  }

  .difference-slide .slide-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .difference-slide .slide-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .difference-slide .slide-image img {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

  .difference-slide .slide-text h2 {
    font-size: 18px;
  }

  .difference-slide .slide-text p {
    font-size: 13px;
  }
}
/* Footer menu styling */
.footer-menu {
  list-style: none; /* Remove bullets */
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px; /* Space between items */
}

.footer-menu li a {
  color: #ffffff; /* White text */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #a1d183; /* Light green on hover */
}

/* Optional: make footer columns stack nicely on mobile */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
}
/* Footer Base */
.site-footer {
  background: #145459;
  color: #cfe0c1;
  padding: 50px 20px 20px 20px;
  font-family: sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.footer-logo img {
  max-width: 325px; /* Bigger logo */
  height: auto;
  margin-left: 0;
}

.footer-columns {
  display: flex;
  font-weight: 400;
  font-size: 18px;
  gap: 50px;
  margin-left: auto; /* push menus closer to social icons */
  flex: none;
}

.footer-col h4 {
  color: #a1d183;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Nexa";
}

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

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Nexa";
}

.footer-menu li a:hover {
  color: #a1d183;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-social img {
  width: 22px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #a1d183;
  padding-top: 15px;
  color: #cfe0c1;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-logo img {
    max-width: 200px; /* slightly smaller on tablet */
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
    margin-left: 0; /* remove right push on small screens */
  }

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

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 150px;
    max-width: 150px;
  } /* smaller on mobile */
  .ikonat {
    display: flex;
    justify-content: center;
    padding-top: 25px;
  }
}

.footer-menu li {
  margin-bottom: 6px;
}

.footer-social img {
  width: 20px; /* smaller icons on mobile */
}

/* Medium screens: 768px - 950px */
@media (min-width: 769px) and (max-width: 950px) {
  .footer-top {
    flex-wrap: wrap; /* allow items to wrap instead of overflowing */
    gap: 30px; /* reduce gap */
  }

  .footer-columns {
    margin-left: 20px; /* push menus closer to social icons */
    gap: 30px; /* reduce spacing between columns */
  }

  .footer-social {
    margin-top: 10px; /* small spacing from menus */
  }
}
@media (min-width: 992px) and (max-width: 1268px) {
  /* Footer Top */
  .site-footer .containeri {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  /* Logo */
  .site-footer .footer-logo {
    text-align: left;
    margin-left: 0;
  }

  /* Footer columns (menus) */
  .site-footer .tel-footer {
    display: flex !important;
    justify-content: right;
    gap: 40px;
  }

  .site-footer .tel-footer .footer-col {
    text-align: center; /* tekst qendër brenda çdo kolone */
  }

  /* Social icons */
  .site-footer .ikonat div {
    display: flex;
    justify-content: flex-end; /* ikonat djathtas */
    width: 95px;
  }

  /* Footer Bottom */
  .site-footer > div:last-child {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .site-footer > div:last-child div:first-child {
    position: relative;
    text-align: center;
    top: 8px;
    padding: 0 10px;
    color: #a1d183 !important;
    width: auto;
    background: #145459;
    z-index: 99;
  }

  .site-footer > div:last-child div:last-child {
    position: absolute;
    text-align: center;
    border: 1px solid #a1d183;
    color: #cfe0c1;
    background: red;
    width: 100%;
  }
}
.front-headings {
  text-align: center;
  margin-bottom: 40px;
}

.front-heading {
  color: #145459;
  font-weight: 900;
  font-size: 35px !important;
  margin-bottom: 0 !important; /* hiq hapësirën poshtë */
}

.front-heading1 {
  color: #a1d183;
  font-weight: 900 !important;
  font-size: 35px !important;
  margin-top: 0 !important; /* hiq hapësirën sipër */
}

/*slider new code -- slider ne front page*/
/* section tre fillim  */
/*
.difference {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  overflow: hidden;
}
*/

.difference {
  padding: clamp(60px, 6vw, 90px) 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.difference-title {
  margin: 0 0 clamp(24px, 4vw, 40px);
  color: #fff;
  font-weight: 900;
  font-size: 45px;
  letter-spacing: 0.02em;
  text-align: left;
  /* like the mock */
}
.redbull {
  margin-left: 150px;
}
.difference-title span {
  color: #a1d183;
}

.difference-slide .slide-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* image larger than text */
  gap: clamp(24px, 2.5vw, 40px);
  align-items: center;
}

.difference-slide .slide-image {
  /*border-radius: 12px; */
  overflow: hidden;
}

.difference-swiper {
  width: 100%;
  height: 100%;
  /* makes room for upcoming peek */
}

.difference-swiper .swiper-slide {
  /* active slide width */
  height: 100%;
  display: flex;
  align-items: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 90%;
  height: 100%;
}

.slide-image {
  height: 100%;
}

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

.slide-text {
  flex: 0 0 40%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-text h2 {
  font-size: 25px;
  font-weight: bold;
  color: #a1d183;
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 500px;
}

.swiper-pagination {
  bottom: 20px !important;
  text-align: center;
}

/* ==================== */
/* 📱 RESPONSIVE STYLES */
/* ==================== */
@media (max-width: 992px) {
  .difference-title {
    text-align: center;
  }

  .difference-slide .slide-inner {
    grid-template-columns: 1fr;
  }

  .difference-slide .slide-image img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .difference-slide .slide-image img {
    height: 320px;
  }
}

/* Large tablets */
@media (max-width: 1200px) {
  .difference-title {
    font-size: 30px;
  }

  .slide-text h2 {
    font-size: 26px;
  }

  .slide-text p {
    font-size: 18px;
  }

  .difference-swiper {
    padding-right: 15%;
  }

  .difference-swiper .swiper-slide {
    width: 85% !important;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .difference {
    height: auto;
    padding: 30px 0;
  }

  .slide-inner {
    flex-direction: column;
    gap: 20px;
  }

  .slide-image {
    flex: 0 0 100%;
    height: auto;
  }

  .slide-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .difference-swiper {
    padding-right: 10%;
  }

  .difference-swiper .swiper-slide {
    width: 90% !important;
  }
}

/* Phones */
@media (max-width: 768px) {
  .difference-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .slide-text h2 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .difference-swiper {
    padding-right: 5%;
  }

  .difference-swiper .swiper-slide {
    width: 95% !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .difference-title {
    font-size: 22px;
  }

  .slide-text h2 {
    font-size: 18px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .difference-swiper {
    padding-right: 0;
    /* no peek, full width */
  }

  .difference-swiper .swiper-slide {
    width: 100% !important;
  }
}
.prices-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
    justify-items: center;
    margin-top: 0px;
}

/* Make sure each icon card stays centered */
.price-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* Keep icons consistent */
.price-icon img,
.price-icon svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

/* Text style */
.price-icon-text {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: #000;
    text-align: center;
}

/* ✅ Responsive fix: stack icons on smaller screens */
@media (max-width: 768px) {
    .prices-icons {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .prices-icons {
        grid-template-columns: 1fr; /* stack vertically on phones */
        gap: 30px;
    }

    .price-icon img,
    .price-icon svg {
        width: 50px; /* slightly smaller on mobile */
        height: 50px;
    }

    .price-icon-text {
        font-size: 18px;
    }
}

/* Keep your text style */
.price-icon-text {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: #000;
    text-align: center;
}
.testimonials-subtitle {
    display: block;
    text-align: center;
    font-size: 35px!important ;
    font-weight: 900 !important;
    letter-spacing: 1px;
    margin-left: -41px;
    text-transform: uppercase;
    color: #a1d183;
    margin-bottom: 20px;
    
}
.apply-list {
    display: flex;
    justify-content: center;
}

.apply-list ul {
    list-style-position: inside; /* bullet close to text */
    padding-left: 0 !important;
    margin: 0 auto;
    text-align: center; /* center text + bullets */
}

.apply-list ul li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 16px;
    position: relative;
    display: inline-block; /* allows center alignment */
}
.testimonials-title {
    text-align: center;
    line-height: 1;
}

.testimonials-title br + * {
    display: block;
    text-align: center;
}

@media (max-width: 992px) {
    .navbar .container {
        grid-template-columns: auto 1fr auto; /* keep structure */
        align-items: center;
    }

    .logo img {
        width:251px;      /* smaller logo on mobile */
        margin-left: 0;    /* FIX negative margin */
    }

    .hamburger {
        margin-left: 20px; /* space between logo and hamburger */
        margin-right: 10px;
    }
}
/* Entire box acts like a link but keeps original styling */
.cta-phone-wrapper {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.cta-phone-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border-radius: 50px;
    padding: 15px 25px;
    margin: 25px auto 0;
    max-width: 299px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.25s ease;
}

.cta-phone-wrapper:hover .cta-phone-box {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cta-phone-number {
    color: #17575b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.cta-phone-label {
    color: #4a5c71 !important;
    font-weight: 500;
    text-decoration: none !important;
}

.cta-phone-wrapper:link,
.cta-phone-wrapper:visited,
.cta-phone-wrapper:hover,
.cta-phone-wrapper:active {
    text-decoration: none !important;
}

.cta-phone-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

    .cta-phone-box {
        max-width: 299px;   /* keep same size as desktop */
        width: 100%;
        margin: 20px auto 0;  /* CENTER the box */
        padding: 15px 25px;
    }

    .cta-phone-icon img {
        width: 40px;
        height: 40px;
    }
}

/* ============================
   SALES USP SECTION (FULL CSS)
   ============================ */

.sales-usps-section {
  padding: 60px 20px 111px 20px;
  background: #145459;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.sales-usps-inner {
  margin: 0 auto;
  text-align: center; /* centers heading + intro text */
}

/* -----------------------------
   HEADING + INTRO TEXT
------------------------------ */
.sales-usps-title {
  font-family: 'Nexa', sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 16px;
  text-align: center;
  color: #ffffff;
}

.sales-usps-intro {
  margin: 0 auto 50px auto;
  font-size: 18px;
  line-height: 1.7;
  color: #e3f6f3;
  text-align: center;
  max-width: 900px;
}

/* -----------------------------
   GRID: 4 CARDS IN ONE ROW
------------------------------ */
.sales-usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 boxes */
  gap: 24px;
  align-items: stretch;
}

/* -----------------------------
   CARD STYLE
------------------------------ */
    /* -----------------------------
           SECTION STYLES (UPDATED)
        ------------------------------ */
        .sales-usps-section {
              padding: 55px 0;
    background-color: #ffffff;
    border-top: 1px solid #a1d183;
/*     border-bottom: 1px solid #a1d183; */
        }

        .sales-usps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr); 
            gap: 40px; /* Increased gap slightly for plain layout */
            align-items: start;
        }

        /* -----------------------------
           CARD STYLES (UPDATED - PLAIN)
        ------------------------------ */
        .sales-usp-card {
         background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
        }

        /* Removed hover lift effect for plain text */
        
        /* -----------------------------
           ICON STYLES
        ------------------------------ */
        .sales-usp-icon {
              width: 50px;
    height: 50px;
            margin-bottom: 10px;
        }

        .sales-usp-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Filter for Dark Teal #145459 */
            filter: brightness(0) saturate(100%) invert(26%) sepia(16%) saturate(1637%) hue-rotate(137deg) brightness(96%) contrast(92%);
        }

        /* -----------------------------
           TEXT STYLES
        ------------------------------ */
        .sales-usp-heading {
            font-family: 'Nexa', sans-serif;
            font-weight: 900;
            font-size: 18px;
            line-height: 1.3;
            margin: 0;
            color: #145459;
        }

        .sales-usp-content {
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            color: #145459;
        }

        /* -----------------------------
           RESPONSIVE BEHAVIOR
        ------------------------------ */
        @media (max-width: 1200px) {
            .sales-usps-grid {
                grid-template-columns: repeat(3, 1fr); 
                gap: 30px;
            }
        }

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

        @media (max-width: 600px) {
            .sales-usps-section {
                padding: 50px 16px;
				padding-bottom:0 !important;
            }
            
            .sales-usps-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

/* --- Section Basics --- */
.clients-section {
    padding: 60px 20px 85px 20px;
    background-color: #135459; /* Very subtle tint to make white cards pop */
    overflow: hidden;
}

/* --- Heading Style (Your Request) --- */
.clients-heading {
    text-align: center;
    color: #a1d183 !important;
    font-family: "Nexa", sans-serif;
    font-weight: 900;
    font-style: normal;
	text-transform:uppercase;
    font-size: 30px; /* Adjusted for better visibility */
    margin-bottom: 50px;
    margin-right: 0; /* Centered usually, but respected your snippet */
  
    letter-spacing: 1px;
}

/* --- The "Cool" Logo Card --- */
.client-card {
    background: #ffffff;
    border: 1px solid #e5eef0; /* Subtle border */
    border-radius: 0px; /* Soft rounded corners */
    padding: 20px;
    height: 100px; /* Fixed height for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(20, 84, 89, 0.05); /* Very light teal shadow */
    width: 100%;
    box-sizing: border-box;
}

/* Logo Image Styling */
.client-card img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    
    /* Default State: Grayscale & slightly faded */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* --- Hover Effects --- */
.client-card:hover {
    transform: translateY(-5px); /* Lift effect */
    border-color: #145459; /* Your teal color on border */
    box-shadow: 0 10px 20px rgba(20, 84, 89, 0.15); /* Stronger shadow */
}

.client-card:hover img {
    filter: grayscale(0%); /* Full color */
    opacity: 1;
}

/* Ensure link fills the card */
.client-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* --- Layouts --- */

/* Swiper Wrapper adjustment for spacing */
.swiper-wrapper {
    align-items: center;
}

/* Static Row (<= 5 items) */
.clients-static-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.static-item {
    width: 18%; /* Fits 5 items roughly */
    min-width: 150px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .clients-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .client-card {
        height: 80px;
        padding: 15px;
    }
    
    .client-card img {
        max-height: 35px;
    }
}

.swiper, swiper-container {
	padding-top:10px !important;
	padding-bottom:10px !important;
}

/* 1. Force the smooth continuous flow */
.clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* 2. Fix for "Stopped" state (Optional but good) */
/* When we pause it manually, we want it to stop instantly, not slide to a halt */
.clients-swiper:hover .swiper-wrapper {
    transition-timing-function: ease-out !important;
}

/* 1. Force the smooth continuous flow */
.clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* 2. When hovering, switch to 'ease-out' so it stops naturally, not abruptly */
.clients-swiper:hover .swiper-wrapper {
    transition-timing-function: ease-out !important;
}

/* 3. Ensure slides have a flexible width so they don't break the calculation */
.clients-swiper .swiper-slide {
    width: auto;
}



/* Section Base */
.el-challenges-section {
    background-color: #F9FAFB;
    padding: 100px 0;
    font-family: "Nexa", sans-serif;
    border-top: 1px solid #a1d183;
}
.el-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headers */
.el-challenges-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}
.el-sub-tag {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6CC24A;
    margin-bottom: 20px;
}
.el-section-title {
    text-align: center;
    color: #145459 !important;
    font-family: "Nexa", sans-serif;
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Grid Layout */
.el-challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .el-challenges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .el-challenges-grid { grid-template-columns: repeat(3, 1fr); }
}

.el-challenge-card {
   background: #ffffff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #a1d183;
    border-bottom: 3px solid #a1d183;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease, border-color 0.3s 
ease;
}

.el-challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(20, 84, 89, 0.15);
    
    /* 3. On hover, we just change the color, not the size (No Jumping!) */
    border-bottom: 3px solid #a1d183;
}

.el-card-inner { flex: 1; }

/* Icons */
.el-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(108, 194, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}

.el-challenge-card:hover .el-icon-wrapper {
    background: #6CC24A;
}

.el-card-icon {
    width: 32px;
    height: 32px;
    /* Forces icon to Dark Teal initially */
    filter: brightness(0) saturate(100%) invert(26%) sepia(13%) saturate(2259%) hue-rotate(143deg) brightness(95%) contrast(92%);
    transition: filter 0.3s ease;
}

.el-challenge-card:hover .el-card-icon {
    filter: brightness(0) invert(1); 
}

/* Text */
.el-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #145459;
    margin-bottom: 15px;
    font-family: "Nexa", sans-serif;
}
.el-card-desc {
    font-size: 16px;
    color: #5A5A5A;
    line-height: 1.6;
    font-family: sans-serif;
    margin: 0;
}


/* ============================================================
   EVERLEAF – PROCESS TIMELINE V2 (FULL FINAL CSS)
   Self-contained. Paste once. Nothing else required.
============================================================ */

/* ---------- SECTION BASE ---------- */
.ev-process--v2{
  background:#fff;
  padding: 48px 0;
  font-family: 'Nexa', sans-serif;
  color:#0f1f1f;
}

.ev-process--v2 .ev-process__wrap{
  
  margin: 0 auto;
}

/* ---------- HEADER ---------- */
.ev-process--v2 .ev-process__kicker{
  color:#a1d183;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.ev-process--v2 .ev-process__title{
  color:#145459;
  font-weight:900;
  font-size:50px;
  line-height:1.05;
  margin:0 0 8px 0;
}

.ev-process--v2 .ev-process__subtitle{
  color:rgba(15,31,31,.7);
  max-width:720px;
}

/* ---------- TIMELINE ---------- */
.ev-process--v2 .ev-timeline{
  position:relative;
  margin-top:32px;
}

/* center line */
.ev-process--v2 .ev-timeline:before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  transform:translateX(-50%);
  background:linear-gradient(
    to bottom,
    rgba(20,84,89,.15),
    rgba(161,209,131,.6),
    rgba(20,84,89,.15)
  );
}

/* ---------- TIMELINE ITEM ---------- */
.ev-process--v2 .ev-timeline__item{
  position:relative;
  padding:16px 0;
}

/* ---------- NUMBER DOT ---------- */
.ev-process--v2 .ev-timeline__dot{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#145459;
  border:3px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
}

.ev-process--v2 .ev-timeline__dot span{
  color:#fff;
  font-weight:900;
  font-size:15px;
}

/* ---------- CARD ---------- */
.ev-process--v2 .ev-timeline__card{
  width:44%;
  background:#fff;
  border:1px solid rgba(20,84,89,.15);
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 38px rgba(0,0,0,.06);
  position:relative;
}

/* connector arm */
.ev-process--v2 .ev-timeline__card:before{
  content:"";
  position:absolute;
  top:50%;
  width:44px;
  height:2px;
  background:#a1d183;
  transform:translateY(-50%);
}

/* left cards */
.ev-process--v2 .ev-timeline__item:nth-child(odd) .ev-timeline__card{
  margin-right:auto;
  transform:translateX(-8px);
}
.ev-process--v2 .ev-timeline__item:nth-child(odd) .ev-timeline__card:before{
  right:-44px;
}

/* right cards */
.ev-process--v2 .ev-timeline__item:nth-child(even) .ev-timeline__card{
  margin-left:auto;
  transform:translateX(8px);
}
.ev-process--v2 .ev-timeline__item:nth-child(even) .ev-timeline__card:before{
  left:-44px;
}

/* ---------- CARD TEXT ---------- */
.ev-process--v2 .ev-timeline__card h3{
  margin:0 0 8px 0;
  color:#145459;
  font-weight:900;
  font-size:17px;
}

.ev-process--v2 .ev-timeline__card p{
  margin:0 0 12px 0;
  color:rgba(15,31,31,.7);
  font-size:14px;
  line-height:1.6;
}

/* ---------- TAGS ---------- */
.ev-process--v2 .ev-timeline__tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.ev-process--v2 .ev-tag{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(161,209,131,.2);
  border:1px solid rgba(161,209,131,.35);
  color:#145459;
  font-size:12px;
  font-weight:800;
}

/* ---------- CTA ---------- */
.ev-process--v2 .ev-process__cta--row{
  margin-top:28px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.ev-process--v2 .ev-btn--primary{
  background:none;
  box-shadow:none;
  padding:0;
  color:#145459 !important;
  font-family:'Nexa', sans-serif;
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:920px){
  .ev-process--v2 .ev-timeline:before{
    left:18px;
    transform:none;
  }

  .ev-process--v2 .ev-timeline__dot{
    left:18px;
    width:34px;
    height:34px;
  }

  .ev-process--v2 .ev-timeline__dot span{
    font-size:13px;
  }

  .ev-process--v2 .ev-timeline__card{
    width:100%;
    margin-left:54px !important;
    transform:none !important;
  }

  .ev-process--v2 .ev-timeline__card:before{
    left:-36px !important;
    width:36px;
  }

  .ev-process--v2 .ev-process__title{
    font-size:34px;
  }
}


/* =========================================
   BASE STYLES
   ========================================= */
.pricing-section-container {
    font-family: 'Nexa', sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
/*     border-top: 1px solid #a1d183; */
    padding-top: 55px;
/*     border-bottom: 1px solid #a1d183; */
    padding-bottom: 55px;
}

.pricing-section-container * {
    box-sizing: border-box;
	 
}

/* =========================================
   CONCEPT 1: The "Sidebar Power Card"
   ========================================= */
.pricing-c1-wrapper {
    width: 75%;  /* Updated as requested */
    margin: 0 auto; /* This centers the 75% width block */
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 84, 89, 0.15);
    display: flex;
    flex-wrap: wrap;
}

.pricing-c1-content {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.pricing-c1-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #145459; /* Brand Dark */
	text-align:left !important;
}

.pricing-c1-sub {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.5;
}

.pricing-c1-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-c1-list li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: #145459; /* Brand Dark */
}

/* Custom Green Checkmark */
.pricing-c1-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    width: 24px;
    background: rgba(161, 209, 131, 0.3); /* Green with opacity */
    color: #145459;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
}

.pricing-c1-sidebar {
    flex: 0 0 380px;
    background-color: #145459; /* Brand Dark */
    color: #ffffff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-c1-price {
    font-size: 48px;
    font-weight: 700;
    color: #a1d183; /* Brand Green */
    line-height: 1;
    margin-bottom: 15px;
}

.pricing-c1-disclaimer {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #ffffff !important;
}

.pricing-c1-btn {
    display: inline-block;
    background-color: #a1d183; /* Brand Green */
    color: #145459; /* Dark Text */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.pricing-c1-btn:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .pricing-c1-wrapper { 
        width: 100%; /* Go full width on smaller screens */
        flex-direction: column; 
    }
    .pricing-c1-sidebar { flex: auto; padding: 40px 20px; }
}


  /* SCOPED STYLES: Only affects elements inside .el-wrapper */

 /* --- SCOPED STYLES --- */

.page-template-page-customer-care .slide-container ul li {
	    min-height: 53px !important;
}

.page-template-page-customer-care .cta-button-wrapper {
	display:none !important;
}



.problems-and-solutions-section {
	display:none !important;
	    border-bottom: 1px solid #a1d183;
}
        
        .el-scope {
            margin-top: 50px;
            margin-bottom: 50px;
        }
        
        /* Stronger Reset */
        .el-wrapper, .el-wrapper *, .el-wrapper *::before, .el-wrapper *::after {
            box-sizing: border-box;
        }

        /* Main Wrapper - Replaces .container */
        .el-wrapper {
            font-family: 'Nexa', 'Montserrat', Helvetica, Arial, sans-serif;
          
            margin: 0 auto;
            width: 100%;
            line-height: 1.5;
            color: #1f2937;
            padding: 0 10px;
        }

        @media (min-width: 768px) {
            .el-wrapper {
                padding: 0 20px;
            }
        }

        /* --- HEADER ROW --- */
        .el-header-row {
            display: flex;
            flex-direction: row;
            margin-bottom: 0;
            width: 100%;
        }

        .el-header-col {
            width: 50%;
            padding: 0 16px 24px 16px;
            vertical-align: top;
        }

        @media (min-width: 768px) {
            .el-header-col {
                       padding: 0 5px 17px 0px;
            }
        }

        /* Shared Header Styling */
        .el-header-col .el-headline {
            color: #1f2937;
            font-size: 1.125rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.25;
            hyphens: auto;
        }
        
        .el-header-col .el-intro-text p {
             color: #1f2937 !important;
             font-size: 0.875rem;
             margin-bottom: 8px;
             line-height: 1.5;
        }
        
        .el-header-col .el-intro-bold {
            margin-top: 12px;
            display: block;
            font-weight: 700;
            color: #1f2937;
        }

        @media (min-width: 768px) {
            .el-header-col .el-headline {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }
            .el-header-col .el-intro-text p {
                font-size: 1.125rem;
                margin-bottom: 12px;
            }
            .el-header-col .el-intro-bold {
                margin-top: 20px;
            }
        }

        /* --- EXTERNAL OUTRO --- */
        .el-external-outro {
            margin-top: 40px;
            max-width: 900px;
            color: #145459; 
            padding: 0 16px;
        }
        
        @media (min-width: 768px) {
            .el-external-outro {
                padding: 0 0px;
            }
        }

        .el-external-outro h4 {
            font-weight: 800;
            font-size: 1.125rem;
            margin: 0 0 12px 0;
            color: #145459;
        }

        .el-external-outro p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            color: #145459 !important;
        }

        @media (min-width: 768px) {
            .el-external-outro h4 { font-size: 1.25rem; }
            .el-external-outro p { font-size: 1.125rem; }
        }

        /* --- GRID LAYOUT --- */
        .el-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-radius: 0px;
            overflow: hidden;
            background-color: #fff;
        }

        /* Cell Styling */
        .el-cell {
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        @media (min-width: 768px) {
            .el-cell {
                       padding: 16px 20px;
            }
        }

        .el-cell-left {
            background-color: #f3f4e5;
            color: #145459;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .el-cell-right {
            background-color: #a1d183;
            color: #ffffff;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Remove border from last row */
        .el-cell:nth-last-child(1), .el-cell:nth-last-child(2) {
            border-bottom: none;
        }

        /* Decorative Element */
        .el-deco-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background-color: #ffffff;
            opacity: 0.1;
            border-bottom-left-radius: 9999px;
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .el-deco-shape {
                width: 128px;
                height: 128px;
            }
        }

        /* Item Content Styling */
        .el-item-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        @media (min-width: 768px) {
            .el-item-content {
                flex-direction: row;
                gap: 16px;
            }
        }

        /* Icons */
        .el-icon-wrapper {
            min-width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            align-self: flex-start; 
            max-width: 24px !important; /* RESTORED: Max width enforced */
        }

        .el-icon-left {
            /* Inherits color */
        }

        .el-icon-right {
            background-color: #ffffff;
            color: #a1d183;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        /* Text Styling */
        .el-item-title {
            font-weight: 700;
            font-size: 0.9rem;
            margin: 0 0 4px 0;
            line-height: 1.3;
        }

        .el-item-desc {
            margin: 0;
            line-height: 1.4;
            opacity: 0.9;
            font-size: 0.8rem;
        }

        .el-cell-right .el-item-desc {
            color: #fff !important;
            opacity: 0.95;
        }

        @media (min-width: 768px) {
            .el-item-title { font-size: 1.125rem; }
            .el-item-desc { font-size: 1rem; line-height: 1.5; }
        }




/* --- VARIABLES --- */
:root {
    --v2-primary-green: #145459;
    --v2-primary-green-dark: #95c578; /* Slightly darker for distinct elements */
    --v2-text-white: #ffffff;
    --v2-header-height: 80px;
    --v2-font-main: "Nexa", "Montserrat", sans-serif;
}

/* --- HEADER CONTAINER --- */
.v2-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--v2-header-height);
    background-color: var(--v2-primary-green);
    color: var(--v2-text-white);
    z-index: 1000;
     padding: 55px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.v2-navbar.v2-scroll-hide { transform: translateY(-100%); }
.v2-navbar.v2-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* --- LOGO --- */
.v2-logo a, .v2-logo .custom-logo-link {
    text-decoration: none;
    color: var(--v2-text-white);
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}
.v2-logo img, .custom-logo {     height: 63px;
    width: auto; }

/* --- DESKTOP MENU --- */
.v2-main-nav { height: 100%; }
.v2-main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}
.v2-main-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.v2-main-nav a {
    text-decoration: none;
    color: var(--v2-text-white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

/* Hover Effect: Smooth subtle highlight block */
.v2-main-nav > ul > li:hover > a {
    background-color: rgba(255,255,255,0.1);
}

/* Icons (Left side) */
.v2-main-nav a::before {
    content: "\f054"; /* Chevron Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.75rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
    margin-top: 1px;
}
.v2-main-nav a:hover::before { transform: translateX(3px); opacity: 1; }
.v2-main-nav a::after { display: none; } /* Remove old underline */

/* --- DROPDOWN (DESKTOP) --- */
.v2-main-nav .sub-menu {
    position: absolute;
    top: 56px; /* Flush with bottom */
    left: 0;
    min-width: 250px;
    background-color: var(--v2-primary-green);
    
    /* Visual separation from header */
    border-top: 1px solid rgba(255,255,255,0.2); 
    
    /* Improved Dropdown Styling */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 0 0 8px 8px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    z-index: 1100;
	        height: auto !important;
}

/* Show on Hover */
.v2-main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v2-main-nav .sub-menu li {
    display: block;
    height: auto;
    margin: 0;
}

.v2-main-nav .sub-menu a {
    color: var(--v2-text-white);
    padding: 12px 25px;
    font-size: 0.9rem;
    display: block;
    height: auto;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Very subtle divider */
}
.v2-main-nav .sub-menu li:last-child a { border-bottom: none; }

.v2-main-nav .sub-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(5px);
}
.v2-main-nav .sub-menu a::before { display: none; }

/* Parent Arrow Indicator */
.v2-main-nav .menu-item-has-children > a { padding-right: 40px; }
.v2-main-nav .menu-item-has-children > a::after {
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.v2-main-nav li:hover > a::after { transform: translateY(-50%) rotate(180deg); }


/* --- MOBILE MENU --- */
.v2-hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
}
.v2-hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--v2-text-white);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.v2-hamburger.v2-active div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.v2-hamburger.v2-active div:nth-child(2) { opacity: 0; }
.v2-hamburger.v2-active div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* Drawer */
.v2-mobile-menu {
    position: fixed;
    top: var(--v2-header-height); /* Starts exactly below header */
    right: 0;
    height: calc(100vh - var(--v2-header-height));
    width: 100%;
    background-color: var(--v2-primary-green);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    overflow-y: auto;
}
.v2-mobile-menu.v2-active { transform: translateX(0); }

.v2-mobile-menu ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.v2-mobile-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.v2-mobile-menu a {
    text-decoration: none;
    color: var(--v2-text-white);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px; /* Bigger touch targets */
}

/* Mobile Dropdown Styling */
.v2-mobile-menu .sub-menu {
    display: none;
    background-color: rgba(0,0,0,0.1); /* Darker inset look */
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.1);
    margin: 0;
}

.v2-mobile-menu .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 1; /* Override slide-in */
    transform: none;
}
.v2-mobile-menu .sub-menu li:last-child { border-bottom: none; }

.v2-mobile-menu .sub-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    padding: 15px 40px; /* More Indentation */
    color: rgba(255,255,255,0.9);
}

/* Mobile State Classes */
.v2-dropdown-open > .sub-menu {
    display: block;
    animation: mobileFadeIn 0.3s ease;
}

/* Rotate arrow on mobile open */
.v2-dropdown-open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

@keyframes mobileFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Stagger Animation */
.v2-mobile-menu.v2-active li { opacity: 1; transform: translateY(0); }
.v2-mobile-menu.v2-active > ul > li:nth-child(1) { transition-delay: 0.05s; }
.v2-mobile-menu.v2-active > ul > li:nth-child(2) { transition-delay: 0.1s; }
.v2-mobile-menu.v2-active > ul > li:nth-child(3) { transition-delay: 0.15s; }
.v2-mobile-menu.v2-active > ul > li:nth-child(4) { transition-delay: 0.2s; }
.v2-mobile-menu.v2-active > ul > li:nth-child(5) { transition-delay: 0.25s; }

/* --- BREAKPOINTS --- */
@media screen and (max-width: 768px) {
    .v2-main-nav { display: none; }
    .v2-hamburger { display: block; }
}



  
        /* This wrapper replaces the previous body styling */
        .everleaf-section-wrapper {
            background-color: #145459; /* Dark Teal */
            color: #ffffff;
            /* CHANGED: Font updated to Nexa */
            font-family: "Nexa", sans-serif;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
            padding: 4rem 0; /* Vertical padding for the section */
            box-sizing: border-box;
            overflow: hidden;
            position: relative;
			    border-bottom: 3px solid #a1d183;
        }

.everleaf-section-wrapper .nav-controls {
	display:none;
}

        /* Container for the inner content */
        .process-container {
            display: flex;
            width: 100%;
            max-width: 1100px;
            gap: 4rem;
            align-items: flex-start;
            padding: 0 2rem; /* Horizontal padding */
            box-sizing: border-box;
            z-index: 1; /* Ensure content is above background effects */
            /* CHANGED: Added min-height to prevent jumping when content changes */
                min-height: 580px;
        }

        /* LEFT SIDE: Big Icon Area */
        .left-panel {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: sticky; 
            top: 100px;
            min-height: 400px;
        }

        /* The glowing background blob */
        .glow-effect {
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, #a1d183 0%, rgba(0,0,0,0) 70%); /* Light Green */
            opacity: 0.15;
            filter: blur(60px);
            z-index: 0;
            transition: all 0.5s ease;
            pointer-events: none; /* Prevent interference */
        }

        /* The Big Icon */
        .big-icon-wrapper {
            z-index: 1;
            font-size: 12rem;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255,255,255,0.8);
            /* Fallback color */
            color: rgba(20, 84, 89, 0.5); 
            text-shadow: 0 0 40px rgba(161, 209, 131, 0.4); /* Accent Glow */
            transition: all 0.4s ease-in-out;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInIcon 0.5s forwards;
        }
        
        @supports (-webkit-text-stroke: 1px white) {
            .big-icon-wrapper {
                color: transparent;
                -webkit-text-stroke: 1.5px rgba(255,255,255,0.8);
            }
        }
        
        @keyframes fadeInIcon {
            to { opacity: 1; transform: translateY(0); }
        }

        /* RIGHT SIDE: Content */
        .right-panel {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Aligns content to top so it doesn't float in middle */
        }

        .section-header {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #a1d183; /* Light Green */
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-title {
            font-size: 2.5rem;
            line-height: 1.1;
            margin: 0 0 2.5rem 0;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            color: #ffffff;
        }

        /* Navigation Controls */
        .nav-controls {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }

        .nav-arrow {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .nav-arrow:hover {
            border-color: #a1d183;
            background: #a1d183;
            color: #145459; /* Dark text on light button */
            box-shadow: 0 0 15px rgba(161, 209, 131, 0.4);
            transform: translateY(-2px);
        }

        /* The List */
        .process-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            /* Border line on the left */
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .process-item {
            padding-left: 2.5rem;
            position: relative;
            cursor: pointer;
            margin-bottom: 0;
            padding-bottom: 2rem;
            transition: all 0.3s ease;
            opacity: 0.5;
        }
        
        .process-item:last-child {
            padding-bottom: 0;
        }

        /* The indicator bar for active item */
        .process-item::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 0;
            height: 100%;
            width: 3px;
            background: #a1d183; /* Light Green */
            transform: scaleY(0);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: top;
            opacity: 0;
            box-shadow: 0 0 15px #a1d183;
        }

        .process-item:hover {
            opacity: 0.8;
        }

        .process-item.active {
            opacity: 1;
        }

        .process-item.active::before {
            transform: scaleY(1);
            opacity: 1;
        }

        .item-header {
            display: flex;
            align-items: baseline;
            gap: 1rem;
        }

        .step-number {
            /* CHANGED: Font updated to Nexa */
            font-family: "Nexa", sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: #a1d183; /* Light Green */
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            color: #ffffff;
            transition: color 0.3s ease;
        }
        
        .process-item.active .step-title {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(161, 209, 131, 0.2);
        }

        .step-content {
            max-height: 0;
            overflow: hidden;
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6); /* Dim Text */
            margin-top: 0;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
        }

        .process-item.active .step-content {
            max-height: 300px;
            margin-top: 1rem;
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .process-container {
                flex-direction: column;
                gap: 3rem;
                padding: 1.5rem;
                /* Reset min-height for mobile so it doesn't look weirdly long */
                min-height: auto;
            }
            .left-panel {
                position: relative;
                top: 0;
                order: -1;
                min-height: 250px;
                width: 100%;
            }
            .big-icon-wrapper {
                font-size: 8rem;
            }
            .right-panel {
                width: 100%;
                /* Reset min-height for mobile */
                min-height: auto;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }







        /* --- USER PROVIDED CSS --- */
        
        .outer-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
/*             border-bottom: 1px solid #a1d183; */
/*             background-color: #f4f4f4; */
        }

        .custom-container {
            width: 100%;
           
            margin: 0 auto;
        }

        .slide-container {
           
            padding: 80px 20px 40px 20px;
            display: flex;
            flex-direction: column;
            gap: 45px;
            width: 100%;
            box-sizing: border-box;
        }

        .columns-row {
            display: flex;
            gap: 40px;
            width: 100%;
            align-items: stretch; 
        }

        .col-wrapper {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .col-wrapper h2 {
            height: 60px; 
            margin: 0 0 25px 0; 
            font-weight: 900;
            font-family: 'Nexa', sans-serif;
            font-size: 29px;
            color: #2c3e50;
            text-align: left;
            line-height: 1.2;
            display: flex;
            align-items: flex-start; 
                padding-left: 0px;
        }

        .column {
            position: relative;
            flex: 1; 
            border: none; 
            padding: 40px 30px 30px 30px; 
            display: flex;
            flex-direction: column;
            border-radius: 8px;
            height: 100%; 
            transition: box-shadow 0.3s ease;
        }

        /* Left Box (Problem) */
        .column.problem {
               background-color: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
        }

        /* Right Box (Solution) */
        .column.solution {
            background-color: #f0f9f0;
            box-shadow: 0 20px 40px rgba(20, 84, 89, 0.15);
            z-index: 2;
        }

        .icon-svg {
            width: 45px;
            height: 45px;
            fill: white;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            flex-grow: 1;
        }

        .slide-container ul li {
            font-family: 'Nexa', sans-serif;
            color: #333;
            font-size: 14px;
            line-height: 1.5;
            outline: none;
            text-align: left;
            display: flex;
            align-items: flex-start;
            min-height: 80px; 
            margin-bottom: 0; 
            padding-bottom: 5px;
            box-sizing: border-box;
        }

        .check-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            margin-top: 3px;
            margin-right: 12px;
            fill: #a1d183;
        }

        /* New Red X Icon Style */
        .x-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            margin-top: 3px;
            margin-right: 12px;
            fill: #e74c3c; /* Red color */
        }

        .slide-container ul .li-content {
            flex: 1;
            font-size: 16px;
            color: #000 !important;
        }

        .slide-container ul li strong {
            font-weight: 900;
            display: block;
            margin-bottom: 3px;
            font-size: 18px;
        }

.cta-button-wrapper {
    text-align: center;
}
        
        .column.problem ul li strong { color: #000; }
        .column.solution ul li strong { color: #145459; }

        /* CTA Button - Made smaller */
        .cta-button {
            display: inline-block; /* Changed from block to inline-block to allow sizing control if needed, usually full width looks best but padding reduced */
            width: auto; /* Or keep 100% but padding smaller. Let's maximize width but reduce padding/size */
            width: auto;
            background-color: #145459 !important;
            color: white;
            text-align: center;
               padding: 15px 30px;
            margin-top: 0px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 900;
            font-size: 14px; /* Slightly smaller font */
/*             text-transform: capitalize; */
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
            box-sizing: border-box;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }

        /* Conclusion Section UPDATED - Removed "Box" styling */
        .conclusion-box {
            width: 100%;
            box-sizing: border-box;
            background-color: transparent; /* Transparent background */
            background-image: none; 
            box-shadow: none; /* No shadow */
            padding: 40px 0; /* Reduced padding since no box */
            margin-top: 10px;
            display: flex;
            flex-direction: row; 
              align-items: unset !important;
              gap: 50px;
			padding-bottom:0 !important;
        }

        .conclusion-title {
         font-weight: 600;
			    color: #a1d183;

    display: block;
    font-size: 21px;
    white-space: nowrap;
    flex-shrink: 0;
        }

        .conclusion-text {
                font-size: 27px;
    line-height: 1.5;
    color: #145459 !important;
    text-align: center;
    margin-top: 0;
    flex-grow: 1;
    font-weight: 700;
    margin-top: -7px !important;
        }

        @media (max-width: 1366px) {
            .col-wrapper h2 {
                height: 70px; 
            }
            .slide-container ul li {
                min-height: 95px;
            }
        }

@media (max-width: 1280px) {
	.slide-container {
		    padding: 0px 0px 15px 0px !important; 
	}
	.col-wrapper h2 {
		    font-size: 26px !important;
	}
}


        @media (max-width: 800px) {
            .columns-row {
                flex-direction: column;
                gap: 80px;
            }
            
            .col-wrapper h2 {
                margin-bottom: 20px;
                height: auto; 
                text-align: center;
            }

            .slide-container {
                padding-top: 40px;
                padding-left: 0px;
                padding-right: 0px;
            }
            
            .slide-container ul li {
                min-height: auto; 
                margin-bottom: 25px;
            }

            .custom-container {
				padding-left:20px !important;
				padding-right:20px !important;
                margin-top: 40px;
                padding-bottom: 40px;
            }
            
            .outer-wrapper {
                padding-bottom: 0;
            }
            
            .column.solution {
                transform: none; 
            }

            .conclusion-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }
            
            .conclusion-text {
                text-align: center;
            }
        }





        /* Utility Classes */
        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; }
        .relative { position: relative; }
        
        /* Layout Wrappers */
        .section-wrapper {
            /* Removed min-height: 100vh */
            display: flex;
            align-items: center;
            justify-content: center;
            /* Reduced vertical padding significantly */
/*             padding: 2rem 1rem;  */
			padding-top:0 !important;
            position: relative;
            background-color: #ffffff;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 10;
            margin: 0 auto;
        }

        /* Background Effects */
        .mesh-pattern {
            background-image: radial-gradient(#145459 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.05;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        }
 /* --- NEW OVERVIEW SECTION STYLES --- */
        .header-content {
/* 			    margin-bottom: 50px !important; */
            max-width: unset !important;
            margin: 0 auto 0 auto; /* Margin unten entfernt, da kpi-section margin-top hat */
            
            /* Background definition provided */
            background: linear-gradient(to right, #f2f4f7 0%, #f2f4f7 55%, rgba(242, 244, 247, 0.98) 70%, rgba(242, 244, 247, 0.6) 75%, rgba(242, 244, 247, 0) 80%), url(https://stagging.everleaf-bpo.com/wp-content/uploads/2026/01/KPI-2-scaled.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 95% center;
            padding: 100px 100px;
            
            /* Zentrierung für Header-Inhalte */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertikal zentrieren falls nötig */
            /* Wenn der Text linksbündig im 50%-Container sein soll, kein align-items: center für den Wrapper, 
               aber vielleicht für die Headline? Ich lasse es Standard (links), da der Wrapper eine feste Breite hat. */
        }

        /* Styles für die neue Überschrift */
        .main-headline {
            font-size: 24px !important;
            font-weight: 700;
            margin-bottom: 1.5rem; 
            line-height: 1.25;
            color: #145459;
            text-transform: uppercase; /* Optional, passt oft gut zu "Strategy" */
        }

        .kpi-section-overview-wrapp {
			text-align:left;
            width: 50%;
        }

        .kpi-section-overview-wrapp p {
            color: #145459;
            font-weight: 600;
            font-size: 18px; /* Explizit auf 18px gesetzt */
            font-family: "Nexa", sans-serif; /* Schriftart hinzugefügt */
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Mobile Responsiveness for Overview */
        @media (max-width: 900px) {
			.kpi-section {
				padding:2em !important;
			}
            .header-content {
                background: #f2f4f7; /* Fallback for mobile readability */
                padding: 40px 20px;
            }
            .kpi-section-overview-wrapp {
                width: 100%;
            }
            .main-headline {
                margin-top: 0;
            }
        }

.kpi-section-overview-wrapp {
    width: 50%;
}

        .main-headline {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem; /* Reduced margin */
            line-height: 1.25;
			color:#145459;
			    font-size: 24px !important;
        }

        .sub-headline {
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            font-weight: 900;
			color:#145459;
			        font-size: 24px !important;align-content;
			text-transform: capitalize !important;
        }

.kpi-section-overview-wrapp p {
    color: #145459;
    font-weight: 600;
}

        /* Grid Layout */
        .metrics-grid {
         display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
               margin-bottom: 30px !important;
        }

        /* Card Styles */
        .stat-card {
            background: #ffffff;
            border: 1px solid #f3f4f6;
            border-radius: 0.75rem;
            padding: 1.5rem; /* Reduced padding */
            display: flex;
            flex-direction: column;
            align-items: center; 
            justify-content: center;
            text-align: center;
            height: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
            border-color: #a1d183;
        }

        /* Typography inside cards */
        .metric-number {
            background: linear-gradient(135deg, #a1d183 0%, #4db6ac 50%, #145459 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* No color !important here to preserve gradient */
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.1;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 2.75rem; 
        }
        
        .metric-icon-svg {
            height: 2.5rem;
            width: auto;
        }

        .metric-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            white-space: nowrap; 
            width: 100%;
			color:#145459;
        }

        .metric-desc {
            font-size: 0.75rem;
            line-height: 1.4;
            max-width: 95%;
            margin-left: auto;
            margin-right: auto;
        }

        .divider-bar {
            width: 2rem;
            height: 0.25rem;
            background-color: #145459;
            border-radius: 9999px;
            margin-top: auto;
            margin-bottom: 0;
            padding-top: 0.75rem; /* Reduced padding */
            box-sizing: content-box;
            background-clip: content-box;
        }

        /* Footer / Divider Section */
        .footer-divider-wrapper {
            position: relative;
            margin-top: 1.5rem; /* Reduced */
            margin-bottom: 1rem; /* Reduced */
            text-align: center;
        }

        .horizontal-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            border-top: 1px solid #f3f4f6;
            z-index: 1;
        }

        .badge-container {
            position: relative;
            z-index: 2;
            display: inline-block;
        }

        .badge {
            padding: 0.25rem 1rem;
            background-color: #ffffff;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
            border-radius: 9999px;
            border: 1px solid #e5e7eb;
			color:#145459;
        }

        .final-text {
            font-size: 1.125rem;
            font-weight: 300;
            line-height: 1.5;
            max-width: 48rem;
            margin: 0 auto;
			color:#145459;
			font-weight:700 !important;
        }

        .highlight-bold {
            font-weight: 600;
        }

        /* Responsive Breakpoints (Desktop) */
        @media (min-width: 768px) {
/*             .section-wrapper { padding: 2rem; } /* Reduced from 3rem */ */
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .main-headline {
                font-size: 2.25rem;
            }

            .sub-headline {
                font-size: 1rem;
            }

            .metric-number {
                font-size: 3rem;
                min-height: 3.3rem;
            }
            
            .metric-icon-svg {
                height: 3rem;
            }

            .final-text {
               font-size: 27px !important;
        width: 100% !important;
        max-width: 100% !important;
            }
        }

        @media (min-width: 1024px) {
           .metrics-grid {
                /* Changed from 4 to 3 to accommodate the new content structure */
                grid-template-columns: repeat(3, 1fr);
            }
            
            .metric-title {
                font-size: 1.1rem;
            }
        }


/* .page-id-240 .service-quote {
	display:none !important;
}
 */

  /* === GENERAL PAGE STYLING === */
  .contact-page {
    background-color: #f8f9f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
  }

  .custom-container {
    padding-left: 40px ;
    padding-right: 40px;
  }

  .left-side {
    padding-left: 0;
    margin-left: 0;
  }

  .contact-heading {
    color: #145459;
    font-weight: 800;
    font-size: 50px;
    margin-bottom: 1.2rem;
	  text-align:left;
  }

  /* contact_text can include HTML, so treat as block */
  .contact-intro {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .contact-subtext {
    font-size: 1.1rem;
    max-width: 600px;
    font-weight: 900;
    color: #145459;
  }

  .contact-item {
    font-size: 1.1rem;
    color: #145459;
    font-weight: 500;
  }

  .contact-icon {
    width: 44px;
    height: 59px;
    object-fit: contain;
  }

  /* === CONTACT LINKS === */
  .contact-email,
  .contact-phone {
    color: #145459;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-email:hover,
  .contact-phone:hover {
    color: #0e3d3d;
    text-decoration: underline;
  }

  /* === CONTACT FORM STYLING === */
  .contact-form-wrapper {
    background: #fffaf6;
    border-left: 5px solid #145459;
    border-radius: 15px;
    padding: 25px 35px;
    max-width: 550px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wpcf7 form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
  .wpcf7 textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    transition: border-color 0.3s;
  }

  .wpcf7 textarea {
    height: 80px;
    resize: none;
  }

  .wpcf7 input:focus,
  .wpcf7 textarea:focus {
    border-color: #a1d184;
    outline: none;
  }

  .wpcf7 input[type="submit"] {
    background-color: #145459;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
    font-weight: 600;
    display: inline-block;
  }

  .wpcf7 input[type="submit"]:hover {
    background-color: #a1d184;
  }

  .flexi1 {
    display: flex;
    gap: 10px;
  }

  .wpcf7 form p label {
    width: 100%;
  }

  /* === RESPONSIVE === */


  @media (max-width: 991px) {
    .contact-form-wrapper {
      margin-top: 2rem;
      max-width: 100%;
      border-left: none;
      border-top: 5px solid #145459;
      padding: 25px;
    }

    .flexi1 {
      flex-direction: column;
      gap: 0px;
    }
  }
  }


        /* Renamed to avoid conflicts with global .container */
        .b2b-features-container {
/*             max-width: 1200px; */
            width: 100%;
            padding: 60px 20px;
        }

        /* Renamed to avoid conflicts with other grids */
        .b2b-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            align-items: stretch;
			padding-bottom:40px;
			padding-top:40px;
        }

        /* Feature Card Styling - Renamed */
        .b2b-feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* subtle border */
            border: 1px solid #eef0f2; 
        }

        .b2b-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(20, 84, 89, 0.08);
            border-color: #a1d184;
        }

        /* Icon Container - Renamed */
        .b2b-feature-icon {
            width: 90px;
            height: 90px;
            margin-bottom: 24px;
            /* No background circle - let the solid icons stand on their own */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .b2b-feature-icon svg {
            width: 100%;
            height: 100%;
            display: block;
            /* Drop shadow for depth */
            filter: drop-shadow(0px 4px 2px rgba(0,0,0,0.05));
        }

        /* Typography - Scoped to new class */
        .b2b-feature-card h1 {
            font-size: 20px;
            color: #145459;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .b2b-feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }


.page-template-page-service .contact-page {
    height: auto !important;
    min-height: unset !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}



/* Popup */
/* PREFIX: ger-popup- 
   Specific classes to avoid WordPress conflicts.
   NO CSS variables used.
   Hardcoded Green: #a1d183
*/

.ger-popup-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999; /* High Z-index to float above WP footer */
    width: 260px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Glassmorphism - Hardcoded colors */
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
    
    border-radius: 12px;
    padding: 20px 16px 16px;
    
    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;

    /* Animation State (Hidden by default) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive adjustment for mobile */
@media (max-width: 480px) {
    .ger-popup-container {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px); /* Full width minus margin on tiny screens */
        max-width: 260px;
    }
}

/* The class JS adds to show the popup */
.ger-popup-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Text Container */
.ger-popup-text-content {
    text-align: center;
    color: #1e293b;
}

/* Headings and Paragraphs */
.ger-popup-title {
    font-size: 16px;
    margin: 0 0 4px 0;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

.ger-popup-subtitle {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
    color: #1e293b;
}

/* Button Wrapper */
.ger-popup-actions-row {
    display: flex;
    width: 100%;
}

/* The specific apply button */
.ger-popup-apply-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.1s, background-color 0.2s;
    text-decoration: none;
    
    /* Flex center */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    
    /* Hardcoded Green #a1d183 */
    background-color: #a1d183; 
    color: #ffffff;
}

.ger-popup-apply-btn:hover {
    background-color: #8bc76e; /* Slightly darker green */
    text-decoration: none;
    color: #ffffff;
}

.ger-popup-apply-btn:active {
    transform: scale(0.96);
}

/* The 'X' Close Button */
.ger-popup-close-icon-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

/* The SVG inside the close button */
.ger-popup-close-svg {
    width: 16px;
    height: 16px;
    fill: #1e293b;
    opacity: 0.4;
}

.ger-popup-close-icon-btn:hover .ger-popup-close-svg {
    opacity: 1;
}




        /* Main Container */
        .kpi-section {
            background-color: #145459 !important; /* Hardcoded Dark Blue */
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
          
            width: 100%;
            padding: 5em;
            justify-content: center;
			margin-top:50px;
        }

        /* --- SHARED STYLES --- */
        
        h4 {
            font-weight: 900;
            color: #a1d183 !important; /* Hardcoded Green */
            font-size: 26px; 
            line-height: 1.1;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 2rem;
        }

        /* Specific styling for headers in the grid layout */
        .perfect-align-grid h4 {
            padding-left: 48px;
            padding-bottom: 0;
            margin-bottom: 0;
            font-size: 35px;
            font-weight: 900;
			text-align:left;
        }

        .highlight-text {
            color: #a1d183 !important; /* Hardcoded Green */
        }

        .arrow-icon {
            color: #a1d183 !important; /* Hardcoded Green */
            font-size: 1.5rem;
            margin-right: 1.5rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
            width: 24px;
            text-align: center;
        }

        .kpi-item {
            display: flex;
            align-items: flex-start;
        }

        .kpi-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
            color: #a1d183; /* Hardcoded Green */
        }

        .kpi-desc {
            font-size: 1.125rem;
            color: #e2e8f0;
            line-height: 1.6;
            font-weight: 400;
            margin: 0; /* Reset default p margin */
        }

        .efficiency-logo {
            height: 40px; 
            width: auto;
            margin-bottom: 1rem;
            display: block;
            filter: brightness(0) saturate(100%) invert(86%) sepia(21%) saturate(696%) hue-rotate(66deg) brightness(93%) contrast(87%);
        }

        /* --- ALIGNED GRID --- */
        .perfect-align-grid {
/*             max-width: 1400px; */
            width: 100%;
            display: grid;
            grid-template-columns: 1fr; 
            align-items: start;
               gap: 1.7rem 6rem;
        }

        @media (min-width: 900px) {
            .perfect-align-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .content-box {
            flex: 1;
			text-align:left;
        }


 /* --- KPI SECTION V2 STYLES (Renamed Section 2) --- */
        
        /* Renamed .kpi-section to .kpi-v2-section */
        .kpi-v2-section {
            background-color: #145459 !important; /* Hardcoded Dark Blue */
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            
            width: 100%;
            padding: 6rem 2rem;
            justify-content: center;
            margin-top: 0;
			margin-bottom:50px;
        }

        /* Scoped h4 to this section to avoid conflicts */
        .kpi-v2-section h4 {
            font-weight: 900;
            color: #a1d183 !important; /* Hardcoded Green */
            font-size: 26px; 
            line-height: 1.1;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 2rem;
        }

        /* Specific styling for headers in the grid layout */
        /* Renamed .perfect-align-grid to .kpi-v2-grid */
        .kpi-v2-grid h4 {
            padding-left: 48px;
            padding-bottom: 0;
            margin-bottom: 0;
            font-size: 26px;
            font-weight: 900;
            text-align: left;
        }

        /* Renamed .highlight-text to .kpi-v2-highlight */
        .kpi-v2-highlight {
            color: #a1d183 !important; /* Hardcoded Green */
            font-weight: bold;
        }

        /* Renamed .arrow-icon to .kpi-v2-arrow */
        .kpi-v2-arrow {
            color: #a1d183 !important; /* Hardcoded Green */
            font-size: 1.5rem;
            margin-right: 1.5rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
            width: 24px;
            text-align: center;
        }

        /* Renamed .kpi-item to .kpi-v2-item */
        .kpi-v2-item {
            display: flex;
            align-items: flex-start;
        }

        /* Renamed .kpi-title to .kpi-v2-title */
        .kpi-v2-title {
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 0.5rem;
            display: block;
            color: #a1d183; /* Hardcoded Green */
        }

        /* Renamed .kpi-desc to .kpi-v2-desc */
        .kpi-v2-desc {
            font-size: 1.125rem;
            color: #e2e8f0;
            line-height: 1.6;
            font-weight: 400;
            margin: 0;
        }

        /* Renamed .efficiency-logo to .kpi-v2-logo */
        .kpi-v2-logo {
            height: 40px; 
            width: auto;
            margin-bottom: 1rem;
            display: block;
            filter: brightness(0) saturate(100%) invert(86%) sepia(21%) saturate(696%) hue-rotate(66deg) brightness(93%) contrast(87%);
        }

        /* --- ALIGNED GRID --- */
        /* Renamed .perfect-align-grid to .kpi-v2-grid */
        .kpi-v2-grid {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr; 
            align-items: start;
            gap: 3rem 6rem;
        }

        @media (min-width: 900px) {
            .kpi-v2-grid {
                /* 1fr 2fr Layout: Header left, Content right */
                grid-template-columns: 1fr 2fr;
            }
        }

        /* Renamed .content-box to .kpi-v2-content */
        .kpi-v2-content {
            flex: 1;
            text-align: left;
        }

        /* Renamed .kpi-stack to .kpi-v2-stack */
        .kpi-v2-stack {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

.kpi-section-overview-wrapp h2 {
    font-weight: 900;
    margin-bottom: 25px;
    /* padding-left: 48px; */
    /* padding-bottom: 0; */
    /* margin-bottom: 0; */
    font-size: 26px;
    font-weight: 900;
    text-align: left;
}

.fancy-metallic-icon {
              --icon-color: #a1d183;
    background: linear-gradient(180deg, #d4f0c4 0%, #a1d183 45%, #4b7a32 55%, #a1d183 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 25px;
    position: relative;
    filter: drop-shadow(0 0 12px rgba(161, 209, 131, 0.6));
    margin-right: 20px;
        }

        /* Animated Chrome Shine */
        .fancy-metallic-icon::after {
            content: attr(data-icon);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                110deg, 
                transparent 40%, 
                rgba(255, 255, 255, 0.8) 50%, 
                transparent 60%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }



/* --- START COPYING CSS HERE --- */

        /* Scoped Section Wrapper */
        .testimonial-section {
            position: relative;
            width: 100%;
            /* Use the requested font family here on the wrapper */
            font-family: "Nexa", "Montserrat", sans-serif;
            background-color: #FDFDFD; /* Clean off-white background specific to this section */
            color: #1a202c;
            overflow: hidden; /* CRITICAL: This cuts off the blobs so they don't leak out */
            padding: 4rem 2rem; /* Spacing inside the section */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Background Aurora Effects (Scoped to .testimonial-section) */
        .glow-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            z-index: 0; /* Behind content */
            pointer-events: none;
        }

        /* Updated Blob Positions:
           - Pushed further down (bottom: -45%)
           - Widened to 70% width so they overlap in the middle
        */
        .blob-left {
            bottom: -45%; 
            left: -10%;
            width: 70%; /* Wide spread to cover center */
            height: 600px;
            background-color: #d1fae5; /* Light Emerald */
            animation: pulse 8s infinite alternate;
        }

        .blob-right {
            bottom: -45%; 
            right: -10%;
            width: 70%; /* Wide spread to cover center */
            height: 600px;
            background-color: #ccfbf1; /* Light Teal */
            animation: pulse 10s infinite alternate-reverse;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 0.7; }
        }

        /* Content Container (Keeps text above the blobs) */
        .testimonial-content {
            position: relative;
            z-index: 10; /* Ensures text is clickable and sharp above blobs */
            max-width: 100%;
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        /* Typography Styles */
        
        /* Label (Small & Light Green) */
        .testimonial-label {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #10b981; /* Emerald 500 */
            margin-bottom: 0.5rem;
        }

        /* Logo Placeholder */
        .testimonial-logo {
            font-family: 'Georgia', serif;
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
			margin-left:59px;
        }

        /* Quote (Bold, Big & Dark Green) */
        .testimonial-quote {
            font-weight: 700;
            font-size: 2.39rem;
            line-height: 1.3;
            color: #064e3b; /* Emerald 900 */
            width: 80%; /* 80% width constraint */
            max-width: unset !important;
            margin: 0 auto;
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .testimonial-quote {
                font-size: 1.5rem;
                width: 95%;
            }
            
            .blob-left, .blob-right {
                width: 100%; /* Full width on mobile to ensure coverage */
                height: 400px;
                bottom: -30%;
                filter: blur(60px);
            }
            
            .blob-left { left: -20%; }
            .blob-right { right: -20%; }
        }

        /* Attribution Section */
        .testimonial-attribution {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            margin-top: 1rem;
        }

        .author-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: #064e3b;
        }
        
        .author-title {
            font-size: 1rem;
            font-weight: 400;
            color: #4b5563;
        }

        .company-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: #059669;
            text-decoration: none;
            margin-top: 0.25rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }

        .company-link:hover {
            border-bottom-color: #059669;
        }
        /* --- END COPYING CSS HERE --- */

.testimonial-content h3 {
	    color: #145459 !important;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 50px;
    font-family: 'Nexa', sans-serif;
}

.smaller-font-size {
	font-size:25px !important;
	    line-height: 1.7;
}

   /* --- COMPONENT STYLES START --- */
.everleaf-results-section-wrapper {

    background: #145459 !important;

}



        .everleaf-results-section {

            font-family: 'Nexa', sans-serif;

            background-color: #145459 !important; /* Background is now strictly on this section */

            color: #ffffff;

            

            display: flex;

            flex-direction: row;

/*             max-width: 1600px;  */

            width: 100%;

            margin: 0 auto; /* Centers the section if used within another layout */

            padding: 60px 40px; /* Padding belongs to the section */

            gap: 120px; 

        }



        /* Linke Spalte: Haupt-Überschrift */

        .header-column {

            flex: 1; /* 50% Breite */

            padding-right: 20px;

            display: flex;

            align-items: flex-start; /* Oben ausgerichtet */

        }


.everleaf-results-section-wrapper .custom-container {
    margin-top: 0 !important;
}



       .everleaf-results-section h2 {

           color: #a1d183;
    
    line-height: 1.1;
    font-weight: 700;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 47px !important;
		       text-transform: uppercase;
        }

.everleaf-results-section h2 strong {
    color: #fff !important;

	    font-size: 55px !important;
}




        /* Rechte Spalte: Liste */

        .content-column {

            flex: 1; /* 50% Breite */

            display: flex;

            flex-direction: column;

            justify-content: flex-start; /* Liste beginnt ebenfalls oben */

        }



        .results-list {

            list-style: none;

            width: 100%;

        }



        .list-item {

            display: flex;

            align-items: flex-start;

            padding: 10px 0; /* Mehr Platz zwischen den Items */

            border-bottom: none; /* Keine Linien */

        }



        /* --- FANCY METALLIC ICON STYLES --- */

        .fancy-metallic-icon {

            --icon-color: #a1d183;

            /* Hintergrund-Verlauf für den Metallic-Look */

            background: linear-gradient(180deg, #d4f0c4 0%, #a1d183 45%, #4b7a32 55%, #a1d183 100%);

            background-size: 100% 100%;

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            color: transparent;

            

            display: inline-block;

            font-size: 35px; /* Große Pfeile */

            position: relative;

            filter: drop-shadow(0 0 8px rgba(161, 209, 131, 0.6));

            margin-right: 30px; /* Mehr Abstand zum Text */

            flex-shrink: 0;

            line-height: 1.2;

            margin-top: 5px; /* Ausrichtung zum Text */

        }



        /* Animated Chrome Shine */

        .fancy-metallic-icon::after {

            content: attr(data-icon);

            position: absolute;

            left: 0;

            top: 0;

            width: 100%;

            height: 100%;

            background: linear-gradient(

                110deg, 

                transparent 40%, 

                rgba(255, 255, 255, 0.8) 50%, 

                transparent 60%

            );

            background-size: 200% 100%;

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            animation: shine 3s infinite linear;

            pointer-events: none;

        }



        @keyframes shine {

            0% { background-position: -200% 0; }

            100% { background-position: 200% 0; }

        }



        /* Text Styles */

        .text-content {

            display: flex;

            flex-direction: column;

        }



        /* Fettgedruckte "Keys" (Header on the right) */

        .key-label {

            font-weight: 700;

            color: #a1d183;

            display: block;

            margin-bottom: 8px;

            font-size: 1.8rem; /* Groß */

            line-height: 1.2;

        }



        /* Fließtext */

        .value-text {

            color: #e0e0e0;

                font-size: 1.125rem;

            line-height: 1.4;

        }



        /* Responsive Anpassungen */

        @media (max-width: 1024px) {

            .everleaf-results-section {

                flex-direction: column;

                gap: 50px;

                padding: 40px 20px;

            }

            

            .header-column {

                text-align: left;

                padding-right: 0;

            }



            h2 {

                font-size: 2.5rem;

            }



            .key-label {

              font-size: 26px;

            }



            .value-text {

                font-size: 1.2rem;

            }

        }

        @media (max-width: 600px) {
            .results-list {
                /* 1 Column on mobile */
                grid-template-columns: 1fr; 
                gap: 30px;
            }
            
            .everleaf-results-section {
                padding: 40px 20px;
            }
            
            .header-column {
                text-align: left; 
                justify-content: flex-start;
            }

            .everleaf-results-section h2 {
                font-size: 1.8rem;
            }
        }


        /* SCOPED STYLES: These only apply inside the .feld-energy-content wrapper */
        .feld-energy-content {
            font-family: 'Nexa', sans-serif;
            color: #000;
            background-color: #fff;
            padding: 20px;
            line-height: 1.5;
			margin-top: 50px;
			margin-bottom:30px;
        }

		.custom-container.highlight-text p,
		.custom-container.highlight-text ul li{
			font-weight: bold;
		}
        
        /* New Custom Container Styles */
        .feld-energy-content .custom-container {
               margin-bottom: 50px;
			
        }

        .feld-energy-content h2 {
            color: #145459 !important;
            font-weight: 900; /* Bold heading */
            margin-top: 0;
            margin-bottom: 0.5rem;
            font-size: 35px;
            font-family: 'Nexa', sans-serif;
        }

        .feld-energy-content p {
            margin-bottom: 1rem;
            color: #000;
            font-family: 'Nexa', sans-serif;
            line-height: 1.6; /* Improved readability for content */
        }

        /* Custom List Styling inside wrapper */
        .feld-energy-content ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 1rem;
        }

        .feld-energy-content li {
            position: relative;
            padding-left: 1.5em;
            margin-bottom: 0.5em;
            color: #000;
            font-family: 'Nexa', sans-serif;
            line-height: 1.6;
			    font-size: 18px;
        }

        .feld-energy-content li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: #000;
        }

.custom-container.highlight-text ul li:before {
    color: #145459 !important;
}

.custom-container.highlight-text ul li {
    color: #145459 !important;
}



.difference-swiper {
  overflow: hidden !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.difference-swiper .swiper-slide {
  width: 100% !important;
}


/* Wrapper that holds blobs + your content */
.highlight-wrapper{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* The blobs */
.highlight-wrapper .blob{
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 1;
}

/* Left blob */
.highlight-wrapper .blob-left{
  bottom: -45%;
  left: -10%;
  width: 70%;
  height: 600px;
  background-color: rgba(161, 209, 131, 0.35); /* #a1d183 */
  animation: pulse 8s infinite alternate;
}

/* Right blob */
.highlight-wrapper .blob-right{
  bottom: -45%;
  right: -10%;
  width: 70%;
  height: 600px;
  background-color: rgba(161, 209, 131, 0.22); /* softer version */
  animation: pulse 10s infinite alternate-reverse;
}

/* Make sure your box stays above blobs */
/* .custom-container.highlight-text{
     position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.78);
/*     border-left: 6px solid #a1d183; */
    padding: 28px 30px;
    border-radius: 14px;
    margin: 0 auto;
    box-shadow: 0 8px 18px rgba(161, 209, 131, 0.12);
    backdrop-filter: blur(10px);
    margin-bottom: 34px;
    border-radius: 0 !important;
} */

/* Smooth subtle animation */
@keyframes pulse{
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.1); opacity: 0.55; }
}


   *, *:before, *:after {
            box-sizing: inherit;
        }

        /* Section Styles */
        .case-study-wrapper {
            background-color: #145459;
            position: relative;
            overflow: hidden;
            padding: 4rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        @media (min-width: 1024px) {
            .case-study-wrapper {
                padding: 6rem 1.5rem;
            }
        }

        /* Decorative Blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            background-color: #a1d183;
            opacity: 0.1;
            filter: blur(64px);
            z-index: 1;
            pointer-events: none; /* Prevents interference with clicks */
        }

        .blob-top-right {
            top: -10rem;
            right: -5rem;
            width: 30rem;
            height: 30rem;
        }

        .blob-bottom-left {
            bottom: -10rem;
            left: -5rem;
            width: 25rem;
            height: 25rem;
        }

        /* Container */
        .container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .subtitle-wrapper {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            background-color: rgba(161, 217, 131, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(161, 217, 131, 0.3);
        }

        .subtitle {
            color: #a1d183;
            font-family: "Nexa", sans-serif;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.875rem;
            margin: 0;
        }

        h2 {
            color: #ffffff;
            font-family: "Nexa", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
        }

        @media (min-width: 768px) {
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            h2 {
                font-size: 3.5rem;
            }
        }

        .highlight-text {
            color: #a1d183;
            font-family: "Nexa", sans-serif;
        }

        .description {
            color: #d1d5db;
            font-family: "Nexa", sans-serif;
            font-size: 1.125rem;
            line-height: 1.625;
            margin: 0;
            max-width: 65ch;
        }

        /* Button */
        .case-study-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: #a1d183;
           color: #fff;
    padding: 15px 30px;
    border-radius: 29px;
    text-decoration: none;
    min-width: 180px;
    font-weight: 900;
    text-align: center;
        }

        .case-study-button:hover {
            background-color: #ffffff;
            color: #145459;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .icon-arrow {
            width: 1.25rem;
            height: 1.25rem;
            margin-left: 0.5rem;
        }



.everleaf-faq-ctx {
    max-width: 960px;
    margin: 100px auto;
    padding: 0 24px;
    font-family: "Nexa", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.elf-header-block {
    text-align: center;
    margin-bottom: 70px;
}

.elf-header-block h2 {
    color: #145459;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.elf-decoration {
    width: 70px;
    height: 6px;
    background-color: #a1d183;
    margin: 0 auto;
    border-radius: 3px;
}

.elf-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.elf-item-node {
    background-color: #ffffff;
    border-bottom: 2px solid #eef3f3;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .elf-item-node:hover {
    border-color: #a1d183;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 84, 89, 0.05);
} */

.elf-item-node[open] {
/*     border-color: #145459;
    box-shadow: 0 15px 35px rgba(20, 84, 89, 0.1); */
}

.elf-item-trigger {
    padding: 15px 7px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.elf-item-trigger::-webkit-details-marker {
    display: none;
}

.elf-item-trigger h3 {
    margin: 0;
     font-size: 17px;
    color: #145459;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

/* Plus/Minus Icon */
.elf-plus-icon {
    width: 30px;
    height: 30px;
    background-color: #f6faf9;
    border-radius: 50%;
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.elf-plus-icon::before,
.elf-plus-icon::after {
    content: "";
    position: absolute;
    background-color: #145459;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.elf-plus-icon::before {
    width: 12px;
    height: 2px;
}

.elf-plus-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease;
}

.elf-item-node[open] .elf-plus-icon {
    background-color: #a1d183;
}

.elf-item-node[open] .elf-plus-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Content Area */
.elf-item-reveal {
    padding: 0 32px 32px 32px;
    animation: elfFadeDown 0.4s ease-out;
}

.elf-item-reveal p {
    margin: 0;
    color: #4a5a5a;
    line-height: 1.8;
    font-size: 1.05rem;
}

@keyframes elfFadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .elf-header-block h2 { font-size: 30px; }
    .elf-item-trigger { padding: 20px 24px; }
    .elf-item-trigger h3 { font-size: 1.05rem; }
    .elf-item-reveal { padding: 0 24px 24px 24px; }
}



   /* Section Container */

	.trust-section-wrapper .custom-container {
        display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    margin: auto !important;
}

    .trust-section {
        padding: 60px 20px;
/*         max-width: 1200px; */
        margin: 0 auto;
        display: flex;
        flex-direction: row; /* Ensure side-by-side layout */
        align-items: center; /* Vertically center logos with heading */
        gap: 140px; /* Primary gap increased as requested */
    }

    /* Heading Styles */
    .trust-section-content {
        flex: 0 0 auto; /* Allow heading to take only necessary space */
    }

    .trust-section h2 {
        color: #145459;
        font-size: 25px;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin: 0;
        line-height: 1.2;
        max-width: 342px;
    }

    /* Logo Row Container */
    .logo-row {
        display: flex;
        align-items: center;
        gap: 60px; /* Space between individual logos */
        flex-wrap: wrap; /* Allows wrapping on smaller screens */
        flex: 1; /* Take up remaining horizontal space */
    }

    /* Image Styling */
    .logo-row img {
        height: 45px; /* Uniform height */
        width: auto;
        max-width: 180px;
        object-fit: contain;
        display: block;
    }

    /* Tablet and Small Laptop Responsiveness */
    @media (max-width: 1024px) {
        .trust-section {
            gap: 60px; /* Reduced gap for small laptops/tablets */
        }
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .trust-section {
            flex-direction: column; /* Stack on mobile */
            align-items: center;
            text-align: center;
            padding: 40px 20px;
            gap: 30px; /* Smaller gap for mobile stacking */
        }
        
        .logo-row {
            justify-content: center;
            gap: 35px; /* Tighter spacing for mobile screens */
        }

        .logo-row img {
            height: 35px;
        }
    }


     .evl-testimonial-hero {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: 
                              url('https://stagging.everleaf-bpo.com/wp-content/uploads/2025/09/backgroundse.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 60px 0;
            box-sizing: border-box;
            min-height: 400px;
        }

        .evl-quote-stage {
            width: 100%;
            max-width: 1000px;
            overflow: hidden;
            position: relative;
            touch-action: pan-y;
            margin: 0 auto;
        }

        .evl-carousel-rail {
            display: flex;
            width: 100%;
            will-change: transform;
            transform: translateX(0); 
            /* Transition controlled via JS */
        }

        .evl-testimonial-item {
            min-width: 100%;
            width: 100%;
            flex-shrink: 0;
            text-align: center;
            padding: 0 40px;
            box-sizing: border-box;
            user-select: none;
            display: flex;
            flex-direction: column;
            justify-content: center; 
            align-items: center;
        }

        .evl-message-body {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            line-height: 1.5;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            max-width: 800px;
            margin: 0 auto 25px auto;
            font-style: italic;
            font-weight: 300;
        }

        .evl-attribution-box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .evl-name-tag {
            font-size: 1.25rem;
            color: #a1d183;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .evl-role-tag {
            font-size: 0.9rem;
            color: #f0f0f0;
            font-weight: 400;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .evl-testimonial-item {
                padding: 0 20px;
            }
            .evl-testimonial-hero {
                padding: 40px 0;
            }
        }

.page-template-page-customer-care .contact-page {
    height: auto !important;
    min-height: unset !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
/* 	    margin-top: 36px; */
}


 /* Die Bühne für die Fakten (Full-Width Wrapper) */
        .facts-showcase {
            background-color: #145459;
            color: #ffffff;
            width: 100%;
            padding: 80px 40px;
            box-sizing: border-box;
        }

.facts-showcase .fancy-metallic-icon {
    margin-top: -5px !important;
}

.facts-showcase h2 {
	    font-size: 35px;
    font-weight: 900;
    font-style: normal;
    line-height: 40px;
    text-align: left !important;
    text-transform: uppercase;
	    color: #a1d183 !important;
	
}

         /* Die Bühne für die Fakten (Full-Width Wrapper) */
        .facts-showcase {
            background-color: #145459;
            color: #ffffff;
            width: 100%;
            padding: 80px 40px;
            display: flex;
            justify-content: center;
        }

        /* Header Styling */
        .facts-showcase h2 {
            font-size: 35px;
            font-weight: 900;
            font-style: normal;
            line-height: 40px;
            text-align: left !important;
            text-transform: uppercase;
            color: #a1d183 !important;
            margin: 0;
        }

        /* Container Layout */
        .facts-showcase .custom-container {
            margin: 0 auto;
            /* max-width: 1300px; */
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        /* Der Identitäts-Bereich (Links) */
        .facts-identity {
            flex: 0 0 30%;
        }

        /* Der Stapel der Leistungsversprechen (Rechts) */
        .facts-proposition-stack {
            flex: 0 0 65%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* Eine einzelne Kompetenz-Einheit */
        .capability-unit {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        /* Icon Styling */
        .fancy-metallic-icon {
            color: #a1d183;
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            line-height: 1.2;
        }

        /* Das erzählende Element - Inline */
        .narrative-content {
            font-size: 18px;
            line-height: 1.6;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
        }

        .narrative-content strong {
            font-weight: 900;
            color: #ffffff;
        }

        /* --- RESPONSIVE LOGIC --- */

        /* Small Laptops (Standard 13-14 inch) */
        @media (max-width: 1200px) {
            .facts-showcase {
                padding: 60px 30px;
            }
            .facts-identity {
                flex: 0 0 35%;
            }
            .facts-proposition-stack {
                flex: 0 0 60%;
            }
            .facts-showcase h2 {
                font-size: 30px;
                line-height: 35px;
            }
        }

        /* Tablets (Landscape & Portrait) */
        @media (max-width: 1024px) {
            .facts-showcase .custom-container {
                flex-direction: column;
                gap: 40px;
            }

            .facts-identity, 
            .facts-proposition-stack {
                flex: 1 1 100%;
                width: 100%;
            }

            .facts-showcase h2 {
                font-size: 32px;
            }
        }

        /* Mobile Devices */
        @media (max-width: 600px) {
            .facts-showcase {
                padding: 50px 20px;
            }
            
            .narrative-content {
                font-size: 17px;
            }

            .facts-showcase h2 {
                font-size: 28px;
            }

            .capability-unit {
                gap: 12px;
            }
        }



        /* Container Layout */
        .story-section {
             position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 550px;
    height: auto;
    margin: 0 auto;
    display: flex;
     background-image: url(https://stagging.everleaf-bpo.com/wp-content/uploads/2025/09/backgroundse.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
        }

section.story-section .custom-container {
    display: flex;
}

        /* Mesh background effect */
        .mesh-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.18;
            /* Hardcoded Primary Color #0d0d33 */
            background-image: radial-gradient(#0d0d33 1px, transparent 1px);
            background-size: 26px 26px;
            z-index: 1;
            pointer-events: none;
        }

        /* Left Side: Image Content */
        .image-container {
            flex: 1.1;
            position: relative;
            height: 580px; 
            display: flex;
            align-items: flex-start; 
            justify-content: center;
            z-index: 5;
            padding: 40px;
        }

        .founder-img {
            width: 90%;
            height: 500px; 
            object-fit: cover; 
            border-radius: 8px; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
            
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            margin: 0 auto; 
            
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            z-index: 2;
        }

        .founder-img.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Right Side: Text Content */
        .content-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 40px 60px 40px 120px; 
            z-index: 20;
            position: relative;
        }

        .section-label {
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            /* Hardcoded Primary Color */
            color: #fff !important;
            font-weight: 900;
            margin-bottom: 30px;
            opacity: 0.8;
            flex-shrink: 0; 
            margin-top: 10px;
        }

	    /* Mobile / Tablet Responsive */
        @media (max-width: 1150px) {
            .story-section {
                flex-direction: column !important;
                margin: 0;
                border-radius: 8px;
                height: auto; 
                min-height: auto;
            }
			
			section.story-section .custom-container {
				flex-direction: column !important;
			}

            .image-container {
                order: -1; 
                width: 100%;
                height: 440px; 
                flex: none;
                padding: 20px;
                align-items: flex-start;
            }

            .founder-img {
                height: 400px; 
                width: 100%;
                position: absolute;
                top: 20px; 
                left: 0;
                right: 0;
                bottom: auto;
                margin: 0 auto; 
                border-radius: 6px;
                object-position: center 20%;
            }

            .content-container {
                width: 100%;
                padding: 20px 30px 40px 50px;
            }
            
            .icon-wrapper {
                left: -35px;
            }
            
            .section-label {
                margin-top: 0;
                margin-bottom: 30px;
            }
        }

        /* Navigation List */
        .story-nav {
            list-style: none;
            overflow-y: visible; 
            padding-right: 0;
        }
        
        .nav-item {
            cursor: pointer;
            margin-bottom: 25px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .nav-header {
            display: flex;
            align-items: center;
            gap: 25px;
            position: relative;
        }

        .icon-wrapper {
            position: absolute;
            left: -40px;
            display: flex;
            flex-direction: column; 
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
        }

        .nav-icon {
            position: absolute;
            /* Hardcoded Primary Color */
            color: #fff;
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.5);
        }

        .nav-item:not(.active) .icon-down {
            opacity: 0.4;
            transform: scale(1);
        }
        
        .nav-item.active .icon-up {
            opacity: 1;
            transform: scale(1);
        }

        .nav-item:first-child .icon-up {
            display: none !important;
        }
        
        .nav-item:last-child .icon-down {
            display: none !important;
        }

        .nav-number {
            font-size: 32px;
            font-weight: 900;
            /* Hardcoded Primary Color */
            color: #fff !important;
            line-height: 1;
            transition: all 0.3s ease;
            min-width: 45px;
        }

        .nav-title {
            font-size: 20px;
            font-weight: 800;
            /* Hardcoded Primary Color */
            color: #fff !important;
            transition: all 0.3s ease;
        }

        .nav-item:not(.active) .nav-number {
/*             opacity: 0.4; */
            font-size: 26px;
        }

        .nav-item:not(.active) .nav-title {
/*             opacity: 0.5; */
            font-weight: 700;
            font-size: 18px;
        }

        .story-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
        }

        .nav-item.active .story-body {
            max-height: 200px;
            opacity: 1;
            margin-top: 15px;
        }

        .story-body p {
            font-size: 16px;
            line-height: 1.6;
            /* Hardcoded Muted Text Color #374151 */
            color: #fff !important;
            max-width: 500px;
            font-weight: 400;
        }

        /* Mobile / Tablet Responsive */
        @media (max-width: 1150px) {
            .story-section {
                flex-direction: column;
                margin: 0;
                border-radius: 8px;
                height: auto; 
                min-height: auto;
            }

            .image-container {
                order: -1; 
                width: 100%;
                height: 440px; 
                flex: none;
                padding: 20px;
                align-items: flex-start;
            }

            .founder-img {
                height: 400px; 
                width: 100%;
                position: absolute;
                top: 20px; 
                left: 0;
                right: 0;
                bottom: auto;
                margin: 0 auto; 
                border-radius: 6px;
                object-position: center 20%;
            }

            .content-container {
                width: 100%;
                padding: 20px 30px 40px 50px;
            }
            
            .icon-wrapper {
                left: -35px;
            }
            
            .section-label {
                margin-top: 0;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 600px) {
            .image-container {
                height: 320px;
            }
            .founder-img {
                height: 280px;
            }
            .nav-number {
                font-size: 24px;
            }
            .nav-title {
                font-size: 18px;
            }
            .content-container {
                padding: 20px 20px 40px 45px;
            }
        }


/* .customer-care-conclusion-box .custom-container {
	display:flex;
	align-items:center;
}

.conclusion-box.customer-care-conclusion-box {
    border-bottom: 3px solid #a1d183;
    background-image: url(https://stagging.everleaf-bpo.com/wp-content/uploads/2025/09/backgroundse.png);
    background-repeat: no-repeat;
    background-size: cover;
	    padding-top: 60px !important;
    padding-bottom: 60px !important;
	    margin-bottom: 50px;
}

.conclusion-box.customer-care-conclusion-box .conclusion-title {
	    color: #fff !important;
    padding-right: 40px;
    font-size: 25px;
}


.conclusion-box.customer-care-conclusion-box .conclusion-text {
    color: #fff !important;
    padding-left: 22px;
    font-size: 22px !important;
    text-align: center;
} */


 /* --- CONCLUSION BOX STYLES (MATCHING DESIGN) --- */
        .customer-care-conclusion-box {
            position: relative; /* Added to contain blobs */
            overflow: hidden;   /* Added to clip blobs */
            background-color: #FDFDFD; /* Matches Section Background */
              padding-top: 110px !important;
    padding-bottom: 110px !important;
            width: 100%;
            box-sizing: border-box;
            border-top: 1px solid #ccfbf1; /* Subtle divider */
            display: flex;
            justify-content: center;
            font-family: "Nexa", "Montserrat", sans-serif;
        }

        .customer-care-conclusion-box .custom-container {
            position: relative; /* Added to sit above blobs */
            z-index: 10;        /* Added to sit above blobs */
/*             max-width: 900px; */
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        /* MATCHING THE H3 DESIGN FROM PREVIOUS CSS */
         .customer-care-conclusion-box .conclusion-title {
            font-weight: 700;
    font-size: 2.39rem;
    line-height: 1.3;
    color: #064e3b;
    width: 80%;
    max-width: unset !important;
    margin: 0 auto;
        }

         .customer-care-conclusion-box .conclusion-text {
               font-weight: 700;
    font-size: 29px;
    line-height: 1.3;
    color: #064e3b;
    width: 100%;
    max-width: unset !important;
    margin: 0 auto;
    font-family: "Nexa", sans-serif;
        }
        
        @media (max-width: 768px) {
              .customer-care-conclusion-box .conclusion-title {
                font-size: 32px;
             }
        }


.page-template-page-customer-care-php .two-col-grid {
    padding-top: 34px;
}

  
        .trust-section-wrapper {
            background-color: #ffffff;
            padding: 60px 0;
            width: 100%;
            overflow: hidden;
        }

      

        .trust-section-content {
            text-align: center;
            margin-bottom: 40px;
        }

        .trust-section-content h2 {
            font-size: 24px;
            color: #333;
            margin: 0;
            font-weight: 600;
            line-height: 1.4;
        }

        /* --- SLIDER CSS --- */

        /* Container sized for 3 logos */
        .logo-slider {
            width: 750px; 
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden; /* Hidden so manual scroll doesn't show bars */
            position: relative;
            cursor: grab;
            user-select: none;
            touch-action: pan-y;
        }

        .logo-slider:active {
            cursor: grabbing;
        }

        /* The moving track */
        .logo-track {
            display: flex;
            flex-wrap: nowrap;
            will-change: transform;
            margin: 0;
            padding: 0;
        }

        /* Individual logo container */
        .logo-item {
            width: 250px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .logo-item img {
            max-width: 100%;
            max-height: 70px;
            object-fit: contain;
            display: block;
            pointer-events: none; /* Critical for drag stability */
        }

        /* --- SPECIFIC LOGO STYLES (Added) --- */
        .kienzle-automotiv-logo {
            background: #001930;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        .cantura-logo-item {
            background: #FEF7ED;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        .frick-logo-item {
            background: #F20000;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        .uvm-logo-item {
            background: #EB664D;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        .thank-you-jane-logo-item {
            background: #BEAE72;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        /* --- RESPONSIVE MEDIA QUERIES (Updated) --- */

        /* Small Laptops & Large Tablets */
        @media (max-width: 1024px) {
            .logo-slider {
                max-width: 800px;
            }
            .logo-item {
                width: 33.333%;
                padding: 0 20px;
            }
        }

        /* Medium Tablets */
        @media (max-width: 768px) {
            .logo-slider {
                max-width: 600px;
            }
            .logo-item {
                width: 50%; /* Show 2 logos */
                padding: 0 20px;
            }
        }

        /* Mobile Devices */
        @media (max-width: 480px) {
            .logo-slider {
                max-width: 320px;
            }
            .logo-item {
                width: 100%; /* Show 1 logo */
                padding: 0 15px;
            }
        }