* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color: var(--text);
  background: #fff;
  line-height:1.6
}

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

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

.container {
  width: min(1180px,92%);
  margin:auto
}

.section {
  padding:82px 0
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border)
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content:space-between
}

.logo img {
  height:66px
}

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

.nav-link,
.dropdown-toggle {
  border: 0;
  background: transparent;
  font: 600 15px Inter;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding:10px 0
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  transition:.25s ease
}

.nav-cta,
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow:0 10px 25px rgba(86,159,9,.22)
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--primary-dark);
  transform:translateY(-2px)
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.65);
  color:#fff
}
.btn-outline:hover{box-shadow: 0 10px 25px rgba(86, 159, 9, .22); background:#569f09 !important}
.btn-outline.dark {
  color: var(--primary);
  border-color:var(--primary)
}

.btn-light {
  background: #fff;
  color:var(--primary)
}

.nav-item {
  position:relative
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:.2s
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform:translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--text);
  font-size:14px
}

.dropdown-menu a:hover {
  background: rgba(86,159,9,.10);
  color:var(--primary)
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size:20px
}

.hero-section {
  background: linear-gradient(135deg,var(--primary-dark),var(--primary) 52%,var(--primary));
  color: #fff;
  padding: 95px 0 70px;
  overflow:hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap:54px
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom:12px
}

.hero-content .eyebrow,
.eyebrow.light {
  color:#eef8d8
}

.hero-content h1 {
  font-size: clamp(38px,5vw,59px);
  line-height: 1.05;
  margin:0 0 20px
}

.hero-content p {
  font-size: 18px;
  color: #f4ffe8;
  max-width:650px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin:30px 0
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top:32px
}

.hero-stats div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding:18px
}

.hero-stats strong {
  display: block;
  font-size:30px
}

.hero-stats span {
  font-size: 13px;
  color:#eef8d8
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  min-height: 430px;
  background:#eef7e8
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit:cover
}

.floating-card {
  position: absolute;
  background: #fff;
  color: var(--dark);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  box-shadow:var(--shadow)
}

.top-card {
  top: 24px;
  left:24px
}

.bottom-card {
  bottom: 24px;
  right:24px
}

.category-strip {
  background: #fff;
  margin-top: -1px;
  padding: 22px 0;
  border-bottom:1px solid var(--border)
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap:14px
}

.strip-grid div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color:var(--dark)
}

.strip-grid i {
  color: var(--primary);
  margin-right:8px
}

.section-head {
  margin-bottom:36px
}

.section-head.center {
  text-align: center;
  max-width: 790px;
  margin-left: auto;
  margin-right:auto
}

.section-head.space-between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap:20px
}

.section-head h2 {
  font-size: clamp(30px,4vw,46px);
  line-height: 1.12;
  margin: 0 0 12px;
  color:var(--dark)
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin:0
}

.services-section {
  background:var(--light)
}

.carousel-wrap {
  position:relative
}

.service-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 26px;
  scrollbar-width:none
}

.service-carousel::-webkit-scrollbar {
  display:none
}

.service-card {
  flex: 0 0 330px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  scroll-snap-align: start;
  transition:.25s
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:var(--shadow)
}

.service-card img {
  height: 218px;
  width: 100%;
  object-fit: cover;
  background:linear-gradient(135deg,#eef7e8,var(--light))
}

.service-body {
  padding:24px
}

.service-body span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom:12px
}

.service-body h3 {
  font-size: 22px;
  margin:0 0 10px
}

.service-body p {
  color: var(--muted);
  margin:0 0 18px
}

.service-body a {
  color: var(--primary);
  font-weight:800
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  cursor:pointer
}

.carousel-btn.prev {
  left:-18px
}

.carousel-btn.next {
  right:-18px
}

.category-showcase {
  background:#fff
}

.category-row {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
  margin: 34px 0;
  padding: 28px;
  background: linear-gradient(135deg,#fff,var(--light));
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow:0 14px 40px rgba(15,23,42,.08)
}

.category-row.reverse {
  grid-template-columns:1.08fr .92fr
}

.category-row.reverse .category-row-image {
  order:2
}

.category-row-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 26px;
  background:#eef7e8
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 15px;
  margin-bottom:15px
}

.category-row-content h3 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
  color:var(--dark)
}

.category-row-content p {
  color: var(--muted);
  font-size: 17px;
  margin:0 0 18px
}

.mini-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin:20px 0 26px
}

.mini-service-list span {
  border: 1px solid rgba(86,159,9,.28);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color:var(--text)
}

.cta-band {
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: #fff;
  padding:55px 0
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:25px
}

.cta-grid h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  max-width:780px
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items:center
}

.about-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  height: 460px;
  width: 100%;
  object-fit: cover;
  background:#eef7e8
}

.about-content h2,
.faq-intro h2,
.contact-section h2 {
  font-size: 42px;
  line-height: 1.15;
  margin:0 0 16px
}

.about-content p,
.contact-section p,
.faq-intro p {
  color:var(--muted)
}

.check-list p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color:var(--dark)
}

.check-list i {
  color: var(--primary);
  margin-top:4px
}

.why-section {
  background:var(--light)
}

.why-grid,
.industry-grid,
.blog-grid,
.logo-grid {
  display: grid;
  gap:22px
}

.why-grid {
  grid-template-columns:repeat(4,1fr)
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow:0 8px 24px rgba(15,23,42,.06)
}

.why-card i {
  font-size: 32px;
  color:var(--primary)
}

.why-card h3 {
  margin:16px 0 8px
}

.why-card p {
  color: var(--muted);
  margin:0
}

.industry-grid {
  grid-template-columns:repeat(6,1fr)
}

.industry-grid div {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  background: #fff;
  box-shadow:0 8px 24px rgba(15,23,42,.05)
}

.industry-grid i {
  display: block;
  color: var(--primary);
  font-size: 30px;
  margin-bottom:12px
}

.testimonial-section {
  background:var(--light)
}

.testimonial-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  margin:0 auto
}

.testimonial-content {
  width: min(720px,100%);
  min-height: 285px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
  transition:opacity .28s ease,transform .28s ease
}

.testimonial-content.is-changing {
  opacity: 0;
  transform:translateX(14px)
}

.testimonial-content img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  background:#eef7e8
}

.testimonial-content p {
  font-size: 19px;
  color:var(--text)
}

.testimonial-arrow {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(86,159,9,.22);
  cursor: pointer;
  transition:.2s ease
}

.testimonial-arrow:hover {
  background: var(--primary-dark);
  transform:translateY(-2px)
}

.logo-grid {
  grid-template-columns:repeat(5,1fr)
}

.logo-grid div {
  height: 100px;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff
}

.logo-grid img {
  max-height: 56px;
  opacity:.8
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow:0 8px 28px rgba(15,23,42,.07)
}

.blog-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  background:#eef7e8
}

.blog-card div {
  padding:22px
}

.blog-card span {
  color: var(--primary);
  font-weight: 800;
  font-size:13px
}

.blog-card h3 {
  font-size: 21px;
  line-height:1.25
}

.blog-card a {
  color: var(--primary);
  font-weight:800
}

.faq-section {
  background:var(--light)
}

.faq-grid {
  align-items:start
}

.faq-intro {
  position: sticky;
  top:105px
}

.faq-accordion {
  display: grid;
  gap:14px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:0 8px 25px rgba(15,23,42,.05)
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor:pointer
}

.faq-question i {
  color: var(--primary);
  transition:.25s
}

.faq-item.active .faq-question i {
  transform:rotate(45deg)
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color:var(--muted)
}

.faq-item.active .faq-answer {
  display:block
}

.contact-section {
  background:#fff
}

.contact-info p {
  font-weight: 700;
  color:var(--dark)
}

.contact-info i {
  color: var(--primary);
  width:24px
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap:16px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 15px 16px;
  font: 500 15px Inter;
  color:var(--dark);
	margin-bottom:16px;
}

.contact-form textarea {
  height: 130px;
  resize:vertical
}

.footer {
  background: var(--dark);
  color: #dcebe3;
  padding:56px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:34px
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-top:0
}

.footer a {
  display: block;
  margin: 9px 0;
  color:#dcebe3
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  margin-top: 34px;
  color:#a8bdb2
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  z-index:999
}

@media(max-width:980px) {
  .menu-toggle {
    display:block
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 5%;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 78px);
    overflow:auto
  }

  .main-nav.active {
    display:flex
  }

  .nav-link,.dropdown-toggle {
    justify-content: space-between;
    width:100%
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    margin-top:6px
  }

  .nav-item.open .dropdown-menu {
    display:block
  }

  .hero-grid,.about-grid,.contact-grid,.faq-grid,.category-row,.category-row.reverse {
    grid-template-columns:1fr
  }

  .category-row.reverse .category-row-image {
    order:0
  }

  .why-grid,.industry-grid,.blog-grid,.logo-grid {
    grid-template-columns:repeat(2,1fr)
  }

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

  .cta-grid,.section-head.space-between {
    display:block
  }

  .cta-grid .btn {
    margin-top:20px
  }

  .faq-intro {
    position:static
  }

  .carousel-btn {
    display:none
  }

  .footer-grid {
    grid-template-columns:1fr 1fr
  }
}

@media(max-width:640px) {
  .section {
    padding:58px 0
  }

  .hero-section {
    padding:70px 0 48px
  }

  .hero-stats {
    grid-template-columns:1fr
  }

  .strip-grid,.why-grid,.industry-grid,.blog-grid,.logo-grid,.footer-grid {
    grid-template-columns:1fr
  }

  .service-card {
    flex-basis:86%
  }

  .category-row {
    padding: 18px;
    border-radius:26px
  }

  .category-row-image img,.about-image img {
    height:270px
  }

  .category-row-content h3,.about-content h2,.faq-intro h2,.contact-section h2 {
    font-size:30px
  }

  .cta-grid h2 {
    font-size:28px
  }
}

@media(max-width:640px) {
  .testimonial-box {
    gap: 12px;
    align-items:stretch
  }

  .testimonial-content {
    order: 1;
    min-height: 320px;
    padding: 28px 22px;
    border-radius:24px
  }

  .testimonial-content p {
    font-size: 16px;
    line-height:1.6
  }

  .testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex-basis:42px
  }

  .testimonial-arrow:hover {
    transform:translateY(-50%)
  }

  #prevTestimonial {
    left:-4px
  }

  #nextTestimonial {
    right:-4px
  }

  .testimonial-content {
    margin:0 22px
  }
}

/* ===== Brand color + smooth slider fixes added ===== */
:root {

  --primary: #569f09 !important;

  --primary-dark: #458104 !important;

  --secondary: #f59e0b !important;

  --dark: #36489d !important;

  --text: #475569 !important;

  --light: #f2f9ff !important;

  --white: #ffffff !important;

  --border: #e2e8f0 !important;

  --shadow: 0 24px 70px rgba(15,23,42,0.12) !important;

  --radius: 24px !important;
}

.site-header .nav-link,
.dropdown-toggle,
.section-head h2,
.category-row-content h3,
.check-list p,
.contact-info p {
 /* color: var(--dark) !important;*/
}

.nav-cta,
.btn-primary,
.menu-toggle,
.carousel-btn,
.testimonial-arrow {
  background: var(--primary) !important;
  color: #fff !important;
}

.nav-cta:hover,
.btn-primary:hover,
.carousel-btn:hover,
.testimonial-arrow:hover {
  background: var(--primary-dark) !important;
}

.hero-section {
  background: linear-gradient(135deg,var(--dark) 0%,var(--primary-dark) 48%,var(--primary) 100%) !important;
}

.cta-band {
  background: linear-gradient(135deg,var(--dark),var(--primary-dark) 55%,var(--primary)) !important;
}

.footer {
  background: var(--dark) !important;
}

.eyebrow,
.service-body a,
.blog-card a,
.blog-card span,
.faq-question i,
.strip-grid i,
.industry-grid i,
.why-card i,
.check-list i,
.contact-info i {
  color: var(--primary) !important;
}

.btn-outline.dark {
  color: var(--dark) !important;
  border-color: var(--dark) !important;
}
.btn-outline.dark:hover{background:#36489d; color:#fff !important}

.testimonial-box {
  display: grid !important;
  grid-template-columns: 56px minmax(0,760px) 56px;
  align-items: center;
  gap: 18px;
  max-width: 930px;
  margin: 0 auto;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.testimonial-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.testimonial-content {
  flex: 0 0 100%;
  width: 100%;
  min-height: 285px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
  transform: translateZ(0);
}

.testimonial-content h4 {
  margin: 14px 0 2px;
  color: var(--dark);
  font-size: 19px;
}

.testimonial-content span {
  color: var(--primary);
  font-weight: 700;
}

.testimonial-arrow {
  position: static !important;
  transform: none !important;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(86,159,9,.24);
}

.testimonial-arrow:hover {
  transform: translateY(-2px) !important;
}

.client-logo-marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  mask-image: linear-gradient(to right,transparent,#000 10%,#000 90%,transparent);
  -webkit-mask-image: linear-gradient(to right,transparent,#000 10%,#000 90%,transparent);
}

.logo-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: clientLogoScroll 24s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track div {
  width: 205px;
  height: 104px;
  flex: 0 0 205px;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.logo-track img {
  /*max-height: 58px;*/
  max-width: 150px;
  opacity: .86;
}

@keyframes clientLogoScroll {
  from {
    transform:translateX(0)
  }

  to {
    transform:translateX(calc(-50% - 11px))
  }
}

@media(max-width:640px) {

  .testimonial-box {
    grid-template-columns: 42px minmax(0,1fr) 42px;
    gap: 7px;
    width: 100%;
  }

  .testimonial-viewport {
    border-radius: 24px;
  }

  .testimonial-content {
    min-height: 330px;
    padding: 28px 20px;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(15,23,42,.10);
  }

  .testimonial-content p {
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
  }

  .testimonial-content img {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex-basis: 42px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(86,159,9,.22);
  }

  .testimonial-arrow:hover {
    transform: none !important;
  }

  .logo-track {
    gap: 14px;
    animation-duration: 18s;
  }

  .logo-track div {
    width: 160px;
    height: 88px;
    flex-basis: 160px;
  }

  .logo-track img {
    max-width: 118px;
    max-height: 48px;
  }
}


/* =========================================================
   WATER TANK CLEANING / SERVICE DETAIL PAGE CSS
   Add this block at the END of your existing style.css
   Header and footer remain from home page.
   ========================================================= */

.breadcrumb-strip {
  width: 100%;
  background: var(--dark) !important;
  color: #ffffff !important;
}

.breadcrumb-strip .breadcrumbs {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff !important;
}

.breadcrumb-strip .breadcrumbs a,
.breadcrumb-strip .breadcrumbs span,
.breadcrumb-strip .breadcrumbs strong {
  color: #ffffff !important;
}

.breadcrumb-strip .breadcrumbs a:hover {
  color: #dff8c9 !important;
}

.service-hero {
  background: linear-gradient(180deg, #f8fffc 0%, #ffffff 100%) !important;
  padding: 0 0 76px !important;
  overflow: hidden;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding-top: 46px;
}

.service-hero .eyebrow {
  color: var(--primary) !important;
}

.service-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -2.2px;
  margin: 0 0 22px;
  color: var(--dark) !important;
}

.service-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text) !important;
  margin: 0 0 22px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 28px;
}

.service-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.service-badges i {
  color: var(--primary) !important;
}

.service-hero .hero-actions {
  margin: 0;
}

.hero-image-placeholder {
  min-height: 500px;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  border: 1px solid rgba(54, 72, 157, .16);
  box-shadow: var(--shadow);
}

.placeholder-media {
  min-height: 390px;
  border-radius: 28px;
  border: 2px dashed rgba(54, 72, 157, .28);
  /*background: linear-gradient(135deg, rgba(86, 159, 9, .14), rgba(54, 72, 157, .10)), #ffffff;*/
  display: grid;
  place-items: center;
  text-align: center;
  padding: 15px;
  color: var(--dark);
}
.placeholder-media img{border-radius:20px}
.placeholder-media i {
  display: block;
  font-size: 58px;
  color: var(--primary) !important;
  margin-bottom: 12px;
}

.placeholder-media span {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--dark);
}

.placeholder-media small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-service-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--dark) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.hero-service-note i {
  color: #bbf7d0 !important;
}

.risk-section {
  padding-top: 0 !important;
  background: #ffffff;
}

.risk-panel {
  display: block;
  width: 100%;
  padding: 38px;
  border-radius: 30px;
  background: var(--dark) !important;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #dbeafe !important;
  box-shadow: var(--shadow);
}

.risk-panel .eyebrow,
.risk-panel .eyebrow.light {
  color: #bbf7d0 !important;
}

.risk-panel h2,
.risk-panel h3 {
  color: #ffffff !important;
  margin-top: 0;
}

.risk-panel p {
  /*max-width: 980px;*/
  color: #dbeafe !important;
}

.info-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 23, 42, .05);
}

.info-panel h2,
.info-panel h3 {
 
  margin-top: 0;
}
.info-panel h2 {font-size:clamp(30px, 4vw, 48px); margin:0px; color: #fff !important;	}
.process-section {
  background: var(--light) !important;
}

.process-grid,
.type-grid,
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card,
.type-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.process-card strong {
  display: block;
  color: rgba(54, 72, 157, .16);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.process-card h3,
.type-card h3 {
  color: var(--dark) !important;
  margin: 12px 0 10px;
  font-size: 21px;
}

.process-card p,
.type-card p,
.choose-card p,
.related-card p {
  /*color: var(--text);*/
  margin: 0;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
}

.scope-list li {
  list-style: none;
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 700;
}

.scope-list i {
  color: var(--primary) !important;
  margin-right: 8px;
}

.type-card {
  text-align: center;
}

.type-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: rgba(86, 159, 9, .12);
  color: var(--primary) !important;
  font-size: 28px;
}

.choose-section {
  background: var(--dark) !important;
  color: #dbeafe !important;
}

.choose-section h2,
.choose-section h3 {
  color: #ffffff !important;
}

.choose-section .eyebrow.light {
  color: #bbf7d0 !important;
}

.choose-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.choose-card i {
  color: var(--secondary) !important;
  font-size: 24px;
  margin-bottom: 14px;
}

.service-action-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
}

.service-action-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-action-card h2 {
  color: var(--dark) !important;
  margin: 0 0 12px;
}

.action-contact-info a {
  color: var(--dark);
  font-weight: 800;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.action-buttons .btn {
  min-width: 170px;
}

.related-services {
  background: #f8fafc !important;
  padding: 80px 0;
}

.related-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 26px;
  scrollbar-width: none;
}

.related-carousel::-webkit-scrollbar {
  display: none;
}

.related-card {
  flex: 0 0 330px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  transition: .25s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.related-img {
  height: 210px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(54, 72, 157, .12), rgba(86, 159, 9, .18));
	overflow:hidden;
}

.related-img i {
  font-size: 54px;
  color: var(--primary) !important;
}

.related-body {
  padding: 24px;
}

.related-card h3 {
  color: var(--dark) !important;
  margin: 0 0 12px;
}

.related-card p {
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 900;
}

.read-more-btn:hover {
  background: var(--primary-dark) !important;
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-action-card {
    grid-template-columns: 1fr;
  }

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

  .action-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .breadcrumb-strip .breadcrumbs {
    padding: 14px 0;
    font-size: 13px;
  }

  .service-hero {
    padding-bottom: 56px !important;
  }

  .service-hero-grid {
    padding-top: 30px;
    gap: 34px;
  }

  .service-hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-image-placeholder {
    min-height: auto;
    border-radius: 28px;
  }

  .placeholder-media {
    min-height: 280px;
  }

  .scope-list,
  .process-grid,
  .type-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .service-action-card {
    padding: 28px 22px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card {
    flex-basis: 86%;
  }
}
/* Service Bush About Page CSS - scoped to avoid style.css clash */
.sb-about-page {
  background: #fff;
  overflow: hidden;
}

.sb-about-page h1,
.sb-about-page h2,
.sb-about-page h3 {
  color: var(--dark);
}

.sb-about-breadcrumb-strip {
  width: 100%;
  background: var(--dark);
  color: var(--white);
}

.sb-about-breadcrumbs {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
}

.sb-about-breadcrumbs a,
.sb-about-breadcrumbs span,
.sb-about-breadcrumbs strong {
  color: var(--white);
}

.sb-about-hero {
  background: linear-gradient(180deg, #f8fffc 0%, #ffffff 100%);
}

.sb-about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0 80px;
}

.sb-about-hero-content h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2.2px;
  margin: 0 0 22px;
}

.sb-about-hero-content p {
  max-width: 720px;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 24px;
}

.sb-about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.sb-about-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.sb-about-hero-points i {
  color: var(--primary);
}

.sb-about-visual-card {
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  border: 1px solid rgba(54,72,157,.16);
  box-shadow: var(--shadow);
}

.sb-about-image-placeholder {
  min-height: 390px;
  border-radius: 28px;
  border: 2px dashed rgba(54,72,157,.28);
  background: linear-gradient(135deg, rgba(86,159,9,.14), rgba(54,72,157,.10)), #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  color: var(--dark);
}

.sb-about-image-placeholder.small {
  min-height: 430px;
}

.sb-about-image-placeholder i {
  display: block;
  font-size: 56px;
  color: var(--primary);
  margin: 0 auto 12px;
}

.sb-about-image-placeholder strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.sb-about-image-placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 700;
}

.sb-about-floating-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
}

.sb-about-floating-note i {
  color: #bbf7d0;
}

.sb-about-two-col,
.sb-about-origin-grid,
.sb-about-customer-card,
.sb-about-team-grid,
.sb-about-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.sb-about-card,
.sb-about-highlight-panel,
.sb-about-dark-panel {
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
}

.sb-about-card h2,
.sb-about-origin-grid h2,
.sb-about-customer-card h2,
.sb-about-dark-panel h2,
.sb-about-team-grid h2,
.sb-about-cta-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  margin: 0 0 16px;
}

.sb-about-card p,
.sb-about-origin-grid p,
.sb-about-customer-card p,
.sb-about-dark-panel p,
.sb-about-team-grid p,
.sb-about-vmv-card p {
  color: var(--text);
  margin: 0 0 15px;
  font-size: 16px;
}

.sb-about-highlight-panel {
  background: var(--light);
}

.sb-about-highlight-panel h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

.sb-about-highlight-panel ul,
.sb-about-vmv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-about-highlight-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--dark);
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}

.sb-about-highlight-panel li:last-child {
  border-bottom: 0;
}

.sb-about-highlight-panel i {
  color: var(--primary);
  margin-top: 4px;
}

.sb-about-origin-section,
.sb-about-vmv-section {
  background: var(--light);
}

.sb-about-image-box {
  border-radius: 36px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.sb-about-customer-card {
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow);
}

.sb-about-customer-list {
  display: grid;
  gap: 16px;
}

.sb-about-customer-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 900;
}

.sb-about-customer-list i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-size: 22px;
}

.sb-about-setup-section,
.sb-about-team-section {
  background: #ffffff;
}

.sb-about-dark-panel {
  background: var(--dark);
  color: #dbeafe;
  border-color: rgba(255,255,255,.12);
}

.sb-about-dark-panel h2,
.sb-about-dark-panel p {
  color: var(--white);
}

.sb-about-metrics {
  display: grid;
  gap: 18px;
}

.sb-about-metrics div {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15,23,42,.07);
}

.sb-about-metrics strong {
  display: block;
  color: var(--primary);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}

.sb-about-metrics span {
  color: var(--dark);
  font-weight: 900;
}

.sb-about-vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sb-about-vmv-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(15,23,42,.06);
}

.sb-about-vmv-card > span {
  display: inline-flex;
  color: rgba(54,72,157,.16);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

.sb-about-vmv-card i {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-size: 24px;
}

.sb-about-vmv-card h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.sb-about-vmv-card li {
  display: inline-flex;
  margin: 8px 8px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(86,159,9,.10);
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
}

.sb-about-traits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sb-about-traits-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 900;
}

.sb-about-traits-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--primary);
  color: var(--white);
}

.sb-about-cta-section {
  padding-top: 0;
}

.sb-about-cta-card {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--dark), var(--primary-dark) 55%, var(--primary));
  color: var(--white);
  box-shadow: var(--shadow);
}

.sb-about-cta-card h2,
.sb-about-cta-card p {
  color: var(--white);
}

.sb-about-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.sb-about-cta-actions .btn-primary {
  background: #25d366 !important;
}

@media (max-width: 1024px) {
  .sb-about-hero-grid,
  .sb-about-two-col,
  .sb-about-origin-grid,
  .sb-about-customer-card,
  .sb-about-team-grid,
  .sb-about-cta-card {
    grid-template-columns: 1fr;
  }

  .sb-about-vmv-grid {
    grid-template-columns: 1fr;
  }

  .sb-about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .sb-about-breadcrumbs {
    padding: 14px 0;
    font-size: 13px;
  }

  .sb-about-hero-grid {
    gap: 32px;
    padding: 38px 0 62px;
  }

  .sb-about-hero-content h1 {
    letter-spacing: -1.4px;
  }

  .sb-about-visual-card,
  .sb-about-image-box {
    border-radius: 28px;
  }

  .sb-about-image-placeholder,
  .sb-about-image-placeholder.small {
    min-height: 280px;
    border-radius: 22px;
  }

  .sb-about-card,
  .sb-about-highlight-panel,
  .sb-about-dark-panel,
  .sb-about-customer-card,
  .sb-about-cta-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .sb-about-traits-grid {
    grid-template-columns: 1fr;
  }

  .sb-about-customer-list div {
    align-items: flex-start;
  }

  .sb-about-vmv-card {
    padding: 26px 22px;
  }

  .sb-about-vmv-card i {
    position: static;
    margin-bottom: 14px;
  }

  .sb-about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.blog-highlight-box {
    display: flex;
    gap: 14px;
    padding: 22px;
    border-radius: 20px;
    background: var(--light);
    border-left: 5px solid var(--primary);
    margin: 28px 0;
}
.premium-blog-header h1 { font-size:clamp(36px,5vw,50px); line-height:1.08; color:var(--dark); margin:0 0 22px; letter-spacing:-1.8px; }
.premium-blog-header h2 {color:var(--dark);} 
 .blog-toc-box h3 { margin:0 0 16px; color:var(--dark); }
 
 /* Contact Page CSS - Scoped to avoid clash with existing style.css */
.contact-page .contact-hero {
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 85% 20%, rgba(86,159,9,.20), transparent 34%),
    linear-gradient(180deg, #f8fffc 0%, #ffffff 100%);
}

.contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}

.contact-page .contact-hero-content h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2.2px;
  margin: 0 0 20px;
  color: var(--dark);
}

.contact-page .contact-hero-content p {
  max-width: 680px;
  font-size: 18px;
  color: var(--text);
  margin: 0;
}

.contact-page .contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-page .contact-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-page .contact-quick-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--dark), var(--primary));
}

.contact-page .quick-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 22px;
}

.contact-page .contact-quick-card h3 {
  font-size: 28px;
  color: var(--dark);
  margin: 0 0 14px;
}

.contact-page .contact-quick-card p {
  margin: 0 0 22px;
  color: var(--text);
}

.contact-page .quick-card-list {
  display: grid;
  gap: 12px;
}

.contact-page .quick-card-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: var(--dark);
}

.contact-page .quick-card-list i {
  color: var(--primary);
}

.contact-page .contact-main-section {
  background: var(--light);
}

.contact-page .contact-main-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-page .contact-info-panel,
.contact-page .contact-page-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 14px 42px rgba(15,23,42,.08);
}

.contact-page .contact-info-panel {
  padding: 38px;
}

.contact-page .contact-info-panel h2,
.contact-page .form-title h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 14px;
}

.contact-page .contact-intro {
  margin: 0 0 28px;
  color: var(--text);
}

.contact-page .contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-page .contact-info-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.contact-page .contact-info-box > i {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-size: 20px;
}

.contact-page .contact-info-box h3 {
  color: var(--dark);
  font-size: 18px;
  margin: 0 0 6px;
}

.contact-page .contact-info-box p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.contact-page .contact-info-box a {
  color: var(--dark);
  font-weight: 800;
}

.contact-page .contact-page-form {
  padding: 34px;
}

.contact-page .form-title {
  margin-bottom: 8px;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-page .contact-service-section {
  background: #fff;
}

.contact-page .contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-page .contact-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  transition: .25s ease;
}

.contact-page .contact-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-page .contact-service-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(86,159,9,.12);
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-page .contact-service-card h3 {
  color: var(--dark);
  margin: 0 0 10px;
}

.contact-page .contact-service-card p {
  margin: 0;
  color: var(--text);
}

.contact-page .contact-map-section {
  background: var(--light);
  padding: 0 0 82px;
}

.contact-page .contact-map-box {
  min-height: 260px;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(54,72,157,.92), rgba(69,129,4,.88)),
    #36489d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}

.contact-page .contact-map-box i {
  font-size: 44px;
  color: #bbf7d0;
  margin-bottom: 16px;
}

.contact-page .contact-map-box h3 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 10px;
}

.contact-page .contact-map-box p {
  max-width: 720px;
  margin: 0;
  color: #eef8d8;
}

@media (max-width: 980px) {
  .contact-page .contact-hero-grid,
  .contact-page .contact-main-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-page .contact-map-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero {
    padding: 52px 0 58px;
  }

  .contact-page .contact-hero-content h1 {
    letter-spacing: -1.4px;
  }

  .contact-page .contact-hero-actions,
  .contact-page .contact-hero-actions .btn {
    width: 100%;
  }

  .contact-page .contact-quick-card,
  .contact-page .contact-info-panel,
  .contact-page .contact-page-form,
  .contact-page .contact-map-box {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .contact-page .contact-info-box {
    align-items: flex-start;
    padding: 18px;
  }

  .contact-page .form-row,
  .contact-page .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-map-section {
    padding-bottom: 58px;
  }
}
.services-section .related-img img{height:auto;}
.services-section .related-img {
    height: 350px;
}
.footer ul {
    padding: 0;
    list-style: none;
}