 :root{
    --brand-red: #ED3131;   /* from your image */
    --brand-white: #ffffff;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border-soft: rgba(17,24,39,0.10);
    --shadow-soft: 0 10px 30px rgba(17,24,39,0.08);
  }

  .about-redwhite{
    background: var(--brand-white);
  }

  .about-title .redsub{
    color:#ED3131; 
  }

  .about-badge{
    background: rgba(237,49,49,0.10);
    color: var(--brand-red);
    border: 1px solid rgba(237,49,49,0.25);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .terraheader{
    font-weight: bolder;
  }

  .about-title{
    color: var(--text-dark);
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
  }

  .about-subtitle{
    color: var(--text-muted);
    font-size: 16px;
    max-width: 100%;
  }

  .about-stats{
    display: grid;
    gap: 12px;
  }

  .about-stat{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    background: #fff;
  }

  .stat-icon{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--brand-red);
    color: #fff;
    font-size: 22px;
    flex: 0 0 44px;
  }

  .stat-label{
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
  }

  .stat-value{
    color: var(--text-dark);
    font-weight: 800;
    font-size: 16px;
  }

  .about-card{
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px 20px;
  }

  .about-card-head{
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .card-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(237,49,49,0.12);
    color: var(--brand-red);
    font-size: 24px;
    border: 1px solid rgba(237,49,49,0.25);
  }

  .about-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

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

  .about-list i{
    color: var(--brand-red);
    font-size: 20px;
    line-height: 1.2;
    margin-top: 1px;
  }

  .about-actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .about-btn-primary{
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
  }

  .about-btn-primary:hover{
    filter: brightness(0.95);
    color: #fff;
  }

  .about-btn-outline{
    background: transparent;
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
  }

  .about-btn-outline:hover{
    background: rgba(237,49,49,0.08);
    color: var(--brand-red);
  }

  .about-gallery{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .about-gallery-item{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    background: #f3f4f6;
    min-height: 180px;
  }

  .about-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
  }

  .about-gallery-overlay{
    position: absolute;
    inset: auto 14px 14px 14px;
    background: rgba(237,49,49,0.92);
    color: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: .2px;
  }

  .about-gallery-overlay i{
    font-size: 22px;
  }

  .about-note{
    color: var(--text-muted);
  }

  @media (max-width: 991px){
    .about-gallery{
      grid-template-columns: 1fr;
    }
    .about-gallery-item{
      min-height: 220px;
    }
  }

:root{
  --brand-red:#ED3131;
  --brand-dark:#111827;
  --muted:#6b7280;
  --soft-border:rgba(17,24,39,.10);
  --soft-shadow:0 12px 30px rgba(17,24,39,.08);
}

.text-brand{ color: var(--brand-red) !important; }

.service-quality-section{
  background:#fff;
}

.service-quality-image{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--soft-shadow);
  border:1px solid var(--soft-border);
}

.service-quality-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
}

.service-quality-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  background: rgba(237,49,49,.92);
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
}

.service-quality-badge i{ font-size:20px; }

.service-quality-title{
  font-weight:900;
  color:var(--brand-dark);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height:1.15;
}

.service-quality-text{
  color: var(--muted);
  font-size:16px;
}

.service-quality-feature{
  display:flex;
  gap:10px;
  padding:14px 14px;
  border:1px solid var(--soft-border);
  border-radius:14px;
  box-shadow: var(--soft-shadow);
  background:#fff;
  height:100%;
}

.service-quality-feature i{
  color: var(--brand-red);
  font-size:22px;
  margin-top:2px;
}

.service-quality-feature h6{
  font-weight:800;
  color:var(--brand-dark);
}

.service-quality-feature p{
  color:var(--muted);
  font-size:14px;
}

.btn-brand{
  background: var(--brand-red);
  border:1px solid var(--brand-red);
  color:#fff;
  font-weight:800;
  border-radius:12px;
}

.btn-brand:hover{
  filter: brightness(.95);
  color:#fff;
}

.btn-outline-brand{
  background: transparent;
  border:2px solid var(--brand-red);
  color: var(--brand-red);
  font-weight:800;
  border-radius:12px;
}

.btn-outline-brand:hover{
  background: rgba(237,49,49,.08);
  color: var(--brand-red);
}



/* =========================
   TESTIMONIALS (Terra Engineering)
   Primary: #ED3131
   ========================= */

:root{
  --brand-red:#ED3131;
  --brand-white:#ffffff;
  --text-dark:#111827;
  --text-muted:#6b7280;
  --border-soft: rgba(17,24,39,0.10);
  --shadow-soft: 0 12px 32px rgba(17,24,39,0.08);
}

.testimonials-section{
  background: var(--brand-white);
}

.testimonials-badge{
  background: rgba(237,49,49,0.10);
  color: var(--brand-red);
  border: 1px solid rgba(237,49,49,0.25);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.testimonials-title{
  color: var(--text-dark);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.testimonials-subtitle{
  color: var(--text-muted);
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background: var(--brand-red);
}

.testimonial-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(237,49,49,0.25);
  flex: 0 0 56px;
  background:#f3f4f6;
}

.testimonial-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.testimonial-meta h5{
  color: var(--text-dark);
  font-weight: 900;
}

.testimonial-role{
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
}

.testimonial-quote-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(237,49,49,0.12);
  border: 1px solid rgba(237,49,49,0.25);
  color: var(--brand-red);
  font-size: 28px;
  font-weight: 900;
}

.testimonial-text{
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.testimonial-footer{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-stars{
  color: var(--brand-red);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 900;
}

.testimonial-tag{
  background: rgba(17,24,39,0.05);
  border: 1px solid rgba(17,24,39,0.08);
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

/* Carousel indicators spacing */
.testimonials-indicators{
  position: static;
  margin-top: 18px;
}

.testimonials-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(237,49,49,0.30);
  border: 0;
  margin: 0 5px;
}

.testimonials-indicators .active{
  background: var(--brand-red);
}

/* CTA */
.testimonials-cta{
  border: 1px dashed rgba(237,49,49,0.35);
  border-radius: 18px;
  padding: 18px;
  background: rgba(237,49,49,0.05);
}

.testimonials-cta h5{
  font-weight: 900;
  color: var(--text-dark);
}

.testimonials-cta p{
  color: var(--text-muted);
  margin: 0;
}

.testimonials-btn-primary{
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  color:#fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
}

.testimonials-btn-primary:hover{
  filter: brightness(0.95);
  color:#fff;
}

.testimonials-btn-outline{
  background: transparent;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
}

.testimonials-btn-outline:hover{
  background: rgba(237,49,49,0.08);
  color: var(--brand-red);
}

/* Mobile tweaks */
@media (max-width: 575px){
  .testimonial-card{ padding: 18px; }
  .testimonial-footer{ flex-direction: column; align-items: flex-start; }
}

/* construction materials */

.product-card{
  display:block;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.product-thumb{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.product-card-title{
  padding:10px 12px;
  font-weight:600;
  text-align:center;
  color: #111827 !important;
}

.product-thumb-click{
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-thumb-click:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}