/* =========================
   ABOUT US (INNER PAGE)
   ========================= */

body{
  background: #f4f7fc;
}

/* Banner */
.inner-banner{
  height: 22vh;
  min-height: 180px;
  display: grid;
  place-items: center;
  background: #073b63;
  position: relative;
}

.inner-banner h1{
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

/* Wrapper */
.about-wrap{
  max-width: 1100px;
  margin-top: 34px;
  margin-bottom: 60px !important;
}

/* Card for ALL sections (including image+text section) */
.about-card{
  background: #ffffff;
  border: 1px solid rgba(7,59,99,0.08);
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: 0 14px 38px rgba(2,6,23,0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

/* subtle accent line (not too loud) */
.about-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:#a91a6a;
  opacity:.9;
}

/* Titles */
.about-title{
  font-size: 1.85rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #0b1b33;
  letter-spacing: .2px;
}

.about-title::after{
  content:"";
  display:block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: #a91a6a;
  margin-top: 10px;
}

/* Text */
.about-card p{
  font-size: 1.02rem;
  line-height: 1.85;
  color: #334155;
  margin: 12px 0;
}

.about-card strong{
  color:#073b63;
  font-weight: 900;
}

/* List */
.about-list{
  margin: 14px 0 10px 0;
  padding: 0;
  list-style: none;
}

.about-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #334155;
  font-size: 1rem;
}

.about-list li::before{
  content:"";
  position:absolute;
  left: 8px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a91a6a;
  box-shadow: 0 6px 16px rgba(169,26,106,0.22);
}

/* Image box (ke image card ke andar classy lage) */
.about-figure{
  background: #f7f9ff;
  border: 1px solid rgba(7,59,99,0.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.about-img{
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display:block;
}

/* Mobile */
@media (max-width: 600px){
  .inner-banner{
    height: 24vh;
    min-height: 160px;
  }

  .about-wrap{
    margin-top: 22px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-card{
    padding: 18px 16px;
    border-radius: 16px;
  }

  .about-title{
    font-size: 1.25rem;
  }

  .about-card p,
  .about-list li{
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .about-figure{
    padding: 10px;
    border-radius: 16px;
  }

  .about-img{
    border-radius: 12px;
  }
}
