/* ===============================
   ASTI ABOUT PAGE (MATCH DESIGN)
================================ */

/* HERO */
.asti-about-hero {
  padding: 24px;
}

.asti-about-hero-wrap {
  max-width: 1060px;
  margin: auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 380px;
}

.asti-about-hero-bg {
  position: absolute;
  inset: 0;
}

.asti-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asti-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9,23,41,0.95) 0%,
    rgba(9,23,41,0.75) 40%,
    rgba(9,23,41,0.2) 70%,
    rgba(9,23,41,0) 100%
  );
}

.asti-about-hero-text {
  position: relative;
  z-index: 2;
  padding: 100px 50px 60px;
  max-width: 520px;
}

.asti-about-hero-text h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}


/* ABOUT SECTION */
.asti-about-section {
  padding: 60px 24px;
}

.asti-about-wrap {
  max-width: 1060px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Images */
.asti-about-images {
  display: flex;
  gap: 16px;
}

.asti-about-img-box {
  width: 180px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.asti-about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.asti-about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0C1E3C;
}

.asti-about-text p {
  font-size: 15px;
  color: #4A5068;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* List */
.asti-about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  margin-bottom:20px;
}

.asti-about-list li {
  font-size: 14px;
  font-weight: 700;
  color: #1A1D26;
  padding-left: 32px;
  position: relative;
}

.asti-about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #0C1E3C;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* MISSION */
.asti-about-mission {
  padding: 40px 24px 80px;
}

.asti-about-mission-wrap {
  max-width: 1060px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.asti-about-box {
  /*background: linear-gradient(145deg, #4C81C2, #2E517A);*/
  background: #042C68;
  color: #FFF; /* use solid color */
  padding: 30px;
  border-radius: 14px;
}

.asti-about-box h2 {
  margin-bottom: 10px;
}

.asti-about-box p {
  font-size: 15px;
  line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .asti-about-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .asti-about-images {
    justify-content: center;
  }

  .asti-about-mission-wrap {
    grid-template-columns: 1fr;
  }

  .asti-about-hero-text {
    padding: 80px 30px;
  }

  .asti-about-hero-text h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .asti-about-img-box {
    width: 80%;
    aspect-ratio: 11/9;
    height: auto;
  }

  .asti-about-images {
    flex-direction: column;
    align-items: center;
  }

  .asti-about-hero-text h1 {
    font-size: 24px;
  }
}

/* =========================
   COMMON BANNER (USED IN ALL PAGES)
========================= */
.asti-client-banner {
  background: url("https://astigujarat.com/wp-content/themes/astiindiaprivatelimited/assets/images/banner/bnr1.jpg") no-repeat center center/cover;
  height: 320px;
  position: relative;
  width: 100%;
}

.asti-client-banner-overlay {
  background: rgba(12, 30, 60, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.asti-client-banner-content {
  max-width: 1060px;
  margin: auto;
  padding: 0 20px;
  color: #fff;
}

.asti-client-banner-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.asti-client-banner-content p {
  font-size: 16px;
  opacity: 0.9;
}
