/* ================= ABOUT US PAGE ================= */

/* hero */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== ABOUT BANNER ===== */


.banner-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ECA823;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: #ECA823;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .about-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {


  .about-content h1 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* GENERAL */
body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== ABOUT STORY ===== */

/* ===== ABOUT STORY ===== */

.about-story {
  padding: 80px 20px;
  background: #fff;
}

.story-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.story-text h3 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.story-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
}


@media (max-width: 768px) {

  .story-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .story-image {
    width: 100%;
  }

  .story-text h2 {
    font-size: 26px;
  }

  .story-text h3 {
    font-size: 18px;
  }

  .story-text p {
    font-size: 14px;
  }
}

/* ===== TEAM MEMBERS ===== */
.about-team {
  background: #faf8f8;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.team-img {
  width: 100%;
  height: auto;
  /* image safe */
  max-width: 1200px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 10px;
}

.team-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-team h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.team-member img:hover {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  color: #777;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* TEAM CARD */
.team-member {
  background: #fff;
  padding: 25px 15px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

  /* 👇 IMPORTANT */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGE CENTER */
.team-member img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  display: block;
}

/* NAME */
.team-member h3 {
  font-size: 15px;
  margin-bottom: 5px;
  text-align: center;
}

/* DESIGNATION */
.team-member p {
  font-size: 13px;
  color: #666;
  margin: 0;
  text-align: center;
}


/* Tablet */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile – 2 cards per row */
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-member {
    padding: 20px 10px;
  }

  .team-member img {
    width: 100px;
    height: 100px;
  }

  .team-member h3 {
    font-size: 14px;
  }

  .team-member p {
    font-size: 12px;
  }
}


/* ===== STATS SECTION ===== */
/* ===== STATS SECTION ===== */

.about-stats {
  padding: 80px 20px;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* CARD */
.stat {
  background: #0F172A;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/* NUMBER */
.stat h3 {
  font-size: 34px;
  color: #ECA823;
  margin-bottom: 10px;
}

/* TEXT */
.stat p {
  font-size: 15px;
  color: #555;
}

@media (max-width: 576px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat {
    padding: 20px 10px;
  }

  .stat h3 {
    font-size: 22px;
  }

  .stat p {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== CTA SECTION ===== */

.about-cta {
  background: linear-gradient(135deg, #ECA823, #ECA823);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 80px 20px;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 576px) {
  .team-member img {
    width: 150px;
    height: 150px;
  }
}




/* ================= ABOUT HERO FINAL CLEAN ================= */

.about-banner {
  width: 100%;
  height: 40vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-top: 70px;
  /* Same as Blog & Contact */
  padding: 0 20px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("image/1000_F_88489022_bbaCEY4zKLS4KkkESsZ5nhNatMoHsRcJ.jpg");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
}

.about-content h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.about-content p {
  font-size: 17px;
  opacity: 0.85;
  color: #fff;
}


/* Responsive */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
  }
}


.about-banner {
  margin-top: 90px;
  /* header ki actual height */
}