@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");
:root {
  --green: #245642;
  --green2: #37745a;
  --light: #f7f8f6;
  --pale: #edf3f1;
  --text: #30393b;
  --accent: #9ab675;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: #fafaf8;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
.navbar {
  height: 78px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 8px 7%;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px #193b2910;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.brand span {
  margin-left: -8px;
  margin-top: 26px;
}
.navbar nav {
  display: flex;
  gap: 27px;
  margin: auto;
}
.navbar nav a {
  color: #40504b;
  text-decoration: none;
  font-size: 14px;
}
.navbar nav a:hover,
.navbar nav .active {
  color: var(--green);
  font-weight: 700;
}
.btn {
  display: inline-block;
  background: var(--green2);
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: 12px 26px;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover {
  background: #173e2e;
  transform: translateY(-2px);
}
.small {
  padding: 9px 24px;
  font-size: 13px;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--green);
  line-height: 1;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.menu-btn.open {
  transform: rotate(90deg);
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin: 8px 0 18px;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 42px;
}
h3 {
  line-height: 1.25;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--green2);
  margin: 0;
}
.light {
  color: #eaf2ed;
}
.center {
  text-align: center;
}
.section {
  padding: 92px 8%;
  max-width: 1440px;
  margin: auto;
}
.hero,
.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(90deg, #0d3925aa, #1b5a3ccc);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/raw/images/2-4.png") center/cover;
  z-index: -1;
  filter: brightness(0.62);
}
.hero-content {
  color: #fff;
  max-width: 760px;
  padding: 70px 20px;
}
.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #edf5ef;
}
.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background:
    linear-gradient(135deg, transparent 35%, #fff 36%) 0 0/14px 24px,
    linear-gradient(45deg, transparent 35%, #fff 36%) 0 0/17px 24px;
}
.page-hero {
  min-height: 310px;
  background:
    linear-gradient(90deg, #15503cdd, #2d7154cc),
    url("assets/raw/images/page-title.jpg") center/cover;
}
.page-hero h1 {
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.intro-copy {
  max-width: 540px;
}
.intro-copy em {
  font-style: normal;
  color: #809d5f;
}
.intro-copy p {
  font-size: 15px;
  color: #606b68;
}
.plant-art {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}
.plant-art .circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--green2);
}
.plant-art > img {
  width: 310px;
  height: 310px;
  object-fit: cover;
  border-radius: 45% 45% 10% 10%;
  position: relative;
  box-shadow: 0 18px 50px #183e2a22;
}
.bubble {
  position: absolute;
  width: 145px;
  height: 145px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 35px #1d392222;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 13px;
  z-index: 2;
}
.bubble b {
  font-size: 12px;
}
.b1 {
  bottom: 25px;
  right: 5%;
}
.b2 {
  top: 20px;
  right: 1%;
}
.b3 {
  bottom: 15px;
  left: 4%;
}
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(180deg, #fff, #eef4f3);
}
.tree img {
  width: 100%;
  max-width: 430px;
  height: 390px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 28px;
}
.feature-grid span {
  color: var(--green2);
  font-size: 28px;
}
.feature-grid h3 {
  margin: 5px 0;
}
.feature-grid p {
  font-size: 14px;
}
.founders {
  background: #f0f3f3;
  max-width: none;
}
.founder-grid {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.founder {
  background: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 35px #122a1b08;
}
.founder img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}
.founder h3 {
  margin: 0;
}
.founder p {
  font-size: 13px;
  color: #69716f;
}
.services-preview {
  background: #eaf1f1;
  max-width: none;
}
.card-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 40px auto;
}
.service-card {
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 25px #1b3c2b0b;
  transition: 0.3s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-7px);
}
.service-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.service-card .icon {
  width: 52px;
  height: 52px;
  background: #edf4ef;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: -26px auto 10px;
  position: relative;
  color: var(--green2);
  font-size: 23px;
}
.service-card h3 {
  color: #4b7162;
  margin: 8px 12px;
  font-size: 18px;
}
.service-card p {
  font-size: 13px;
  padding: 0 16px 12px;
  color: #67716e;
}
.service-card a {
  display: block;
  padding: 10px;
  color: var(--green2);
  text-decoration: none;
}
.achievement {
  background:
    linear-gradient(#174c3ad9, #174c3ad9),
    url("assets/raw/images/3-4.png") center/cover;
  color: #fff;
  padding: 75px 8%;
  text-align: center;
}
.achievement h2 {
  font-size: 26px;
}
.stats {
  max-width: 1100px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stats div {
  border-left: 1px solid #ffffff44;
}
.stats b {
  display: block;
  font-family: "Playfair Display";
  font-size: 40px;
}
.stats span {
  font-size: 13px;
}
.gallery-strip {
  max-width: none;
  background: #f8faf8;
}
.mini-gallery {
  max-width: 1100px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.mini-gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}
.process {
  background: #f7f7f5;
  max-width: none;
}
.process-grid {
  max-width: 1100px;
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.process-grid b {
  display: inline-block;
  background: var(--green2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}
.process-grid i {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  margin: -2px auto 12px;
  font-style: normal;
  font-size: 35px;
  color: var(--green2);
  box-shadow: 0 10px 30px #0000000a;
}
.process-grid p {
  font-size: 13px;
  color: #747c7a;
}
.services-page {
  background: #f9f9f7;
  max-width: none;
}
.service-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}
.gallery-filter {
  margin-bottom: 25px;
}
.filter {
  border: 1px solid #b6cbb8;
  background: #fff;
  color: var(--green);
  padding: 9px 20px;
  margin: 4px;
  border-radius: 20px;
  cursor: pointer;
}
.filter.active,
.filter:hover {
  background: var(--green2);
  color: #fff;
}
.gallery-grid {
  columns: 4 220px;
  column-gap: 12px;
  max-width: 1200px;
  margin: auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.35s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: #000c;
  z-index: 100;
  place-items: center;
  padding: 30px;
}
.lightbox.show {
  display: grid;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
}
.lightbox button {
  position: absolute;
  right: 30px;
  top: 15px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  background: var(--green2);
  color: #fff;
  padding: 55px 48px;
}
.contact-info h2 {
  font-size: 31px;
}
.contact-info div {
  margin-top: 28px;
}
.contact-info b {
  font-size: 16px;
}
.contact-info p {
  font-size: 13px;
  color: #e4eee8;
  margin-left: 26px;
}
.contact-form {
  background: #edf2f2;
  padding: 50px;
}
.contact-form h2 {
  text-align: center;
  font-size: 42px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e0df;
  background: #fff;
  padding: 14px;
  margin: 9px 0;
  font-family: inherit;
}
.contact-form textarea {
  height: 150px;
  resize: vertical;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  text-align: center;
  color: var(--green2);
  font-weight: 600;
}
.map {
  padding-top: 0;
}
.fake-map {
  height: 360px;
  background: linear-gradient(135deg, #d8eee7, #c3dfd7);
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fake-map:before,
.fake-map:after {
  content: "";
  position: absolute;
  border: 18px solid #fff7;
  border-radius: 45%;
  width: 130%;
  height: 100%;
  transform: rotate(-18deg);
}
.fake-map:after {
  transform: rotate(18deg);
  left: -30%;
  top: -20%;
}
.fake-map span,
.fake-map h3,
.fake-map p {
  position: relative;
  z-index: 2;
}
.fake-map span {
  font-size: 45px;
}
footer {
  background: #173f2f;
  color: #e8f0eb;
  padding: 55px 8% 15px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: 45px;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}
.footer-brand p,
footer li {
  font-size: 13px;
  color: #c8d6ce;
}
.footer-grid h3 {
  font-family: "Playfair Display";
  font-size: 20px;
}
.footer-grid ul {
  padding: 0;
  list-style: none;
}
.footer-grid a {
  color: #c8d6ce;
  text-decoration: none;
}
.copyright {
  border-top: 1px solid #ffffff1f;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 34px;
  }
  .navbar {
    padding: 8px 5%;
    gap: 10px;
  }
  .menu-btn {
    display: block;
    margin-left: auto;
  }
  .navbar nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 18px 28px #00000012;
    transition:
      max-height 0.38s ease,
      padding 0.38s ease,
      opacity 0.28s ease,
      transform 0.38s ease,
      visibility 0s linear 0.38s;
  }
  .navbar nav.open {
    max-height: 360px;
    padding: 18px 20px 20px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 0.42s ease,
      padding 0.42s ease,
      opacity 0.28s ease,
      transform 0.42s ease;
  }
  .navbar nav a {
    padding: 10px 0;
    transform: translateY(-4px);
    opacity: 0;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }
  .navbar nav.open a {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar > .small {
    display: none;
  }
  .split,
  .why,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 65px 6%;
  }
  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plant-art {
    order: -1;
  }
  .page-hero {
    min-height: 270px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 30px;
  }
  .hero {
    min-height: 520px;
  }
  .founder-grid,
  .card-grid,
  .service-grid,
  .stats,
  .process-grid,
  .feature-grid,
  .two {
    grid-template-columns: 1fr;
  }
  .founder {
    align-items: flex-start;
  }
  .founder img {
    width: 100px;
    height: 100px;
  }
  .mini-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form {
    padding: 32px 24px;
  }
  .contact-form h2 {
    font-size: 30px;
  }
  .bubble {
    width: 120px;
    height: 120px;
    font-size: 11px;
  }
  .plant-art .circle {
    width: 300px;
    height: 300px;
  }
  .plant-art > img {
    width: 250px;
    height: 250px;
  }
  .gallery-grid {
    columns: 2 150px;
  }
}

/* ===== SERVICE DETAILS PAGE ===== */
.service-details {
  background: #f8f9f7;
  max-width: none;
}
.service-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}
.service-sidebar {
  background: #fff;
  box-shadow: 0 10px 30px #183b280d;
}
.service-sidebar h3 {
  margin: 0;
  padding: 22px 24px;
  background: var(--green);
  color: #fff;
  font-family: "Playfair Display";
  font-size: 24px;
}
.service-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.service-menu a {
  display: block;
  padding: 13px 22px;
  color: #52615c;
  text-decoration: none;
  border-bottom: 1px solid #edf0ed;
  font-size: 14px;
  transition: 0.25s;
}
.service-menu a:hover,
.service-menu a.active {
  background: #eef5f0;
  color: var(--green);
  font-weight: 700;
  padding-left: 28px;
}
.service-main {
  background: #fff;
  padding: 0 0 36px;
  box-shadow: 0 10px 30px #183b2808;
}
.service-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.service-detail-copy {
  padding: 34px 38px;
}
.service-detail-copy .eyebrow {
  margin-bottom: 8px;
}
.service-detail-copy h2 {
  color: var(--green);
  font-size: 42px;
}
.service-detail-copy p {
  color: #69736f;
  font-size: 15px;
}
.service-features {
  padding: 0;
  margin: 24px 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-features li {
  background: #f1f6f2;
  padding: 12px 14px;
  color: #476353;
  font-size: 14px;
}
.service-features li:before {
  content: "✓";
  color: var(--green2);
  font-weight: 700;
  margin-right: 9px;
}
.service-cta {
  margin: 8px 38px;
  background: linear-gradient(100deg, #174c3a, #37745a);
  padding: 28px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.service-cta h3 {
  margin: 0;
  font-size: 23px;
  font-family: "Playfair Display";
}
.service-cta p {
  margin: 5px 0 0;
  color: #e4eee8;
  font-size: 14px;
}
.service-cta .btn {
  background: #fff;
  color: var(--green);
  white-space: nowrap;
}
.service-cta .btn:hover {
  background: #eef5f0;
}
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-main img {
    height: 330px;
  }
  .service-sidebar {
    order: 2;
  }
}
@media (max-width: 560px) {
  .service-detail-copy {
    padding: 26px 20px;
  }
  .service-detail-copy h2 {
    font-size: 31px;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .service-cta {
    margin: 0 20px;
    padding: 24px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .service-main img {
    height: 240px;
  }
}

/* ===== HOME HERO SLIDER ===== */
.google-map {
  height: 360px;
  overflow: hidden;
  background: #d8eee7;
}
.google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-map {
  height: 190px;
  margin-top: 18px;
  border: 2px solid #0e3024;
  background: #d8eee7;
  overflow: hidden;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.grass {
  z-index: 7;
  height: 78px;
  pointer-events: none;
  background: none;
  overflow: hidden;
}
.grass:before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% + 1908px);
  background: url("assets/raw/images/shape-2-1.png") 0 bottom/1908px 78px
    repeat-x;
  will-change: transform;
  animation: grassScroll 38s linear infinite;
}
@keyframes grassScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1908px, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grass:before {
    animation: none;
  }
}
.hero-slider {
  display: block;
  min-height: 620px;
  background: #183f2d;
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  display: grid;
  place-items: center;
  text-align: center;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slider .hero-bg {
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(0.62);
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero-slider .hero-slide.active .hero-bg {
  transform: scale(1.08);
}
.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}
.hero-slider .hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff77;
  background: #173f2f77;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.25s;
}
.hero-arrow:hover {
  background: #ffffff;
  color: #245642;
}
.hero-prev {
  left: 30px;
}
.hero-next {
  right: 30px;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 9;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.25s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.25);
}
@media (max-width: 560px) {
  .hero-slider {
    min-height: 520px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .hero-prev {
    left: 12px;
  }
  .hero-next {
    right: 12px;
  }
  .hero-dots {
    bottom: 34px;
  }
}
.trusted-clients {
  width: 100%;
  padding: 50px 4%;
  background: #fff;
}

/* Heading */
.trusted-title {
  width: 100%;
  height: 90px;
  border: 2px solid #53633d;
  border-radius: 0 0 60px 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
}

.trusted-title h2 {
  margin: 0;
  color: #31543e;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* 5 columns */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 10px;
}

/* Logo box */
.client-box {
  height: 100px;
  border: 2px solid #a5ad78;
  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 25px;
  background: #fff;
}

.client-box img {
  max-width: 85%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-title h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trusted-clients {
    padding: 30px 15px;
  }

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

  .client-box {
    height: 80px;
    padding: 8px;
  }

  .trusted-title {
    height: 70px;
  }

  .trusted-title h2 {
    font-size: 22px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f3;
  color: #202020;
}

/* =========================
   MAIN SECTION
========================= */

.testimonial-section {
  width: 100%;
  min-height: 760px;

  display: grid;

  grid-template-columns:
    40%
    24%
    36%;

  align-items: center;

  overflow: hidden;
}

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

.left-content {
  position: relative;

  height: 760px;

  padding-top: 110px;
  padding-left: 8%;

  overflow: hidden;
}

.heading-area {
  position: relative;
  z-index: 5;
}

.heading-area p {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 1px;

  color: #555;

  margin-bottom: 25px;
}

.heading-area h1 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(50px, 5vw, 78px);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -3px;

  color: #171717;
}

/* =========================
   BOTANICAL DESIGN
========================= */

.leaf-design {
  position: absolute;

  width: 420px;
  height: 430px;

  left: -55px;
  bottom: -35px;

  color: #e4e5de;

  opacity: 0.9;

  z-index: 1;

  pointer-events: none;
}

.leaf-design svg {
  width: 100%;
  height: 100%;
}

.line {
  fill: none;

  stroke: currentColor;

  stroke-width: 2;
}

.thin-line {
  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;
}

.circle {
  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;
}

/* =========================
   ARROW BUTTONS
========================= */

.slider-buttons {
  position: absolute;

  left: 125px;
  bottom: 105px;

  width: 125px;
  height: 58px;

  background: rgba(255, 255, 255, 0.75);

  display: flex;

  align-items: center;

  justify-content: space-around;

  z-index: 10;
}

.slider-buttons button {
  width: 50px;
  height: 50px;

  border: none;

  background: transparent;

  font-size: 27px;

  font-weight: 300;

  color: #202020;

  cursor: pointer;

  transition: 0.3s;
}

.slider-buttons button:hover {
  transform: scale(1.15);
}

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

.middle-content {
  padding: 40px 35px;

  position: relative;

  z-index: 5;
}

.testimonial-text {
  color: #777;

  font-size: 16px;

  line-height: 1.55;

  margin-bottom: 25px;
}

.stars {
  color: #d59a32;

  font-size: 20px;

  letter-spacing: 2px;

  margin-bottom: 22px;
}

/* =========================
   PERSON
========================= */

.person {
  display: flex;

  align-items: center;

  gap: 15px;
}

.person img {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  object-fit: cover;
}

.person h3 {
  font-size: 18px;

  font-weight: 500;

  line-height: 1.35;
}

.person span {
  display: block;

  margin-top: 7px;

  font-size: 14px;

  color: #888;
}

/* =========================
   RIGHT IMAGE
========================= */

.right-image {
  height: 650px;

  position: relative;

  margin-right: 25px;
}

.right-image > img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

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

.review-card {
  position: absolute;

  width: 310px;

  min-height: 420px;

  top: 70px;

  left: -75px;

  background: #f3f3ed;

  padding: 35px 38px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);

  z-index: 10;
}

.review-card p {
  color: #777;

  font-size: 15px;

  line-height: 1.55;

  margin-bottom: 20px;
}

.review-card .stars {
  font-size: 17px;

  margin-bottom: 22px;
}

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

.card-person {
  display: flex;

  align-items: center;

  gap: 12px;
}

.card-person img {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  object-fit: cover;
}

.card-person h3 {
  font-size: 17px;

  font-weight: 500;

  line-height: 1.35;
}

.card-person span {
  display: block;

  margin-top: 7px;

  font-size: 13px;

  color: #888;
}

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

@media (max-width: 1100px) {
  .testimonial-section {
    grid-template-columns:
      38%
      27%
      35%;
  }

  .heading-area h1 {
    font-size: 55px;
  }

  .review-card {
    width: 290px;

    left: -60px;
  }
}

/* TABLET */

@media (max-width: 850px) {
  .testimonial-section {
    display: block;

    min-height: auto;
  }

  .left-content {
    height: 400px;

    padding-top: 70px;

    padding-left: 8%;
  }

  .heading-area h1 {
    font-size: 55px;
  }

  .leaf-design {
    width: 330px;
    height: 340px;

    bottom: -70px;
  }

  .slider-buttons {
    left: 30px;

    bottom: 45px;
  }

  .middle-content {
    padding: 50px 8%;
  }

  .right-image {
    height: 600px;

    margin: 30px 8%;
  }

  .review-card {
    left: 30px;
  }
}

/* MOBILE */

@media (max-width: 550px) {
  .left-content {
    height: 390px;

    padding-left: 25px;
  }

  .heading-area h1 {
    font-size: 45px;

    letter-spacing: -2px;
  }

  .leaf-design {
    left: -70px;

    width: 300px;
    height: 310px;
  }

  .slider-buttons {
    left: 30px;

    bottom: 30px;
  }

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

  .right-image {
    height: 500px;

    margin: 20px 0;
  }

  .review-card {
    width: 280px;

    left: 20px;

    top: 40px;

    padding: 25px;
  }
}
