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

body {
  font-family: "Inter", sans-serif;
  background-color: #f3f3f3;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
  padding-top: 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 56px;
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: #ffff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 22px;
}

.nav-toggle i {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links li a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  color: #143300;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links li a:hover {
  color: #143300;
  border-color: #143300;
}

.logo-circle {
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.btn-dark {
  padding: 10px 26px;
  background: linear-gradient(100deg, #0e6b3f, #4cb809);
  color: #ffffff;
  border-radius: 9px;
  border: none;
  cursor: pointer;
}

/* FOOTER */

.footer {
  margin-top: 0;
  background: #143300;
  color: #f4f4f4;
  padding: 40px 36px;
}

.footer-inner {
  margin: 0 auto;
  font-size: 13px;
}

.footer-top-text {
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f3f3f3;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2.1fr;
  column-gap: 30px;
  row-gap: 24px;
  align-items: flex-start;
}

.footer-column-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: none;
}

.footer-list {
  list-style: none;
  line-height: 1.9;
  color: #f5f5f5;
  opacity: 0.88;
}

.footer-list li {
  margin-bottom: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-contact-icon {
  font-size: 14px;
  margin-right: 8px;
  line-height: 1.3;
}

.footer-contact-text {
  line-height: 1.5;
}

.footer-newsletter {
  background: #151515;
  padding: 18px 18px 16px;
  border-radius: 6px;
  color: #ffffff;
}

.footer-newsletter-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-newsletter-text {
  margin-bottom: 12px;
  font-size: 12px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  margin-bottom: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 9px 10px;
  border-radius: 3px 0 0 3px;
  border: none;
  font-size: 12px;
  outline: none;
}

.newsletter-btn {
  padding: 9px 14px;
  border-radius: 0 3px 3px 0;
  border: none;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: #f3a32d;
  color: #111111;
  white-space: nowrap;
}

.newsletter-note {
  font-size: 11px;
  opacity: 0.75;
}

/* HERO */

.hero-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0f6c40, #f5ffef 20%);
  text-align: center;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
}

.primary-btn {
  background: linear-gradient(100deg, #0e6b3f, #4cb809);
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* SERVICES SCROLLER */

.services-wrapper {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-container {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.services-container::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 150px;
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex-shrink: 0;
}

.service-icon {
  font-size: 32px;
  color: #0d6d35;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  margin-right: 10px;
}

.right {
  margin-left: 10px;
}

/* ABOUT */

.about-section {
  padding: 50px 20px;
  background: #f7f7f7;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 400px;
}

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

.about-content {
  flex: 1 1 400px;
}

.about-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.about-header {
  display: flex;
  justify-content: space-between;
}

.about-header p {
  font-size: 16px;
  color: #555555;
}

.know-more {
  color: #225204;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.about-services {
  margin-top: 20px;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-box img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.service-box h3 {
  font-size: 18px;
  margin: 0;
}

.service-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #525252;
}

.decor-section {
  padding: 60px 60px;
}

.decor-section-2 {
  padding: 0 40px;
}

.decor-container {
  max-width: 100%;
  margin: 0 auto;
}

.decor-header-label-container {
  display: flex;
  justify-content: space-between;
}

.decor-header-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  height: 40px;
  max-width: 130px;
  border-radius: 20px;
  border: 1px solid #d0d0d0;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.heading-wrapper {
  width: 70%;
}

.decor-header-label span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4cb809;
}

.decor-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.decor-heading span.highlight-green {
  color: #4cb809;
}

.decor-heading span.highlight-dark {
  color: #000000;
}

.decor-subtitle {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

.decor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.decor-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.decor-image-wrapper {
  height: 168px;
  padding: 10px;
}

.decor-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.decor-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.decor-title {
  font-size: 15px;
  font-weight: 700;
}

.decor-title span.number {
  margin-right: 4px;
}

.decor-text {
  font-size: 13px;
  color: #7b7b7b;
}

.decor-footer {
  margin-top: auto;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(100deg, #0e6b3f, #4cb809);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.btn-know-more:hover {
  transform: translateY(-1px);
}

.btn-know-more:active {
  transform: translateY(0);
}

.decor-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.decor-stat-item {
  padding-right: 16px;
}

.decor-stat-number {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 3px;
}

.decor-stat-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.decor-stat-desc {
  font-size: 20px;
  color: #757272;
}

.container {
  margin: 0 auto;
  padding: 60px 60px;
}

.section-testimonial {
  background: #ffffff;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.testimonial-heading-block {
  max-width: 35%;
}

.badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  height: 40px;
  max-width: 140px;
  border-radius: 20px;
  border: 1px solid #d0d0d0;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.badge-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4cb809;
}

.testimonial-title {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111827;
}

.testimonial-title span.highlight {
  color: #4cb809;
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
}

.testimonial-control-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.testimonial-control-btn:active {
  transform: translateY(1px);
}

.testimonial-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 0 0 38%;
  min-width: 260px;
  overflow: hidden;
}

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

.testimonial-card-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  background: #f7f9fb;
  border-radius: 22px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 2rem;
  color: #4cb809;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 23px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.75rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #4cb809;
  font-size: 1rem;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
}

.client-avatar {
  display: flex;
  border-radius: 50%;
  align-items: center;
  padding: 3px;
  border: 2px dotted #4cb809;
}

.client-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.section-contact {
  background: #f8fafc;
}

.contact-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-info {
  flex: 0 0 33%;
  min-width: 260px;
  background: #143300;
  color: #ffffff;
  border-radius: 22px;
  padding: 2.3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.12);
}

.contact-info-2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 40px;
  right: 60px;
  opacity: 0.9;

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.18) 60%,
    transparent 61%
  );
  border-radius: 50%;
}

.contact-info::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  border-radius: 150px;
  bottom: -80px;
  right: -60px;
  opacity: 0.9;
}

.contact-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-info p.sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.8rem;
  max-width: 220px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 0.9rem;
}

.contact-list span.label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  margin-bottom: 0.1rem;
}

.contact-list span.value {
  color: #ffffff;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.social-row span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #0c5b38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 2.3rem 2.4rem;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.12);
}

.contact-form form {
  width: 100%;
}

.form-row-title {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #111827;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.form-control,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  color: #111827;
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-control:focus,
.form-textarea:focus {
  border-color: #28b463;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  border-radius: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.service-options {
  grid-column: 1 / -1;
  margin-bottom: 0.3rem;
}

.service-options label.label-main {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.service-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 0.9rem;
  font-size: 0.75rem;
  cursor: pointer;
  color: #4b5563;
  background: #ffffff;
  transition: 0.15s ease;
  border: 1px solid transparent;
}

.service-pill input {
  display: none;
}

.service-pill .pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: transparent;
  flex-shrink: 0;
}

.service-pill input:checked + .pill-dot {
  border-color: #28b463;
  background: #28b463;
}

.service-pill input:checked ~ span.pill-label {
  color: #28b463;
  font-weight: 500;
}

.service-pill:hover {
  border-color: #28b463;
}

.submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: linear-gradient(100deg, #0e6b3f, #4cb809);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary i {
  font-size: 0.8rem;
}

.btn-primary:active {
  transform: translateY(1px);
}

.projects-section {
  padding: 60px 16px;
  display: flex;
  justify-content: center;
}

.projects-container {
  padding: 50px 50px;
  width: 100%;
}

.projects-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.projects-title span {
  color: #22c55e;
}

.projects-subtitle {
  font-size: 15px;
  color: #6b7280;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background-color: #fff;
  padding: 10px;
  gap: 24px;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-image {
  width: 100%;
  object-fit: cover;
  display: block;
}
.card-down {
  margin-top: 60px;
}

.project-body {
  padding: 18px 20px 20px;
}

.project-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-text {
  font-size: 14px;
  color: #6b7280;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.scroll-top:active {
  transform: translateY(0);
}

.bannerWrapper {
  position: relative;
}
.bannerWrapper img {
  width: 100%;
}
.bannerOverlayWrapper2 {
  background: rgba(3, 57, 32, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.bannerOverlayWrapper2 h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.bannerOverlayWrapper2 p {
  color: #fff;
  max-width: 55%;
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
}

.design-section {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  font-family: "Poppins", sans-serif;
}

.tag {
  text-align: center;
  color: #4cb809;
  margin-bottom: 5px;
}

.main-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

.row-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.row-block .reverse {
  flex-direction: row-reverse;
}

.img-box {
  flex: 1;
}

.img-box img {
  width: 100%;
}

.text-box {
  flex: 1;
}

.text-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.green {
  color: #4cb809;
}

.desc {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

.list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  gap: 10px;
}

.icon {
  width: 26px;
  height: 26px;
  background: #0e6b3f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

.products-section-p {
  padding: 40px 8% 60px;
  text-align: center;
}

.products-section-p h2 {
  font-size: 1.7rem;
  margin-bottom: 32px;
}

.products-grid-p {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-items: center;
}

.product-card-p {
  background: #ffffff;
  border-radius: 24px;
  padding: 14px;
  max-width: 320px;
  border: 3px solid transparent;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-image-wrapper-p {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
}

.product-image-wrapper-p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .decor-heading {
    font-size: 28px;
  }

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

  .decor-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .testimonial-title {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 1.8rem 1.9rem;
  }

  .contact-wrapper {
    gap: 1.5rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter {
    margin-top: 4px;
  }
  .row-block,
  .row-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .desc {
    max-width: 100%;
  }

  .list {
    grid-template-columns: 1fr;
  }

  .list li {
    padding-left: 0;
  }

  .list li::before {
    display: none;
  }
}

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

@media (max-width: 768px) {
  .navbar {
    padding: 14px 16px;
  }
  .text-box h3 {
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
    color: #111827;
  }

  .about-container {
    flex-direction: column;
  }

  .about-header {
    display: block;
  }

  .about-header p {
    font-size: 14px;
  }

  .service-box {
    justify-content: center;
    text-align: left;
  }

  .nav-right {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 18px 20px;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 50;
  }

  .navbar.nav-open .nav-right {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
  }

  .nav-links li a {
    display: block;
    padding: 6px 0;
  }

  .btn-dark {
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .service-card {
    min-width: 130px;
    padding: 20px 12px;
  }

  .services-wrapper {
    justify-content: center;
  }

  .testimonial-content,
  .contact-wrapper {
    flex-direction: column;
  }

  .testimonial-card {
    margin-top: 0.3rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.8rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-heading-block {
    max-width: 45%;
  }
  .bannerWrapper img {
    height: 260px;
  }
  .bannerOverlayWrapper2 p {
    max-width: 85%;
  }

  .bannerOverlayWrapper p {
    max-width: 85%;
  }
}

@media (max-width: 720px) {
  .services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    overflow-x: visible;
    justify-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .decor-section {
    padding: 40px 16px;
  }

  .decor-heading {
    font-size: 24px;
  }
  .projects-section {
    padding: 40px 16px;
  }

  .projects-header {
    max-width: 100%;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-container {
    padding: 20px 20px;
    width: 100%;
  }

  .decor-header-label-container {
    display: flex;
    flex-direction: column;
  }

  .heading-wrapper {
    width: 100%;
  }

  .decor-grid {
    grid-template-columns: 1fr;
  }

  .decor-stats {
    grid-template-columns: 1fr;
  }

  .decor-header-label {
    font-size: 12px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .testimonial-heading-block {
    max-width: 100% !important;
  }

  .testimonial-controls {
    display: none !important;
  }

  .container {
    padding: 60px 10px !important;
  }
  .products-section-p {
    padding-inline: 16px;
  }
}

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

  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

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

  .service-card p {
    font-size: 13px;
  }

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

  .service-box img {
    width: 60px;
    height: 60px;
  }

  .service-box h3 {
    font-size: 16px;
  }

  .testimonial-title {
    font-size: 1.35rem;
  }

  .badge-pill {
    font-size: 0.7rem;
  }

  .contact-info h3 {
    font-size: 1rem;
  }

  .contact-info p.sub {
    font-size: 0.78rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

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

  .product-card {
    max-width: 100%;
  }
}
