/* ==============================
   ABOUT PAGE (Scoped) - Premium UI
================================ */
:root{
  --navy:#0b134f;
  --navy2:#11104d;
  --accent:#ff4d3a;
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#526077;
  --muted:#6b7280;
  --stroke: rgba(11,19,79,.08);
  --radius:22px;
  --shadow: 0 18px 55px rgba(11, 19, 79, 0.12);
  --shadow2: 0 26px 70px rgba(11, 19, 79, 0.16);
  --max:1200px;
}

.about-page *{box-sizing:border-box}
.about-page{
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, Arial, sans-serif;
  line-height:1.7;
  overflow-x:hidden;
}
.about-page img{max-width:100%; display:block; height:auto}
.about-page a{text-decoration:none}
.about-page .center{text-align:center}
.about-page .container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Typography helpers */
.about-page .block-title{
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  color: var(--navy2);
  margin: 0 0 12px;
  position:relative;
}
.about-page .block-title::after{
  content:"";
  width:78px;
  height:4px;
  background: var(--accent);
  border-radius:999px;
  display:block;
  margin-top:10px;
}
.about-page .center.block-title::after,
.about-page .center .block-title::after{
  margin-left:auto;
  margin-right:auto;
}
.about-page .section-lead{
  font-size: 16.5px;
  color: var(--muted);
  max-width: 920px;
  margin: 0 auto;
}
.about-page .text-accent{color: var(--accent); font-weight:800}
.about-page .text-strong{color:#800000; font-weight:900}
.about-page .highlight-line{
  color:#800000;
  font-weight:900;
}

/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: min(92%, 900px);
}

.slide-content .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.arrow:hover {
  background: #ff3c2f;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider responsive */
@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .slide-content h1 { font-size: 28px; }
}


/* ==============================
   SECTION BASE
================================ */
.about-page .about-section,
.about-page .about-full-section,
.about-page .services-section,
.about-page .why-section{
  padding: 80px 0;
}

.about-page .about-section.alt{ background: #ffffff; }
.about-page .about-full-section.alt2{
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

/* ==============================
   ABOUT HEADING + MAIN IMAGE
================================ */
.about-page .section-title{
  margin:0 0 14px;
  font-size: clamp(28px, 3vw, 46px);
  line-height:1.15;
  color: var(--navy2);
  font-weight: 900;
}
.about-page .title-accent{ color: #ff0000; }
.about-page .title-main{ color: var(--navy2); }

.about-page .about-main-image{ margin-top: 34px; }
.about-page .about-main-image img{
  width:100%;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,19,79,.06);
}

/* ==============================
   WHO WE ARE (GRID)
================================ */
.about-page .about-grid{
  display:grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 46px;
  align-items:center;
}

.about-page .about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
}

.about-page .about-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
}

.about-page .about-card p{
  font-size: 16px;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.85;
}

/* ==============================
   DUAL BOX (Mission/Vision/Team)
================================ */
.about-page .stack{ display:flex; flex-direction:column; gap: 26px; }

.about-page .dual-box{
  display:grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 46px;
  align-items:center;
}

.about-page .dual-box.reverse{
  grid-template-columns: 1.12fr 1fr;
}
.about-page .dual-box.reverse .dual-media{ order:2; }
.about-page .dual-box.reverse .dual-card{ order:1; }

.about-page .dual-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
}

.about-page .dual-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
}

.about-page .dual-card p{
  margin:0 0 12px;
  font-size:16px;
  color: var(--text);
  line-height:1.85;
}

/* Expertise */
.about-page .expertise-box{
  background:#fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
}
.about-page .expertise-box p{
  margin:0;
  color: var(--text);
  font-size: 16px;
  line-height:1.9;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}

/* ==============================
   SERVICES
================================ */
.about-page .services-head{ margin-bottom: 22px; }
.about-page .services-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-page .service-card{
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-page .service-card img{
  width:100%;
  height: 170px;
  object-fit: cover;
}

.about-page .service-card figcaption{
  padding: 14px 14px 18px;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy2);
  text-align:center;
}

.about-page .service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow2);
}

/* ==============================
   WHY CHOOSE US
================================ */
.about-page .why-head{ margin-bottom: 18px; }

.about-page .why-row{
  margin-top: 24px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.about-page .why-box img{
  width:100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid rgba(11,19,79,.06);
  transition: transform .25s ease;
}
.about-page .why-box img:hover{ transform: translateY(-6px); }

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 1000px){
  .about-page .about-grid,
  .about-page .dual-box,
  .about-page .dual-box.reverse{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align:center;
  }

  .about-page .dual-box.reverse .dual-media,
  .about-page .dual-box.reverse .dual-card{
    order: unset;
  }

  .about-page .block-title::after{
    margin-left:auto;
    margin-right:auto;
  }

  .about-page .services-row{ grid-template-columns: repeat(2, 1fr); }
  .about-page .why-row{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .about-page .page-title-section{ padding: 95px 0 80px; }
  .about-page .about-section,
  .about-page .about-full-section,
  .about-page .services-section,
  .about-page .why-section{ padding: 60px 0; }

  .about-page .services-row{ grid-template-columns: 1fr; }
  .about-page .service-card img{ height: 160px; }

  .about-page .breadcrumb{ padding: 9px 12px; }
}
