/* ABOUT HERO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 400; /* default regular weight */
  line-height: 1.6;
  color: #333;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  margin-top: 70px;
}

.section-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-inner {
  width: 85%;
  max-width: 1250px;
}

.about-hero {
  background: linear-gradient(to right, #1e3a8a, #3f7cff);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* WHO WE ARE */
.about-section {
  background: white;
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  height: 500px;
  border-radius: 12px;
  background: url("/images/projects/glass/glass5.jpg") center/cover no-repeat;
}

.about-text h2 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.about-text p {
  color: #606a78;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.feature-box {
  background: white;
  /* padding: 18px; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); */
  display: flex;
}

.feature-box .icon-holder {
  padding: 25px;
  height: 30px;
  width: 22px;
  border-radius: 7px;
  background: #bfdbfe;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-right: 30px;
}

.feature-box i {
  color: #1e3a8a;
  margin-bottom: 8px;
  font-size: 22px;
}

/* VALUES */
.values {
  background: #f9fafb;
  padding: 70px 0;
  text-align: center;
}

.values h2 {
  color: #1e3a8a;
}

.values-sub {
  color: #606a78;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 290px;
  justify-content: center;
}

/* reuse homepage icon style */
.value-card .icon-holder {
  /* padding: 15px 20px; */
  height: 55px;
  width: 55px;
  border-radius: 7px;
  background: linear-gradient(180deg, #1e3a8a, #3f7cff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.value-card .service-icon {
  font-size: 1.7em;
  color: white;
}

.value-card i {
  font-size: 2rem;
  color: #3f7cff;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* WHY US */
.why-us {
  background: white; /* single full background */
  padding: 70px 0;
  /* color: white; */
  padding-bottom: 90px;
  z-index: -1;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 15px;
  background: transparent;
  padding: 0;
}

.why-item i {
  border-radius: 15px;
  color: #3f7cff;
  font-size: 12px;
  border: 2px solid #3f7cff;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-item div {
  width: 90%;
}

.why-item h4 {
  color: #1e3a8a;
  font-weight: 550;
  margin-bottom: 10px;
}

.why-item p {
  opacity: 0.9;
  line-height: 25px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   TABLET
================================= */
@media (max-width: 900px) {
  .section-inner {
    width: 90%;
  }

  .about-image {
    height: 420px;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 600px) {
  body {
    margin-top: 70px;
  }

  .section-inner {
    width: 92%;
  }

  .about-hero {
    padding: 60px 15px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-image {
    height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-box {
    align-items: flex-start;
  }

  .feature-box .icon-holder {
    margin-right: 18px;
    padding: 20px;
  }

  .value-card {
    height: auto;
    padding: 25px 20px;
  }

  .why-item {
    gap: 12px;
  }
}

/* ===============================
   SMALL PHONES
================================= */
@media (max-width: 400px) {
  .about-hero h1 {
    font-size: 1.7rem;
  }

  .values h2,
  .why-us h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
