 /* ================= QUALITY HERO ================= */
.quality-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../images/quality-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.quality-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );
  z-index: 1;
}

/* Content */
.quality-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.quality-pill i {
  font-size: 15px;
}


/* Heading */
.quality-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.quality-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .quality-hero {
    min-height: 480px;
  }

  .quality-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .quality-hero {
    min-height: 440px;
  }

  .quality-hero h1 {
    font-size: 2rem;
  }

  .quality-hero p {
    font-size: 0.95rem;
  }
}

/* ================= SECTION HEAD ================= */
.section-head{
  max-width:760px;
  margin-bottom:42px;
}
.section-header h2{
  font-size:34px;
  font-weight:700;
  color:#0f2b46;
}

.section-header p{
  max-width:720px;
  margin:12px auto 0;
  color:#5b6b7a;
  font-size:16px;
}


/* ================= PREVENTIVE QUALITY ================= */
.quality-section{
  padding: 100px 0 60px 0;
  background:#faf9f6;
}

.section-header {
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7c8f;
}

.quality-frame{
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 30px;
    box-shadow: 0 12px 28px rgba(15, 43, 70, 0.08);
}

.quality-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:18px;
}

.quality-list li{
  display:flex;
  gap:14px;
  font-size:15.5px;
  line-height:1.65;
  color:#243645;
}

.quality-list i{
  font-size:18px;
  color:#2fb36a;
  margin-top:3px;
}


/* ================= PROCESS ================= */
.process-section{
  padding: 40px 0 100px 0;
  background:#faf8f4;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.process-card{
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 16px 36px rgba(0,0,0,0.07);
  transition:.3s ease;
}

.process-card:hover{
  /**transform:translateY(-8px);**/
}

.process-img{
  height:500px;
  overflow:hidden;
}

.process-img img{
  width:100%;
  height:100%;
  object-fit: contain;
  margin-top: 30px;
}

.process-body{
  padding:24px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.process-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(47,179,106,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2fb36a;
  font-size:20px;
}

.process-body h4{
  font-size:16px;
  font-weight:600;
  margin:0;
  color:#0f2b46;
  line-height:1.4;
  margin-top: 10px;
}

/* ================= CONCLUSION ================= */
.quality-conclusion{
  padding:90px 20px;
  background:#0f2b46;
  text-align:center;
}

.quality-conclusion p{
  max-width:900px;
  margin:auto;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,0.9);
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .process-grid{
    grid-template-columns:1fr;
  }
}