@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --green: #0f3d22;
  --green-dark: #082b17;
  --cream: #f7f4ec;
  --text: #102416;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
}

/* HEADER */

.navbar {
  height: 76px;
  padding: 0 82px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(15, 61, 34, 0.08);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-photo {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}



.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  text-decoration: none;
  color: #151515;
  font-size: 13px;
  font-weight: 500;
  padding: 30px 0 26px;
  position: relative;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--green);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}


.nav-btn,
.primary-btn {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.nav-btn:hover,
.primary-btn:hover {
  background: #13522c;
}

/* HAMBURGER */

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--green-dark);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 40;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 25;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  text-decoration: none;
  color: #151515;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(-8px);
  opacity: 0;
  padding: 10px 12px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.mobile-menu a:hover {
  color: var(--green);
  background: rgba(15, 61, 34, 0.08);
}

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-menu a.active {
  color: var(--green);
}

.mobile-menu-btn {
  margin-top: 8px;
  background: var(--green-dark);
  color: #fff !important;
  padding: 15px 18px;
  border-radius: 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* HERO */

.hero {
  min-height: 555px;
  padding-bottom: 120px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(13, 35, 18, 0.82) 0%,
      rgba(13, 35, 18, 0.62) 35%,
      rgba(13, 35, 18, 0.12) 70%
    ),
    url("/images/img/bannerboom2.webp") center right / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 18, 0.12);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 84px;
  padding-top: 60px;
  max-width: 720px;
  color: white;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.4px;
  max-width: 620px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 31px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.primary-btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  padding: 16px 25px;
}

.secondary-btn {
  background: #fff;
  color: #102416;
  text-decoration: none;
  padding: 16px 25px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* NIEUWE TRUSTBAR */

.trustbar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  max-width: calc(100% - 84px);
  padding-left: 84px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 61, 34, 0.08);
  border-left: none;
  border-top-right-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 61, 34, 0.14);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  min-width: 220px;
}
.special-trust-item {
     padding: 18px 0px; 
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(15, 61, 34, 0.1);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 61, 34, 0.08);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-text strong {
  font-size: 14px;
  line-height: 1.2;
  color: #18391f;
  font-weight: 700;
}

.trust-text span {
  font-size: 12px;
  line-height: 1.4;
  color: #5c6b60;
}

/* DIENSTEN */

.services-section {
  background: #f7f4ec;
  padding: 54px 82px 68px;
}

.services-header {
  text-align: center;
  margin-bottom: 24px;
}

.services-header p {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
  color: #18391f;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-header span {
  display: block;
  font-size: 13px;
  color: #4f5d52;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1130px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 34, 0.1);
  box-shadow: 0 8px 24px rgba(15, 61, 34, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(15, 61, 34, 0.13);
}

.service-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 18px 18px 20px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  color: #18391f;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.5;
  color: #27382c;
  margin-bottom: 22px;
}

.service-card a {
  text-decoration: none;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-card a span {
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

/* OVER AMBER */

.about-section {
  background: #fff;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 360px;
}

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

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-content {
  padding: 58px 82px 48px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
  color: #18391f;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-content p {
  max-width: 540px;
  font-size: 13px;
  line-height: 1.65;
  color: #27382c;
  margin-bottom: 12px;
}

.about-bottom {
  max-width: 540px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.signature {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #18391f;
  font-style: italic;
}

.certificate {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

/* WAAROM KIEZEN */

.why-section {
  background: #f7f4ec;
  padding: 44px 82px 54px;
  text-align: center;
}

.why-header {
  margin-bottom: 28px;
}

.why-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
  color: #18391f;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-leaf {
  color: var(--green);
  font-size: 18px;
  transform: rotate(-18deg);
}

.why-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.why-icon {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #304936;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 61, 34, 0.16);
}

.why-item h3 {
  font-size: 14px;
  color: #18391f;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #27382c;
  max-width: 190px;
}

.why-divider {
  width: 1px;
  height: 78px;
  background: rgba(15, 61, 34, 0.18);
}

/* PROJECTEN */

.projects-section {
  background: #fff;
  padding: 42px 82px 32px;
  text-align: center;
}

.projects-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.projects-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
  color: #18391f;
  font-weight: 600;
}

.title-line {
  width: 34px;
  height: 1px;
  background: rgba(15, 61, 34, 0.35);
}

.projects-leaf {
  color: var(--green);
  font-size: 15px;
  transform: rotate(-18deg);
  opacity: 0.8;
}

.projects-gallery {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.projects-gallery img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 61, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.projects-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 61, 34, 0.16);
}

.projects-button-wrap {
  margin-top: 24px;
}

.projects-btn {
  min-width: 300px;
  min-height: 46px;
  border: 1px solid rgba(15, 61, 34, 0.55);
  border-radius: 7px;
  color: #18391f;
  background: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.projects-btn:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

/* CTA */

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 43, 22, 0.96), rgba(10, 63, 32, 0.86)),
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.13), transparent 28%);
  padding: 36px 82px;
  color: #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 48% 75%, rgba(255, 255, 255, 0.07), transparent 20%);
  opacity: 0.8;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.cta-btn {
  min-width: 210px;
  min-height: 58px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.25s ease;
}

.cta-btn-light {
  background: #fff;
  color: #18391f;
}

.cta-btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.cta-btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #18391f;
}

.cta-plant {
  position: absolute;
  right: 72px;
  bottom: -16px;
  font-size: 150px;
  color: rgba(196, 217, 172, 0.42);
  transform: rotate(-18deg);
  z-index: 1;
}

/* FOOTER */

.footer {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(90deg, #092f1a, #0c3b22);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-top {
  height: 4px;
  background: rgba(196, 217, 172, 0.65);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0px 42px;
  display: grid;
  grid-template-columns: 1.25fr 1fr  1.15fr;
  gap: 82px;
}

.footer-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 18px;
  color: #f7f4ec;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-column:not(:first-child) a::before {
  content: "›";
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}

.footer-column:first-child a i {
  width: 18px;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

.footer-socials a::before {
  display: none;
}

.footer-bottom {
  background: rgba(4, 35, 18, 0.55);
  padding: 20px 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  max-width: 1120px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom i {
  margin-left: 10px;
  color: #c4d9ac;
  transform: rotate(-18deg);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .services-section,
  .projects-section,
  .why-section,
  .cta-section {
    padding-left: 48px;
    padding-right: 48px;
  }

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

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

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-bottom: 145px;
  }

  .trustbar {
    left: 48px;
    max-width: calc(100% - 96px);
  }

  .trust-item {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 1000px) {
  .navbar {
    padding: 0 32px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-content {
    padding-left: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 42px;
  }

  .why-divider {
    display: none;
  }

  .why-item p {
    max-width: none;
  }

  .footer-content {
    padding-left: 48px;
    padding-right: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 64px;
  }

  .footer-bottom {
    padding-left: 48px;
    padding-right: 48px;
  }
}

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

  .about-image img {
    min-height: 330px;
  }

  .about-content {
    padding: 48px 32px;
  }
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 620px;
    padding-bottom: 170px;
  }

  .hero-content {
    padding-left: 32px;
    padding-right: 32px;
  }

  h1 {
    font-size: 44px;
  }

  .trustbar {
    left: 32px;
    right: 32px;
    bottom: 22px;
    width: auto;
    max-width: none;
  }

  .trust-item {
    padding: 16px;
  }

  .trust-text strong {
    font-size: 13px;
  }

  .trust-text span {
    font-size: 11px;
  }
}

@media (max-width: 750px) {
  .services-section {
    padding: 46px 24px 58px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

@media (max-width: 700px) {
  .projects-section {
    padding: 38px 24px 30px;
  }

  .projects-header h2 {
    font-size: 32px;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .projects-gallery img {
    height: 125px;
  }

  .projects-btn {
    width: 100%;
    min-width: 0;
  }

  .cta-section {
    padding: 36px 24px 44px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
  }

  .cta-plant {
    right: -14px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.55;
  }
}

@media (max-width: 650px) {
  .why-section {
    padding: 42px 24px 50px;
  }

  .why-header h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-item {
    background: #fff;
    border: 1px solid rgba(15, 61, 34, 0.1);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 61, 34, 0.06);
  }

  .why-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 26px;
  }

  .footer-content {
    padding: 34px 24px 38px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-column h3 {
    font-size: 21px;
  }
}

@media (max-width: 560px) {
  .navbar {
    height: 70px;
    padding: 0 22px;
  }

  .mobile-menu {
    top: 70px;
  }

  .nav-btn {
    display: none;
  }

  .logo strong {
    font-size: 25px;
  }

  .logo span {
    font-size: 6px;
    letter-spacing: 3px;
  }
  .call-phone {
    margin-bottom: 30px;
  }
  .hero {
    min-height: 760px;
    padding-bottom: 230px;
    background:
      linear-gradient(
        180deg,
        rgba(13, 35, 18, 0.9) 0%,
        rgba(13, 35, 18, 0.62) 45%,
        rgba(13, 35, 18, 0.35) 100%
      ),
      url("hero.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 5px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trustbar {
    left: 24px;
    right: 24px;
    bottom: 20px;
    flex-direction: column;
    border-radius: 16px;
  }

  .trust-item {
    width: 100%;
    padding: 16px 18px;
  }

  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid rgba(15, 61, 34, 0.1);
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .about-image img {
    min-height: 280px;
  }

  .about-content {
    padding: 42px 24px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-bottom {
    align-items: flex-start;
  }

  .certificate {
    width: 68px;
    height: 68px;
  }
  
}

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

  .service-card img {
    height: 180px;
  }
}

@media (max-width: 450px) {
  .projects-gallery {
    grid-template-columns: 1fr;
  }

  .projects-gallery img {
    height: 180px;
  }
}
.footer-copyright{
	text-decoration:  none !important;
	    color: white;
	font-weight: bold;
}