.about-hero {
  background: linear-gradient(135deg, #f57c00, #d32f2f);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}

.about-content {
  padding: 80px 0;
  background: #fff;
}

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

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-values {
  background: #fbf6e4;
  padding: 80px 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.value-card h3 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.about-products {
  padding: 80px 0;
}

.about-products h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.product-list {
  max-width: 500px;
  margin: 20px;
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
}

.about-vision {
  background: #d32f2f;
  color: #fff;
  padding: 70px 0;
}

.vision-box {
  text-align: center;
  max-width: 800px;
}

.vision-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-founders {
  padding: 80px 0;
  background: #fafafa;
  text-align: center;
}

.about-founders h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.founders-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.founder-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.founder-card img {
  width: 100%;
  /* height: 120px; */
  object-fit: cover;
  border-radius: 20px;
  /* margin-bottom: 15px; */
}

.founder-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.founder-card span {
  display: block;
  font-size: 14px;
  color: #ee6c0a;
  margin-bottom: 12px;
  font-weight: 600;
}

.founder-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.founders-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

/* Common card styling */
.founder-card {
  width: 300px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* LEFT founder */
.founder-card:nth-child(1) {
  margin-top: 80px;
}

/* CENTER founder (UP) */
.founder-card:nth-child(2) {
  margin-top: 0;
  transform: scale(1.05);
  z-index: 2;
}

/* RIGHT founder */
.founder-card:nth-child(3) {
  margin-top: 80px;
}

/* Image alignment */
.founder-card img {
  display: block;
  margin: 0 auto 15px;
  max-height: 280px;
  object-fit: contain;
}

/* Mobile fallback */
@media (max-width: 992px) {
  .founders-grid {
    flex-direction: column;
    align-items: center;
  }

  .founder-card {
    margin-top: 0 !important;
    transform: none !important;
  }
}


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

  .about-hero h1 {
    font-size: 34px;
  }
}
