:root{
  --max:1100px;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(0,0,0,.12);
  --teal:#0aa6a6;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.75;
}

img{ max-width:100%; display:block; }

/* ==============================
   ABOUT HERO (AFTER NAVBAR)
============================== */
.about-hero{
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

/* ===== Slider Images ===== */
.about-hero-slider{
  position: absolute;
  inset: 0;
}

.about-hero-slider img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.about-hero-slider img.active{
  opacity: 1;
}

/* ===== Dark Overlay ===== */
.about-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* ===== Content ===== */
.about-hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-title{
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin: 0;
}

.about-hero-sub{
  color: #e6f0ff;
  font-size: 18px;
  margin-top: 10px;
}


/* =========================
   MAIN
========================= */
.about-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:40px 16px 80px;
}

/* =========================
   ABOUT GRID
========================= */
.about-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap:34px;
  align-items:start;
}

.section-title{
  margin:0 0 14px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.5px;
}

.about-left p{
  margin:0 0 14px;
  color:#1f2937;
}

.lead{
  margin-top:14px;
  font-weight:800;
}

.note{
  margin-top:10px;
  color:var(--muted);
  font-weight:700;
}

/* List */
.impact-list{
  margin:14px 0 14px 18px;
  padding:0;
}
.impact-list li{
  margin:6px 0;
  color:#1f2937;
}

/* Right side */
.visual-card{
  margin:0;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  overflow:hidden;
}
.visual-card img{
  width:100%;
  height:auto;
}

.awards{
  margin-top:18px;
  padding:16px 16px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.awards-title{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
  color:var(--teal);
}
.awards-list{
  margin:0;
  padding-left:18px;
}
.awards-list li{
  margin:6px 0;
  color:#1f2937;
}

/* =========================
   CEO SECTION
========================= */
.ceo-layout{
  padding: 70px 16px;
  background: #fff;
}

.ceo-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px; /* ✅ yehi gap hai jo chipkna rokta hai */
  align-items: start;
}

/* CEO Image */
.ceo-image{
  position: sticky; /* optional: scroll pe thora stable lagta */
  top: 110px;
}

.ceo-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Content */
.ceo-content{
  min-width: 0; /* ✅ long text overflow issue fix */
}

.ceo-heading{
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
  color: #0b2a4a;
  letter-spacing: .2px;
}

.ceo-text p{
  margin: 0 0 14px;
  color: #34495e;
  line-height: 1.8;
  font-size: 16px;
}

.ceo-text em{
  font-style: italic;
}

.ceo-sign{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e7eef6;
  color: #0b2a4a;
}

/* ✅ Responsive */
@media (max-width: 900px){
  .ceo-wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ceo-image{
    position: relative;
    top: 0;
  }
  .ceo-heading{
    font-size: 28px;
  }
}


/* =========================
   MEDIA QUERIES (LAST)
========================= */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .section-title{ font-size:28px; }

  .ceo-layout{
    grid-template-columns:1fr;
    grid-template-areas:
      "image"
      "heading"
      "text";
    column-gap:0;
    row-gap:14px;
  }

  .ceo-heading{
    text-align:center;
    font-size:34px;
  }

  .ceo-image img{
    margin:0 auto;
    max-width:420px;
  }
}

@media (max-width: 600px){
  .about-hero{
    height:60vh;
    min-height:360px;
  }
}

@media (max-width: 520px){
  .ceo-heading{ font-size:30px; }
}

/*Footer*/

/* ==============================
   CHEMTROMECH FOOTER (MATCH SCREENSHOT)
============================== */
.ct-footer{
  background: radial-gradient(1200px 520px at 25% 10%, rgba(32,90,165,0.35), transparent 55%),
              radial-gradient(900px 420px at 85% 20%, rgba(0,190,180,0.18), transparent 55%),
              linear-gradient(180deg, #071f3e 0%, #041a2f 55%, #031626 100%);
  color: #eaf3ff;
  padding: 44px 0 26px;
}

.ct-footer__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* TOP CARDS */
.ct-footer__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ct-foot-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.ct-foot-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.ct-foot-card__text{
  margin: 0;
  color: rgba(234,243,255,0.88);
  line-height: 1.7;
  font-size: 14.5px;
}

.ct-foot-card__links{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ct-foot-link{
  color: rgba(234,243,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.ct-foot-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* MID BAR */
.ct-footer__bar{
  margin-top: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
  backdrop-filter: blur(6px);
}

.ct-footer__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(234,243,255,0.75);
  margin-bottom: 6px;
}

.ct-footer__value{
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.ct-footer__value:hover{
  text-decoration: underline;
}

.ct-footer__bar-col--center{
  text-align: center;
}

.ct-footer__phones{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-footer__dot{
  opacity: 0.8;
}

/* DIVIDER */
.ct-footer__divider{
  margin: 18px 0 14px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

/* BOTTOM */
.ct-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-footer__social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-social-btn{
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.ct-social-btn:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
}

.ct-footer__copy{
  font-size: 13px;
  color: rgba(234,243,255,0.80);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .ct-footer__cards{
    grid-template-columns: 1fr;
  }
  .ct-footer__bar{
    grid-template-columns: 1fr;
  }
  .ct-footer__bar-col--center{
    text-align: left;
  }
  .ct-footer__phones{
    justify-content: flex-start;
  }
}




/* ===== Dono sections ke darmiyan gap ===== */
.about-grid + .about-grid{
  margin-top: 60px;   /* 👈 yahan gap control hota hai */
}


