/* -------------------------
       VARIABLES & RESET
       ------------------------- */
:root {
  --green: #3f7a3a;
  /* main green similar to screenshot */
  --accent: #4b8c3b;
  --muted: #7a7a7a;
  --bg: #f7f8f7;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
  --radius: 12px;
  --maxw: 1180px;
}





a {
  color: inherit;
  text-decoration: none
}

/* -------------------------
       CONTAINER
       ------------------------- */
.wrap {
  /* max-width: var(--maxw); */
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------
       TOP NAV / HEADER
       ------------------------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid #e9efe9;
  position: sticky;
  top: 0;
  z-index: 60;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 42px;
  display: block
}

.brand .title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.2px
}

nav.top-nav {
  display: flex;
  gap: 22px;
  align-items: center
}

nav.top-nav a {
  color: #444;
  font-weight: 600;
  font-size: 14px
}

.cert-icons {
  display: flex;
  gap: 10px;
  align-items: center
}

.cert-icons img {
  height: 28px;
  opacity: 0.95
}

/* -------------------------
       HERO
       ------------------------- */
.hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #222;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero::after {
  /* left translucent white panel like screenshot */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.60) 60%, rgba(255, 255, 255, 0.0) 100%);
  pointer-events: none;
}

/* hero content — left text block */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 48px 22px;
}

.hero-inner {
  max-width: 680px;
  margin-left: 8%;
}

.hero h1 {
  margin: 0 0 14px 0;
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: #16231b;
  line-height: 1.02;
  letter-spacing: -0.6px;
}

.hero p.lead {
  margin: 0 0 18px 0;
  color: #4b4b4b;
  font-size: 15px;
  max-width: 520px;
}

.hero .cert-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.cert-row img {
  height: 36px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* -------------------------
       SECTION: QUALITY INTRO
       ------------------------- */
.qa-intro {
  background: #fff;
  padding: 60px 74px;
  border-bottom: 1px solid #eceeea;
}

.qa-intro .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.qa-intro .left {
  flex: 1 1 500px;
}

.qa-intro .right {
  flex: 1 1 400px;
  text-align: center;
}

.qa-intro .right img {
  /* max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
  max-width: 100%;
  border-radius: 4px 69px;
  width: 450px;
  /* border-collapse: separate; */
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 2px dashed #4b8c3b;
}

.qa-intro .section-subtitle {
  color: #4b8c3b;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.qa-intro h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  margin: 6px 0 14px;
  font-size: 28px;
  line-height: 1.3;
}

.qa-intro p {
  color: #5b5b5b;
  margin: 0 0 16px;
  font-size: 16px;
  max-width: 600px;
}

.qa-intro .tagline {
  font-style: italic;
  color: #2f6b2f;
  font-weight: 500;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .qa-intro .inner {
    flex-direction: column;
    text-align: center;
  }

  .qa-intro .left,
  .qa-intro .right {
    flex: 1 1 100%;
  }

  .qa-intro p {
    max-width: 100%;
  }
}


/* -------------------------
       SECTION: QUALITY COMMITMENT (icon cards row)
       ------------------------- */
/* -------------------------
   SECTION: QUALITY COMMITMENT
------------------------- */
section.commitment {
  padding: 60px 65px;
  background: var(--bg);
}

section.commitment .section-head {
  text-align: center;
  margin-bottom: 30px;
}

section.commitment h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-size: 26px;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.commit-card {
  background: var(--card, #fff);
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid #e9efe9;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.commit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.commit-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(76, 139, 59, 0.12), rgba(76, 139, 59, 0.05));
  color: var(--green);
  font-size: 30px;
  width: 52px;
  height: 52px;
}

.commit-card h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1d2d24;
  line-height: 1.4;
}

.commit-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  section.commitment {
    padding: 50px 30px;
  }

  .commit-card {
    padding: 22px 18px;
  }
}

@media (max-width: 768px) {
  section.commitment {
    padding: 40px 20px;
  }

  .commit-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .commit-card {
    padding: 20px 16px;
    align-items: center;
    text-align: center;
  }

  .commit-card h4 {
    font-size: 16px;
  }

  .commit-card p {
    font-size: 14px;
    max-width: 95%;
    margin: 0 auto;
  }

  .commit-card .icon {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  section.commitment {
    padding: 30px 15px;
  }

  .commit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .commit-card {
    padding: 18px 14px;
    gap: 8px;
  }

  .commit-card h4 {
    font-size: 15px;
  }

  .commit-card p {
    font-size: 13px;
  }

  .commit-card .icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  section.commitment {
    padding: 40px 0;
  }

  .commit-card {
    align-items: center;
    text-align: center;
  }

  .commit-card p {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* -------------------------
   SECTION: ADVANCED TESTING (Enhanced Accordion)
------------------------- */
section.testing {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #eceeea;
  border-bottom: 1px solid #eceeea;
}

section.testing .section-head {
  text-align: center;
  margin-bottom: 36px;
}

section.testing h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  font-size: 26px;
  margin: 0;
}

/* Accordion Styling */
.accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Vertical Accent Line */
.accordion-container::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #4b8c3b, rgba(75, 140, 59, 0.2));
  border-radius: 6px;
}

/* Accordion Item */
.accordion-item {
  background: linear-gradient(180deg, #ffffff, #f9fcf8);
  border: 1px solid #e5ebe4;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding-left: 25px;
}

.accordion-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Header */
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #213226;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.accordion-header .title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-header .material-icons {
  color: var(--green);
  font-size: 22px;
}

.accordion-header .symbol {
  font-size: 24px;
  color: var(--green);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-item.active .symbol {
  transform: rotate(45deg);
  /* turns + into × */
}

/* Accordion Content */
.accordion-content {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #edf2ed;
}

.accordion-content ul {
  margin: 12px 0 0;
  padding-left: 16px;
}

.accordion-content li {
  margin-bottom: 6px;
}

.accordion-item.active .accordion-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-container::before {
    left: 10px;
  }

  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .accordion-header .symbol {
    align-self: flex-end;
  }
}

.technology-modern {
  position: relative;
  background: #f9fdf9;
  padding: 60px 65px;
  overflow: hidden;
}

.technology-modern::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #fbfaf4, #fbfaf4);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.tech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.tech-text {
  flex: 1;
  max-width: 55%;
}

.tech-image {
  flex: 1;
  max-width: 40%;
  text-align: center;
  z-index: 2;
}

.tech-image img {
  width: 100%;
  /* max-width: 480px;
  border-radius: 50%; */

  position: relative;
  z-index: 2;
}

/* 
    .tech-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .tech-text {
      flex: 1;
      max-width: 55%;
    } */

.tech-text h2 {
  font-family: 'Playfair Display', serif;
  color: #4b8c3b;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.section-heads {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.section-heads h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #0b5e2e;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-heads h3::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #4b8c3b;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.tech-feature {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5f1e2;
}

.tech-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(75, 140, 59, 0.15);
  border-color: #4b8c3b;
}

.tech-feature span {
  display: block;
  font-size: 40px;
  color: #4b8c3b;
  margin-bottom: 10px;
}

.tech-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.tech-image {
  flex: 1;
  max-width: 40%;
  text-align: center;
}

.tech-image img {
  width: 100%;
  /* max-width: 480px;
  border-radius: 50%; */
 

}

/* Responsive */
@media (max-width: 992px) {
  .tech-container {
    flex-direction: column;
  }

  .tech-text,
  .tech-image {
    max-width: 100%;
  }

  .tech-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-features {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary: #0b5e2e;
  --secondary: #4b8c3b;
  --bg: #f7f9f8;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.quality-workflow {
  padding: 60px 5%;
  background: var(--bg);
}

.quality-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left-box {
  flex: 1 1 380px;
}

.left-box h2 {
  color: #4b8c3b;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.promise-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-text {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.quote {
  font-size: 40px;
  color: var(--primary);
}

.text h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.seal img {
  width: 90px;
  height: 90px;
}

/* RIGHT SIDE */
.right-box {
  flex: 1 1 550px;
  text-align: center;
}

.right-box h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 40px;
}

/* TIMELINE */
.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.line {
  flex: 1;
  height: 3px;
  background: var(--secondary);
  margin: 0 5px;
}

.step {
  text-align: center;
  flex: 1;
}

.circle {
  position: relative;
  width: 70px;
  height: 70px;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: bold;
  background: #fff;
}

.circle .material-icons {
  font-size: 28px;
  color: var(--secondary);
}

.circle p {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.step h4 {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .quality-container {
    flex-direction: column;
    align-items: center;
  }

  .promise-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline {
    flex-direction: column;
  }

  .line {
    width: 3px;
    height: 40px;
  }

  .circle {
    margin-bottom: 10px;
  }
}

/* -------------------------
       CERTIFICATES
       ------------------------- */
.certs {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid #eceeea
}

.certs .row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #dfeee0;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.cert-btn .material-icons {
  font-size: 18px;
  color: var(--green)
}


/* -------------------------
       FOOTER / CTA (right bar at bottom in screenshot)
       ------------------------- */
.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  border-top: 1px solid #e9efe9;
  border-radius: 10px;
  margin-top: 18px
}

.bottom-cta .left {
  color: #4b4b4b
}

.btn-green {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer
}

/* -------------------------
       RESPONSIVE
       ------------------------- */
@media (max-width:1000px) {
  .commit-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero h1 {
    font-size: 36px
  }

  .hero {
    height: 520px
  }
}

@media (max-width:760px) {
  .header-inner {
    padding: 12px 0
  }

  nav.top-nav {
    display: none
  }

  .hero {
    height: 520px
  }

  .hero::after {
    width: 100%
  }

  .hero-inner {
    margin-left: 6%
  }

  .hero h1 {
    font-size: 28px
  }

  .hero p.lead {
    font-size: 14px
  }

  .qa-intro .inner {
    flex-direction: column
  }

  .commit-grid {
    grid-template-columns: 1fr
  }

  .testing-grid {
    grid-template-columns: 1fr
  }

  .promise-instruments {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .instruments {
    flex-direction: column
  }

  .carousel img {
    height: 240px
  }

  .thumbs img {
    height: 56px;
    width: 88px
  }
}

/* small helpers */
.spacer {
  height: 18px
}

.section-head {
  margin: 28px 0 8px 0;
  text-align: center
}

.muted {
  color: var(--muted);
  font-size: 13px
}

.our-promise-section {
  background: #f9fafb;
  padding: 70px 60px;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.promise-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.left-section {
  flex: 1.2;
}

.right-section {
  flex: 0.8;
  background: #ffffff;
  border-radius: 20px;
  margin-top: 100px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.quality-control-section {
  background: #f7f8f6;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 1.6rem;
  color: #1d3a2d;
  font-weight: 600;
  margin-bottom: 40px;
}

.quality-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 30px;
}

/* LEFT SIDE */
.left-side {
  flex: 1;
  text-align: left;
}

.left-side h3 {
  color: #2d572c;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.cert-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-item i {
  color: #2d572c;
  background: #eaf3ea;
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
}

.cert-item p {
  color: #333;
  font-weight: 500;
}

/* CENTER */
.center-side {
  flex: 2;
  text-align: center;
}

.seal-wrapper {
  margin-bottom: 20px;
}

.seal-image {
  width: 100px;
}

/* GENERAL */
body {
  font-family: "Poppins", sans-serif;
  background: #f6f7f5;
  margin: 0;
  padding: 0;
}

.quality-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}



.quality-section {
  width: 95%;
  max-width: 1100px;
}

.quality-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 50px;
}

.section-title {
  color: #0b3b2c;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
}

.quality-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Box */
.left-box h4 {
  color: #0b3b2c;
  font-weight: 500;
  margin-bottom: 15px;
}

.certificates {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 56px;
}

.cert {
  text-align: center;
  color: #0b3b2c;
}

.cert i {
  font-size: 28px;
  color: #0b3b2c;
  margin-bottom: 5px;
}

/* Center Badge */
.center-badge .badge {
  width: 120px;
  height: 120px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Seal_icon.svg/768px-Seal_icon.svg.png') center/contain no-repeat;
}

/* Right Content */
.right-content {
  max-width: 400px;
}

.right-content blockquote p {
  font-weight: 600;
  font-size: 20px;
  color: #0b3b2c;
  margin-bottom: 10px;
}

.right-content .desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0b3b2c;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: #f8f4e6;
  border: 1px solid #ccc;
  color: #0b3b2c;
}

small {
  color: #666;
  font-size: 12px;
}

/* Gallery */
.gallery-section {
  background: #fff;
  margin-top: 25px;
  border-radius: 16px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-section h3 {
  color: #0b3b2c;
  font-weight: 500;
  margin-bottom: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.dot.active {
  background: #0b3b2c;
}

/* Responsive */
@media (max-width: 768px) {
  .quality-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .center-badge .badge {
    margin: 20px 0;
  }
}

.containerss {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  /* background-color: #fff; */
  border-radius: 8px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

header h1 {
  font-size: 2.5em;
  color: #4b8c3b;
  /* Dark green */
  margin-bottom: 30px;
  text-align: center;
}

.content-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
}

.left-columns,
.middle-columns,
.right-columns {
  flex: 1 !important;
  min-width: 280px !important;
  /* Minimum width for columns */
}

.left-columns {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.certificates h3 {
  font-size: 1.4em;
  color: #4b8c3b;
  margin-bottom: 20px;
}

.certificate-items {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-left: 10px;

}

.certificate-item {
  text-align: center;
  color: #6a8c7e;
}

.certificate-item i {
  font-size: 3em;
  color: #6a8c7e;
  /* Medium green */
  margin-bottom: 10px;
}

.certificate-item p {
  font-size: 0.9em;
  color: #555;
}

.middle-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-left: 85px;
  /* If your badge is circular */
  border: 2px solid #6a8c7e;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

.certificate-items {
  display: flex;
  flex-direction: row;
}

.right-column {
  text-align: left;
}

.quote {
  font-size: 1.4em;
  font-style: italic;
  color: #4b8c3b;
  margin-bottom: 20px;
  position: relative;
  /* padding-left: 20px; */
}

.quote::before {
  content: '“';
  font-size: 3em;
  position: absolute;
  left: -10px;
  top: -20px;
  color: #d1e2da;
  /* Light green */
  opacity: 0.6;
}

.quote::after {
  content: '”';
  font-size: 3em;
  position: absolute;
  right: 0;
  bottom: -30px;
  color: #d1e2da;
  /* Light green */
  opacity: 0.6;
}

.description {
  font-size: 1.1em;
  color: #555;
}

.call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.primary-btn {
  background-color: #4b8c3b;
  /* Dark green */
  color: #fff;
}

.primary-btn:hover {
  background-color: #1e3a2c;
  /* Even darker green */
}

.secondary-btn {
  background-color: #f0e6d5;
  /* Light beige/yellow */
  color: #4b8c3b;
  border: 1px solid #4b8c3b;
}

.secondary-btn:hover {
  background-color: #e0d0c0;
}

.coa-note {
  font-size: 0.8em;
  color: #777;
  margin-left: 10px;
}

/* Image Slider */
.image-slider-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.image-slider-section h2 {
  font-size: 1.8em;
  color: #4b8c3b;
  margin-bottom: 25px;
}

.slider-containerss {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); */
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-images img {
  width: 100%;
  flex-shrink: 0;
  /* Prevents images from shrinking */
  display: block;
  max-height: 600px;
  /* Maintain aspect ratio */
}

.slider-dots {
  text-align: center;
  padding: 15px 0;
  /* background-color: #f0f0f0; */
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #4b8c3b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .content-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-column,
  .middle-column,
  .right-column {
    min-width: unset;
    width: 100%;
  }

  .quote::before,
  .quote::after {
    font-size: 2.5em;
    top: -10px;
    right: auto;
    left: -5px;
    /* Adjust quote marks for centering */
  }

  .call-to-action {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  .quote {
    font-size: 1.8em;
  }

  .description {
    font-size: 1em;
  }

  .certificate-items {
    flex-direction: column;
    gap: 20px;
  }

  .badge img {
    width: 120px;
    height: 120px;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .containerss {
    margin: 10px auto;
    padding: 15px;
  }

  header h1 {
    font-size: 1.8em;
  }

  .quote {
    font-size: 1.6em;
    padding-left: 15px;
  }

  .quote::before {
    font-size: 2em;
    top: -5px;
  }

  .certificate-item i {
    font-size: 2.5em;
  }
}