/* HERO */
.about-hero {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #0f3d2e, #1f7a5a);
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.about-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

/* WHO WE ARE */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2rem;
  align-items: center;
}

/* .image-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
} */
.image-wrap {
  max-width: 560px;   /* ⬅️ increased from smaller size */
  margin: auto;
}

.image-wrap img {
  width: 100%;
  height: 380px;      /* ⬅️ slightly bigger */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: none;   /* ❌ remove shadow */
}

.section-tag {
  color: #1f7a5a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.who-we-are h2 {
  font-size: 2.2rem;
  margin: 1rem 0;
  color: #0f3d2e;
}

.who-we-are p {
  color: #555;
  line-height: 1.7;
}

/* PROCESS */
/* .our-process {
  background: #f6fff9;
  padding: 5rem 2rem;
  text-align: center;
} */

.timeline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  background: #fff;
  padding: 1.2rem 1.8rem;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 500;
}

/* VISION & MISSION */
.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 5rem 2rem;
}

.card {
  background: linear-gradient(135deg, #ffffff, #f6fff9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card h3 {
  color: #1f7a5a;
  margin-bottom: 1rem;
}

/* WHY CHOOSE */
.why-choose {
  padding: 5rem 2rem;
  text-align: center;
}

.icon-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.icon-item {
  background: linear-gradient(135deg, #1f7a5a, #0f3d2e);
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  font-weight: 500;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-6px);
}
.image-wrap {
  max-width: 480px;          /* ⬅️ controls image size */
  margin: auto;              /* centers nicely */
}

.image-wrap img {
  width: 100%;
  height: 320px;             /* ⬅️ controlled height */
  object-fit: cover;         /* keeps image proportional */
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* FORCE WHO-WE-ARE IMAGE OVERRIDE */
.who-we-are .image-wrap {
  max-width: 650px !important;
}

.who-we-are .image-wrap img {
  height: 400px !important;
  width: 100% !important;
  object-fit: cover !important;
  box-shadow: none !important;   /* FORCE remove shadow */
  border-radius: 18px;
}
.our-process.creative {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #f6fff9, #ffffff);
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.process-header h2 {
  font-size: 2.6rem;
  color: #0f3d2e;
  font-family: "Playfair Display", serif;
}

.process-header p {
  color: #555;
  margin-top: 1rem;
  line-height: 1.7;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.flow-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.flow-step span {
  position: absolute;
  top: -18px;
  left: 20px;
  background: #1f7a5a;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step h4 {
  margin-top: 1.5rem;
  color: #0f3d2e;
}

.flow-step:hover {
  transform: translateY(-10px);
}
.vision-mission.creative {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #0f3d2e, #1f7a5a);
  color: #ffffff;
}

.vm-wrapper {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.vm-card {
  background: rgba(255,255,255,0.08);
  padding: 3rem;
  border-radius: 26px;
  backdrop-filter: blur(6px);
}

.vm-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.vm-divider {
  font-size: 2rem;
  opacity: 0.7;
}
.why-choose.creative {
  padding: 6rem 3rem;
  background: #ffffff;
  text-align: center;
}

.why-choose.creative h2 {
  font-size: 2.5rem;
  color: #0f3d2e;
  font-family: "Playfair Display", serif;
}

.trust-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.trust-item {
  position: relative;
  padding: 2.2rem 1.8rem;
  border-radius: 20px;

  /* STRONG VISUAL CARD */
  background: linear-gradient(135deg, #1f7a5a, #0f3d2e);
  color: #ffffff;

  box-shadow: 0 20px 45px rgba(15,61,46,0.45);
  font-weight: 500;
  font-size: 1.05rem;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* GOLD ACCENT BAR */
.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #ffec8b);
  border-radius: 15px 15px 0 0;
}

.trust-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 65px rgba(15,61,46,0.65);
}

.footer .badges img {
  width: 80px;          /* ✅ ideal size */
  max-width: 100%;
  height: auto;
  opacity: 0.85;        /* subtle, professional */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .badges img:hover {
  transform: scale(1.05);
  opacity: 1;
}