/* ===== HERO SCREENSHOT STYLE ===== */
.hero-screenshot{
  position: relative;
  width: 100%;
  height: 560px;            /* screenshot jesi height */
  background-image: url("assets/certificatebanner.png"); /* aap ki image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay like screenshot */
.hero-screenshot__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

/* Center content */
.hero-screenshot__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;      /* vertically center */
  justify-content: center;  /* horizontally center */
  text-align: center;
  padding: 0 20px;
}

.hero-screenshot__content h1{
  margin: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .hero-screenshot{ height: 460px; }
  .hero-screenshot__content h1{ font-size: 40px; }
}

@media (max-width: 576px){
  .hero-screenshot{ height: 380px; }
  .hero-screenshot__content h1{
    font-size: 28px;
    line-height: 1.22;
  }
}


/* ===== CERT INTRO TEXT SECTION ===== */
.cert-intro{
  padding: 26px 20px;   /* screenshot jesi spacing */
  background: #ffffff;
}

.cert-intro__wrap{
  max-width: 1020px;    /* text ko limited width (nice reading) */
  margin: 0 auto;       /* center container */
}

.cert-intro__wrap p{
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.75;    /* screenshot jesi readability */
  font-weight: 500;
}

/* paragraph gap */
.cert-intro__wrap p + p{
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 576px){
  .cert-intro{
    padding: 18px 16px;
  }
  .cert-intro__wrap p{
    font-size: 15px;
    line-height: 1.7;
  }
}
/*certificate Table*/

/* ===== CERT TABLE SECTION ===== */
.cert-table{
  background:#ffffff;
  padding: 40px 20px;
}

.cert-table__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* each row looks like table row */
.cert-row{
  display: grid;
  grid-template-columns: 1fr 260px; /* left text, right logo */
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
}

/* left */
.cert-info h3{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.cert-info p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
}

.cert-info ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
  font-size: 15.5px;
}

.cert-info ul li{
  margin: 6px 0;
}

.cert-note{
  margin-top: 10px !important;
  font-weight: 600;
  color: #111827;
}

/* right logo box */
.cert-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-left: 1px solid #e5e7eb;
}

.cert-logo img{
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  filter: none;
}

/* Hover (nice) */
.cert-row:hover{
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: #dbe2ea;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .cert-row{
    grid-template-columns: 1fr 220px;
  }
  .cert-logo img{
    max-height: 110px;
  }
}

@media (max-width: 768px){
  .cert-row{
    grid-template-columns: 1fr; /* stack */
  }
  .cert-logo{
    border-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 18px;
  }
  .cert-logo img{
    max-height: 100px;
  }
}

@media (max-width: 576px){
  .cert-table{
    padding: 28px 14px;
  }
  .cert-row{
    padding: 18px;
    border-radius: 12px;
  }
  .cert-info h3{
    font-size: 18px;
  }
  .cert-info p,
  .cert-info ul{
    font-size: 15px;
  }
}


/*Award*/

/* ===== AWARDS & RECOGNITIONS ===== */
.awards-section{
  padding: 48px 20px;
  background: none; /* no background */
}

.awards-wrap{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.awards-wrap h2{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.5px;
}

.awards-wrap p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Responsive */
@media (max-width: 768px){
  .awards-wrap h2{
    font-size: 26px;
  }
}

@media (max-width: 576px){
  .awards-section{
    padding: 36px 16px;
  }
  .awards-wrap h2{
    font-size: 24px;
  }
  .awards-wrap p{
    font-size: 15px;
  }
}

.services-section{
  padding: 40px 20px;
}

.services-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD — SAME AS SCREENSHOT */
.service-card{
  background: #f5f9ff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 30px 28px 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Title */
.service-card h3{
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

/* Text */
.service-card p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #334155;
  font-weight: 500;
  max-width: 95%;
}

/* Hover (same feel, no distortion) */
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px){
  .services-wrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ===== WHAT THIS MEANS SECTION ===== */
.clients-meaning{
  padding: 34px 20px;
  background: none;
}

.clients-meaning__wrap{
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.clients-meaning__wrap h2{
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
}

/* Subtitle */
.clients-meaning__lead{
  margin: 0 0 14px;
  font-size: 15.5px;
  font-weight: 600;
  color: #111827;
}

/* Bullets */
.clients-meaning__list{
  margin: 0 0 22px;
  padding-left: 22px;
}

.clients-meaning__list li{
  margin: 10px 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #111827;
  font-weight: 600;
}

/* Closing line */
.clients-meaning__note{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #111827;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 576px){
  .clients-meaning{
    padding: 26px 14px;
  }

  .clients-meaning__wrap h2{
    font-size: 26px;
  }

  .clients-meaning__lead,
  .clients-meaning__list li,
  .clients-meaning__note{
    font-size: 15px;
  }
}


/* ===== REQUEST DOCUMENTATION ===== */
.request-docs{
  padding: 34px 20px;
  background: none;
}

.request-docs__wrap{
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.request-docs__wrap h2{
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
}

/* First paragraph */
.request-docs__lead{
  margin: 0 0 18px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.7;
  color: #111827;
}

/* CTA row */
.request-docs__cta{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.request-docs__cta p{
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.7;
  color: #111827;
}

/* Button */
.request-docs__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.request-docs__btn:hover{
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37,99,235,0.35);
}

/* Responsive */
@media (max-width: 576px){
  .request-docs{
    padding: 26px 14px;
  }

  .request-docs__wrap h2{
    font-size: 26px;
  }

  .request-docs__lead,
  .request-docs__cta p{
    font-size: 15px;
  }

  .request-docs__cta{
    gap: 14px;
  }
}


/*Footer*/

/* =======================================================
   CHEMTROMECH FOOTER – COMPLETE STYLES
======================================================= */

/* Main Footer Background */
.cm-footer{
  background:
    radial-gradient(1200px 500px at 30% 0%, #0f3a5a 0%, rgba(15,58,90,0) 60%),
    radial-gradient(1000px 500px at 80% 20%, #123f66 0%, rgba(18,63,102,0) 55%),
    linear-gradient(180deg, #08263d 0%, #061f33 100%);
  color: #eaf2ff;
  padding: 34px 20px 18px;
}

.cm-footer__wrap{
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== TOP OFFICE CARDS ===================== */

.cm-footer__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.cm-footer__card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  backdrop-filter: blur(6px);
}

.cm-footer__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.cm-footer__text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(234,242,255,0.92);
  font-weight: 600;
}

/* Phone links in cards */
.cm-footer__links{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.cm-footer__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.cm-footer__icon{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.cm-footer__link:hover{
  text-decoration: underline;
}

/* ===================== MIDDLE BAR ===================== */

.cm-footer__bar{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;

  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Important: stack label above numbers */
.cm-footer__barItem{
  display: flex;
  flex-direction: column;   /* LABEL UP – VALUE DOWN */
  gap: 6px;
}

.cm-footer__barItem--right{
  align-items: flex-end;
  text-align: right;
}

.cm-footer__barLabel{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: rgba(234,242,255,0.75);
}

.cm-footer__barValue{
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
}

.cm-footer__barValueRow{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cm-footer__dot{
  opacity: 0.8;
  font-weight: 900;
}

/* ===================== BOTTOM ROW ===================== */

.cm-footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Social buttons */
.cm-footer__social{
  display: flex;
  gap: 12px;
}

.cm-footer__socialBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;

  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);

  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;

  transition: transform .2s ease, background .2s ease;
}

.cm-footer__socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

/* Copyright */
.cm-footer__copy{
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(234,242,255,0.85);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px){

  .cm-footer__grid{
    grid-template-columns: 1fr;
  }

  .cm-footer__bar{
    grid-template-columns: 1fr;
  }

  .cm-footer__barItem--right{
    align-items: flex-start;
    text-align: left;
  }

  .cm-footer__barValue{
    font-size: 16.5px;
  }

  .cm-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
