:root {
  --primary: #189a4a;
  --primary-dark: #10733a;
  --secondary: #eafff1;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(16, 115, 58, 0.14);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #f8fffb;
  line-height: 1.6;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-space {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: #e8fbef;
  border: 1px solid #c8f1d8;
  border-radius: 999px;
  padding: 5px 12px;
}

.breadcrumb-wrap {
  background-color: #0d3f27;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(182, 245, 206, 0.22) 1.2px, transparent 0),
    linear-gradient(180deg, #0e472c, #0a3621);
  background-size: 18px 18px, 100% 100%;
  border-top: 1px solid rgba(201, 243, 217, 0.28);
  border-bottom: 1px solid rgba(201, 243, 217, 0.28);
  padding: 58px 0 50px;
  text-align: center;
}

.breadcrumb-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  margin-bottom: 10px;
  line-height: 1.2;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.breadcrumb li {
  color: #ccead9;
  font-size: 0.9rem;
}

.breadcrumb li a {
  color: #e7fff1;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb li a:hover {
  color: #8ef0b5;
}

.breadcrumb li .fa-angle-right {
  font-size: 0.72rem;
  color: #9fd6b8;
  margin-right: 2px;
}

.contact-modern {
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 171, 92, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(20, 132, 71, 0.1) 0%, transparent 36%),
    linear-gradient(180deg, #f8fffb 0%, #edfff4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 255, 250, 0.95) 100%);
  border: 1px solid #d8f1e3;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
  backdrop-filter: blur(3px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #b8e9cc;
  box-shadow: 0 22px 42px rgba(12, 102, 50, 0.18);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 194, 119, 0.2), rgba(66, 194, 119, 0));
  pointer-events: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0f7a3e, #39c170);
  margin-bottom: 12px;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(15, 122, 62, 0.28);
  transition: transform 0.25s ease;
}

.contact-card:hover .contact-icon {
  transform: rotate(-6deg) scale(1.04);
}

.contact-card h3 {
  color: var(--primary-dark);
  margin-bottom: 7px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.contact-card p,
.contact-card a {
  color: #375345;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-card a {
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-chip {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f7440;
  background: #e8fbf1;
  border: 1px solid #caefd8;
  border-radius: 999px;
  padding: 5px 10px;
}

.contact-form-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid #d8f1e3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
}

.contact-form-wrap h3 {
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.form-intro {
  color: #557365;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.contact-form-row {
  display: grid;
  gap: 6px;
}

.contact-form-row label {
  font-weight: 600;
  color: #355142;
  font-size: 0.9rem;
}

.contact-form-row input,
.contact-form-row textarea {
  border: 1px solid #c9e8d6;
  border-radius: 11px;
  padding: 12px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  color: #203228;
  background: #fcfffd;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(24, 154, 74, 0.14);
  transform: translateY(-1px);
}

.contact-form .btn {
  justify-self: start;
  min-width: 170px;
  margin-top: 4px;
}

.map-wrap {
  margin-top: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid #d8f1e3;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
}

.map-wrap h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 12px;
}

.topbar {
  background: linear-gradient(90deg, #0f4d2f 0%, #1f7a45 55%, #2c5010 100%);
  color: var(--white);
  font-size: 0.85rem;
  padding: 4px 0;
}

.topbar-inner {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.topbar-contact p {
  margin: 0;
}

.topbar-social {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topbar-social a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.topbar-social a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8f8ee;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  gap: 14px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 38px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #38c66d);
  color: var(--white);
  box-shadow: var(--shadow);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links > li {
  position: relative;
}

.has-mega-menu {
  position: static !important;
}

.has-mega-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.has-submenu > a i,
.has-mega-menu > a i {
  font-size: 0.8rem;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #dff3e8;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(12, 83, 41, 0.16);
  list-style: none;
  padding: 12px;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.submenu li a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2f3d4a;
  padding: 6px 8px;
  border-radius: 6px;
}

.submenu li a:hover {
  background: #f1fbf5;
  color: var(--primary);
}

.has-submenu:hover .submenu,
.has-submenu.submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  transform: translate(-50%, 0);
  width: 100vw;
  max-width: 100vw;
  background: var(--white);
  border: 1px solid #dff3e8;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(12, 83, 41, 0.18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 1000;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.has-mega-menu.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-column h4 {
  font-size: 0.96rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  border-bottom: 1px solid #edf9f2;
  padding-bottom: 6px;
}

.mega-column h4:not(:first-child) {
  margin-top: 14px;
}

.mega-column ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.mega-column ul li a {
  color: #2f3d4a;
  font-size: 0.89rem;
  font-weight: 500;
  line-height: 1.35;
  display: block;
  padding: 2px 0;
}

.mega-column ul li a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 21px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  background: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--primary-dark);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0f1f16;
  padding: 0 0 24px;
}

.hero-container {
  width: 100%;
  max-width: 100%;
}

.slider {
  position: relative;
  min-height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding-inline: clamp(18px, 5vw, 72px);
  min-height: 600px;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 26, 17, 0.78) 0%, rgba(10, 32, 20, 0.58) 45%, rgba(13, 41, 25, 0.38) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  background: rgba(7, 29, 18, 0.28);
  border: 1px solid rgba(173, 240, 201, 0.25);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 30px);
  backdrop-filter: blur(3px);
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(24, 154, 74, 0.22);
  color: #e7ffef;
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.86rem;
  border: 1px solid rgba(185, 246, 208, 0.55);
}

.slide h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: #ffffff;
}

.slide p {
  color: #e6f3ed;
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-highlights {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(198, 244, 217, 0.35);
  color: #eafff2;
  font-size: 0.82rem;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero-nav {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 243, 217, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #f4fff8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.dot {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #c7ead5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  width: 40px;
  background: var(--primary);
}

.grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f8fff9 100%);
  border: 1px solid #dff3e8;
  overflow: hidden;
  min-width: 0;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #21a657, #7de2a4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #0f6a35;
  background: linear-gradient(135deg, #e4fbed, #c8f4d9);
  border: 1px solid #b8ebcd;
}

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.solution-link i {
  transition: transform 0.2s ease;
}

.solution-link:hover i {
  transform: translateX(4px);
}

.card {
  background: var(--white);
  border: 1px solid #e4f5eb;
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-wrap {
  background-color: #0d3f27;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(182, 245, 206, 0.22) 1.2px, transparent 0),
    linear-gradient(180deg, #0e472c, #0a3621);
  background-size: 18px 18px, 100% 100%;
}

.services-wrap .section-title h2,
.services-wrap .section-title p,
.services-wrap .section-kicker {
  color: #e8fff1;
}

.services-wrap .section-title p {
  color: #cfeedd;
}

.services-wrap .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 243, 218, 0.35);
}

.services-wrap-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
  border-top: 1px solid #e2f4ea;
  border-bottom: 1px solid #e2f4ea;
}

.services-wrap-light .section-title h2,
.services-wrap-light .section-title p,
.services-wrap-light .section-kicker {
  color: var(--text);
}

.services-wrap-light .section-title p {
  color: var(--muted);
}

.services-wrap-light .section-kicker {
  color: var(--primary-dark);
  background: #e8fbef;
  border-color: #c8f1d8;
}

.services-wrap-light .service-card {
  background: #ffffff;
  border: 2px dotted #9ed8b5;
  box-shadow: 0 10px 24px rgba(16, 115, 58, 0.08);
  backdrop-filter: none;
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.services-wrap-light .solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-wrap-light .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #5fd68a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services-wrap-light .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(88, 185, 133, 0.22) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.services-wrap-light .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(16, 115, 58, 0.14);
  border-color: #58b985;
  border-style: dotted;
  border-width: 2px;
}

.services-wrap-light .service-card:hover::before {
  transform: scaleX(1);
}

.services-wrap-light .service-card:hover::after {
  opacity: 0.2;
  transform: scale(1);
}

.services-wrap-light .service-card h3,
.services-wrap-light .service-card p,
.services-wrap-light .service-card li {
  color: var(--text);
}

.services-wrap-light .service-card h3 {
  color: var(--primary-dark);
  font-size: 1.08rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-wrap-light .service-card h3 i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #e8fbef, #d4f5e3);
  border: 1px solid #c6efd6;
}

.services-wrap-light .service-card .service-list li::before {
  color: var(--primary);
}

.services-wrap-light .service-list {
  gap: 11px;
  margin-top: 6px;
}

@media (max-width: 860px) {
  .services-wrap-light .solution-grid {
    grid-template-columns: 1fr;
  }
}

.service-slider {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 243, 217, 0.35);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}

.service-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  background: #e9fced;
  border: 1px solid #c9f0d5;
  border-radius: 12px;
  padding: 10px 12px;
}

.service-slider-head h3 {
  color: #090909;
  font-size: 1.05rem;
}

.service-nav {
  display: flex;
  gap: 8px;
}

.service-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #caecd8;
  background: #f5fff9;
  color: var(--primary-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.service-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.service-viewport {
  overflow: hidden;
}

.service-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.service-card {
  min-width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 243, 217, 0.35);
  backdrop-filter: blur(2px);
}

.service-card h3,
.service-card p,
.service-card li {
  color: #dff8ea;
}

.service-card h3 {
  color: #f4fff8;
}

.service-card .service-list li::before {
  color: #b9f6d0;
}

.service-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbeed9;
  border: 0;
  cursor: pointer;
}

.service-dot.active {
  background: var(--primary);
}

.service-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.service-list li {
  padding-left: 22px;
  position: relative;
  color: #fafdff;
  font-size: 0.95rem;
}

.service-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 1px;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
}

.about-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e6f6ed;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-main {
  background: linear-gradient(160deg, #ffffff 0%, #f4fff8 100%);
}

.about-main h2 {
  margin-bottom: 12px;
  line-height: 1.25;
}

.about-tags {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eafcf1;
  border: 1px solid #caefd9;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.about-modern {
  background:
    radial-gradient(circle at 8% 10%, rgba(38, 183, 97, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 92% 0%, rgba(20, 132, 71, 0.12) 0%, transparent 36%),
    linear-gradient(180deg, #f8fffb 0%, #effff6 100%);
}

.about-top {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 175, 91, 0.11) 0%, transparent 40%),
    radial-gradient(circle at 94% 0%, rgba(16, 115, 58, 0.13) 0%, transparent 36%),
    linear-gradient(180deg, #f8fffb 0%, #ecfff4 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  animation: aboutBackgroundShift 12s ease-in-out infinite alternate;
}

.about-top-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: center;
  animation: aboutFadeUp 0.8s ease both;
}

.about-top-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
  color: #123d28;
}

.about-top-copy p {
  color: #355447;
}

.about-top-badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-top-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8fbf1;
  border: 1px solid #caefd8;
  color: #0d6f3b;
  font-size: 0.84rem;
  font-weight: 600;
  animation: aboutPulse 3.2s ease-in-out infinite;
}

.about-top-badges span:nth-child(2) {
  animation-delay: 0.35s;
}

.about-top-badges span:nth-child(3) {
  animation-delay: 0.7s;
}

.about-top-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(10, 85, 40, 0.2);
  position: relative;
  animation: aboutFloat 5.4s ease-in-out infinite;
}

.about-top-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-top-visual:hover img {
  transform: scale(1.04);
}

.about-top-visual::after {
  content: "";
  position: absolute;
  inset: -120% -40% auto auto;
  width: 40%;
  height: 320%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: aboutShimmer 3.8s linear infinite;
}

.about-top-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  animation: aboutFadeUp 0.8s ease 0.1s both;
}

.about-top-metrics article {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #d8f1e3;
  box-shadow: 0 10px 24px rgba(12, 102, 50, 0.1);
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: aboutFadeUp 0.65s ease both;
}

.about-top-metrics article:nth-child(2) {
  animation-delay: 0.08s;
}

.about-top-metrics article:nth-child(3) {
  animation-delay: 0.16s;
}

.about-top-metrics article:nth-child(4) {
  animation-delay: 0.24s;
}

.about-top-metrics article:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.18);
}

.about-top-metrics h3 {
  font-size: 1.45rem;
  color: #0f703b;
}

.about-top-metrics p {
  color: #547366;
  font-size: 0.88rem;
}

.about-story-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d8f1e3;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
  align-items: center;
  animation: aboutFadeUp 0.8s ease 0.2s both;
}

.about-story-media {
  border-radius: 14px;
  overflow: hidden;
}

.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-story-card:hover .about-story-media img {
  transform: scale(1.05);
}

.about-story-content h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-story-content h3 i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #39c170);
  animation: aboutIconBob 3s ease-in-out infinite;
}

.about-story-content p {
  color: #3d5a4c;
}

.about-industries {
  margin-top: 24px;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d8f1e3;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
  animation: aboutFadeUp 0.8s ease 0.2s both;
}

.about-industries-head h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-industries-head h3 i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #39c170);
}

.about-industries-head p {
  color: #3d5a4c;
  max-width: 820px;
}

.about-industries-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-industry-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  padding: 14px 14px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.about-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(24, 154, 74, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.about-industry-card:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.14);
}

.about-industry-card:hover::before {
  opacity: 1;
}

.about-industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.about-industry-card h4 {
  color: #103b25;
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-industry-card p {
  color: #547366;
  font-size: 0.88rem;
}

.about-industries-media {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.about-industries-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-industries:hover .about-industries-media img {
  transform: scale(1.04);
}

.about-mission-block {
  margin-top: 20px;
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(9, 78, 42, 0.9) 0%, rgba(13, 102, 56, 0.84) 100%),
    url("https://images.unsplash.com/photo-1562564055-71e051d33c19?auto=format&fit=crop&w=1400&q=80") center/cover;
  border: 1px solid rgba(189, 236, 208, 0.35);
  box-shadow: 0 16px 38px rgba(8, 69, 37, 0.24);
  animation: aboutFadeUp 0.8s ease 0.3s both, aboutBackgroundPan 14s ease-in-out infinite alternate;
}

.about-mission-block h3 {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.about-mission-block p {
  color: #e3f9ec;
}

.about-value-showcase {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  animation: aboutFadeUp 0.8s ease 0.4s both;
}

.about-showcase-card {
  background: #ffffff;
  border: 1px solid #d8f1e3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12, 102, 50, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: aboutFadeUp 0.65s ease both;
}

.about-showcase-card:nth-child(2) {
  animation-delay: 0.1s;
}

.about-showcase-card:nth-child(3) {
  animation-delay: 0.2s;
}

.about-showcase-card:hover {
  transform: translateY(-8px);
  border-color: #bde9cd;
  box-shadow: 0 20px 40px rgba(12, 102, 50, 0.18);
}

.about-showcase-image {
  max-height: 160px;
  overflow: hidden;
}

.about-showcase-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-showcase-card:hover .about-showcase-image img {
  transform: scale(1.06);
}

.about-showcase-content {
  padding: 16px;
}

.about-showcase-content h3 {
  color: var(--primary-dark);
  font-size: 1.04rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(24, 154, 74, 0.12);
  border: 1px solid rgba(24, 154, 74, 0.22);
  box-shadow: 0 10px 22px rgba(12, 102, 50, 0.08);
}

.about-icon-chip i {
  color: var(--primary-dark);
}

.about-showcase-card--mission .about-icon-chip {
  background: rgba(24, 154, 74, 0.12);
}

.about-showcase-card--vision .about-icon-chip {
  background: rgba(16, 115, 58, 0.12);
}

.about-showcase-card--cta .about-icon-chip {
  background: rgba(24, 154, 74, 0.14);
}

.about-showcase-card--cta {
  background: linear-gradient(160deg, #ffffff 0%, #f0fff6 100%);
}

.about-cta-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-detail-hero {
  padding: 84px 0 46px;
  background: linear-gradient(180deg, #dff3e8 0%, #eef9f2 46%, #ffffff 100%);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(24, 154, 74, 0.14), transparent 55%),
    radial-gradient(circle at 80% 25%, rgba(16, 115, 58, 0.12), transparent 50%);
  pointer-events: none;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
}

.service-detail-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.service-detail-hero-copy h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-detail-hero-copy h2 {
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-detail-hero-copy p {
  color: #375146;
  max-width: 820px;
}

.service-detail-hero-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-highlights {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  color: #375146;
  box-shadow: 0 10px 22px rgba(12, 102, 50, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-highlights span i {
  color: var(--primary);
}

.service-highlights span:hover {
  transform: translateY(-3px);
  border-color: #bde9cd;
  box-shadow: 0 16px 30px rgba(12, 102, 50, 0.12);
}

.service-quick-specs {
  padding-top: 32px;
}

.service-quick-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-spec {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  padding: 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  box-shadow: 0 12px 26px rgba(12, 102, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-spec:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.12);
}

.service-spec-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  border: 1px solid rgba(24, 154, 74, 0.22);
  color: var(--primary-dark);
}

.service-spec h3 {
  color: #103b25;
  font-size: 1rem;
  margin-bottom: 4px;
}

.service-spec p {
  color: #547366;
  font-size: 0.9rem;
}

.service-faq {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.service-faq-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(12, 102, 50, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-faq-item:hover {
  transform: translateY(-3px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.12);
}

.service-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  color: #103b25;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  border: 1px solid rgba(24, 154, 74, 0.22);
  color: var(--primary-dark);
  flex: 0 0 auto;
}

.service-faq-item[open] summary::after {
  content: "–";
}

.service-faq-item p {
  margin-top: 10px;
  color: #547366;
}

.service-detail-hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d8f1e3;
  box-shadow: 0 18px 40px rgba(12, 102, 50, 0.14);
}

.service-detail-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-hero-media:hover img {
  transform: scale(1.05);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.service-detail-card {
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d8f1e3;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 20px 40px rgba(12, 102, 50, 0.14);
}

.service-detail-card h3 {
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  border: 1px solid rgba(24, 154, 74, 0.22);
}

.service-detail-icon i {
  color: var(--primary-dark);
}

.service-detail-card p {
  color: #3d5a4c;
  margin-bottom: 10px;
}

.service-detail-card p:last-child {
  margin-bottom: 0;
}

.service-benefits {
  display: grid;
  gap: 10px;
}

.service-benefit {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-benefit i {
  color: var(--primary);
  margin-top: 2px;
}

.service-benefit:hover {
  transform: translateY(-4px);
  border-color: #bde9cd;
  box-shadow: 0 14px 26px rgba(12, 102, 50, 0.12);
}

.service-benefits-wrap {
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d8f1e3;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.1);
}

.service-benefits-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-benefits-head h2 i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #39c170);
}

.service-benefits-head p {
  color: #3d5a4c;
}

.service-benefits-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-benefit-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(12, 102, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(24, 154, 74, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-benefit-card:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.12);
}

.service-benefit-card:hover::before {
  opacity: 1;
}

.service-benefit-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  border: 1px solid rgba(24, 154, 74, 0.22);
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-benefit-card h3 {
  color: #103b25;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.service-benefit-card p {
  color: #547366;
  font-size: 0.88rem;
}

.service-detail-process {
  padding-top: 40px;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-step {
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  box-shadow: 0 12px 26px rgba(12, 102, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(24, 154, 74, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-step:hover {
  transform: translateY(-6px);
  border-color: #bde9cd;
  box-shadow: 0 18px 34px rgba(12, 102, 50, 0.12);
}

.service-step:hover::before {
  opacity: 1;
}

.service-step-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #39c170);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-step h3 {
  color: #103b25;
  font-size: 1rem;
  margin-bottom: 6px;
}

.service-step p {
  color: #547366;
  font-size: 0.9rem;
}

.service-industries {
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d8f1e3;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.1);
}

.service-industries-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-industries-head h2 i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #39c170);
}

.service-industries-head p {
  color: #3d5a4c;
}

.service-industries-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-industry {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e1f4ea;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-industry:hover {
  transform: translateY(-5px);
  border-color: #bde9cd;
  box-shadow: 0 14px 26px rgba(12, 102, 50, 0.12);
}

.service-industry-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(24, 154, 74, 0.12);
  color: var(--primary-dark);
}

.service-industries-media {
  display: none;
}

.service-industries-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-industries:hover .service-industries-media img {
  transform: scale(1.04);
}

.about-showcase-card:nth-child(2) .about-showcase-content h3 i {
  animation-delay: 0.2s;
}

.about-showcase-card:nth-child(3) .about-showcase-content h3 i {
  animation-delay: 0.4s;
}

.about-showcase-content p {
  color: #466458;
  font-size: 0.92rem;
}

.about-showcase-content p i.fa-check {
  color: var(--primary);
}

.about-showcase-content .btn {
  margin-top: 6px;
}

@keyframes aboutFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes aboutShimmer {
  0% {
    transform: translateX(0) rotate(18deg);
  }
  100% {
    transform: translateX(-340%) rotate(18deg);
  }
}

@keyframes aboutPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(24, 154, 74, 0);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(24, 154, 74, 0.16);
  }
}

@keyframes aboutIconBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes aboutBackgroundShift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 0%;
  }
  100% {
    background-position: 8% 4%, 92% 6%, 50% 100%;
  }
}

@keyframes aboutBackgroundPan {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-top,
  .about-top-hero,
  .about-top-visual,
  .about-top-badges span,
  .about-top-metrics article,
  .about-story-card,
  .about-story-content h3 i,
  .about-mission-block,
  .about-value-showcase,
  .about-showcase-card,
  .about-showcase-content h3 i {
    animation: none !important;
    transition: none !important;
  }
}

.about-hero-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 26px;
  box-shadow: 0 18px 42px rgba(10, 85, 40, 0.2);
}

.about-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-hero-banner:hover img {
  transform: scale(1.05);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(4, 31, 18, 0.12) 0%, rgba(4, 31, 18, 0.75) 100%);
}

.about-hero-overlay h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.about-hero-overlay p {
  color: #dcf7e8;
}

.about-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.about-modern-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f6fff9 100%);
  border: 1px solid #d9f1e4;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(12, 102, 50, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  overflow: hidden;
}

.about-card-media {
  margin: -24px -24px 16px;
  overflow: hidden;
  max-height: 220px;
}

.about-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-modern-card:hover .about-card-media img {
  transform: scale(1.06);
}

.about-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #18a153, #7de3a6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-modern-card:hover {
  transform: translateY(-8px);
  border-color: #bfe8cf;
  box-shadow: 0 22px 44px rgba(12, 102, 50, 0.18);
}

.about-modern-card:hover::before {
  transform: scaleX(1);
}

.about-modern-card h3 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-modern-card h3 i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #39c170);
  font-size: 0.9rem;
}

.about-modern-card p {
  color: #3b5648;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.about-modern-card p:last-child {
  margin-bottom: 0;
}

.who-we-are-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
}

.who-we-are-row .about-card-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

.who-we-are-row .about-card-media img {
  height: 100%;
  min-height: 260px;
}

.who-we-are-content h3 {
  margin-top: 0;
}

.about-values-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d9f1e4;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 12px 28px rgba(12, 102, 50, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-value-card:hover {
  transform: translateY(-7px);
  border-color: #bfe8cf;
  box-shadow: 0 20px 40px rgba(12, 102, 50, 0.18);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0f7a3e, #3ec775);
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(15, 122, 62, 0.24);
  transition: transform 0.3s ease;
}

.about-value-card:hover .about-value-icon {
  transform: rotate(-6deg) scale(1.05);
}

.about-value-card h3 {
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-value-card p {
  color: #456255;
  font-size: 0.93rem;
}

.client-service-box {
  background: linear-gradient(180deg, #0f6d37, #128447);
  color: #eafff1;
}

.client-service-box h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.client-service-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.client-service-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #f2fff7;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(205, 246, 222, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.client-service-list li a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.counter-section {
  background-color: #0d3f27;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(182, 245, 206, 0.22) 1.2px, transparent 0),
    linear-gradient(180deg, #0e472c, #0a3621);
  background-size: 18px 18px, 100% 100%;
}

.counter-container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(18px, 5vw, 72px);
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.counter {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 26px;
  border: 1px solid rgba(201, 243, 217, 0.35);
  text-align: center;
  backdrop-filter: blur(2px);
}

.counter h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #ffffff;
}

.counter p {
  color: #def8e9;
  margin-top: 4px;
  font-weight: 500;
}

.testimonials-section {
  background: linear-gradient(180deg, #f7fffb, #ecfff4);
}

.testimonial-slider {
  background: #ffffff;
  border: 1px solid #ddf5e7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-head h3 {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #caecd8;
  background: #f5fff9;
  color: var(--primary-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.testimonial-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
  background: linear-gradient(160deg, #ffffff 0%, #f4fff8 100%);
  border: 1px solid #d7f1e2;
  border-radius: 14px;
  padding: 20px;
}

.testimonial-stars {
  color: #f4b400;
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
}

.testimonial-card p {
  color: #324635;
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.testimonial-card span {
  color: #5f7a6a;
  font-size: 0.9rem;
}

.testimonial-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbeed9;
  border: 0;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--primary);
}

#estimate {
  background-color: #0d3f27;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(182, 245, 206, 0.22) 1.2px, transparent 0),
    linear-gradient(180deg, #0e472c, #0a3621);
  background-size: 18px 18px, 100% 100%;
}

.cta-container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(18px, 5vw, 72px);
}

.cta {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 243, 217, 0.35);
  border-radius: var(--radius);
  text-align: center;
  padding: 38px 24px;
  backdrop-filter: blur(2px);
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.cta p {
  opacity: 0.95;
  max-width: 820px;
  margin: 0 auto 20px;
}

.footer {
  background: linear-gradient(180deg, #dff3e8 0%, #eef9f2 46%, #ffffff 100%);
  color: #2f3d4a;
  padding-top: 62px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1ba255, #6de39b, #1ba255);
}

.footer-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(38, 133, 77, 0.35), rgba(16, 88, 49, 0.2));
  border: 1px solid rgba(170, 240, 199, 0.22);
}

.footer-topbar h3 {
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-topbar p {
  color: #c3dfcf;
}

.footer-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-top-actions .btn-outline {
  border-color: #8fdfb0;
  color: #deffea;
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 38px;
}

.footer-grid > div {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  border-radius: 12px;
  padding: 8px;
}

.footer-grid > div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer h4 {
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.footer-brand h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  color: #5a6b78;
}

.footer-contact-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-pills a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(152, 240, 190, 0.08);
  border: 1px solid rgba(176, 242, 204, 0.2);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-contact-pills a:hover {
  transform: translateY(-2px);
  background: rgba(152, 240, 190, 0.18);
  border-color: rgba(176, 242, 204, 0.45);
}

.footer-links ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: transform 0.22s ease, color 0.22s ease;
}

.footer-links ul li a::after,
.footer-address ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #8aefae;
  transition: width 0.24s ease;
}

.footer-links ul li a:hover,
.footer-address ul li a:hover {
  transform: translateX(5px);
}

.footer-links ul li a:hover::after,
.footer-address ul li a:hover::after {
  width: 100%;
}

.footer-links ul li a i,
.footer-address ul li a i {
  color: var(--primary);
  font-size: 0.78rem;
}

.footer-address {
  display: grid;
  gap: 10px;
}

.footer-address ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: transform 0.22s ease, color 0.22s ease;
}

.address-card {
  border: 1px solid #1f3a2c;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.address-card p {
  color: #5a6b78;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.address-card p:last-child {
  margin-bottom: 0;
}

.address-card p i {
  color: var(--primary);
  margin-top: 2px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a {
  color: #2f3d4a;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}

.footer a:hover {
  color: var(--primary);
}

.copyright {
  border-top: 1px solid #e3efe8;
  padding: 16px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #6c7d88;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .mega-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-quick-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .slider {
    min-height: 520px;
  }

  .slide {
    min-height: 520px;
  }

  .hero-nav {
    bottom: 16px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card {
    min-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }

  .testimonial-card {
    min-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }

  .about-modern-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are-row {
    grid-template-columns: 1fr;
  }

  .who-we-are-row .about-card-media img {
    min-height: 200px;
  }

  .about-hero-banner,
  .about-hero-banner img {
    min-height: 240px;
  }

  .about-card-media img {
    height: 190px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-top-hero,
  .about-story-card,
  .about-value-showcase {
    grid-template-columns: 1fr;
  }

  .about-top-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .logo img {
    height: 36px;
    max-width: min(180px, 38vw);
  }

  .logo {
    font-size: 0.95rem;
    gap: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8f8ee;
    flex-direction: column;
    padding: 10px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.24s ease;
    align-items: flex-start;
    gap: 10px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav-links > li {
    width: 100%;
    padding: 0 16px;
  }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    min-height: 44px;
  }

  .submenu {
    position: static;
    min-width: 100%;
    border-radius: 10px;
    box-shadow: none;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-submenu.submenu-open .submenu {
    display: grid;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #e6f6ed;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .has-mega-menu:hover .mega-menu {
    transform: none;
  }

  .has-mega-menu::after {
    display: none;
  }

  .has-mega-menu.mega-open .mega-menu {
    display: grid;
  }

  .about-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-media img {
    height: 320px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-quick-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-column h4 {
    font-size: 0.92rem;
  }

  .mega-column ul li a {
    font-size: 0.86rem;
  }

  .nav-links.show {
    transform: scaleY(1);
  }

  .contact-form-row input,
  .contact-form-row textarea {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .section-space {
    padding: 48px 0;
  }

  .breadcrumb-wrap {
    padding: 42px 0 36px;
  }

  .solution-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-industries {
    padding: 16px;
  }

  .about-industries-grid {
    grid-template-columns: 1fr;
  }

  .about-industries-media img {
    height: 220px;
  }

  .map-wrap iframe {
    min-height: 260px;
  }

  .service-detail-hero {
    padding: 74px 0 36px;
  }

  .service-detail-hero-media img {
    height: 240px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-industries-grid {
    grid-template-columns: 1fr;
  }

  .service-industries-media img {
    height: 220px;
  }

  .service-quick-specs {
    padding-top: 18px;
  }

  .service-quick-specs-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-wrap {
    padding: 16px;
  }

  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 16px;
  }

  .slider {
    min-height: 500px;
  }

  .slide {
    min-height: 500px;
  }

  .hero-nav {
    right: 18px;
  }

  .counters {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
}

.whatsapp-float {
  position: fixed;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #1ea954 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid #1ca44f;
  box-shadow: 0 14px 30px rgba(18, 128, 56, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.25rem;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 128, 56, 0.36);
  filter: saturate(1.03);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    padding: 11px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 0.84rem;
  }

  .topbar-contact {
    justify-content: center;
  }

  .topbar-social {
    margin-left: 0;
    justify-content: center;
  }

  .logo span {
    display: none;
  }

  .about-top-metrics {
    grid-template-columns: 1fr;
  }

  .slider,
  .slide {
    min-height: min(72vh, 480px);
  }

  .section-space {
    padding: 40px 0;
  }

  .footer {
    padding-top: 44px;
  }
}

/* Blog listing */
.blog-section {
  background: linear-gradient(180deg, #f8fffb 0%, #ffffff 45%, #f3fff7 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dff3e8;
  box-shadow: 0 10px 28px rgba(16, 115, 58, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #5fd68a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 3;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(16, 115, 58, 0.16);
  border-color: #b8ebcd;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e8fbef, #d4f5e3);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.07);
}

.blog-card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #0f6a35;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c8f1d8;
  box-shadow: 0 6px 16px rgba(14, 71, 44, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover .blog-card-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(14, 71, 44, 0.16);
}

.blog-card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: #e8fbef;
  border: 1px solid #c8f1d8;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-link i {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.blog-card-link:hover {
  color: var(--primary-dark);
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
