.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 20px;
  color: #333;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/donut-bg-pattern.png');
  /* your pattern path */
  background-size: 1100px;
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  /* ✅ This makes the background fixed */
  opacity: 0.15;
  z-index: 0;
}


.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.about-hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 25px;
  color: #333;
}



@media screen and (max-width: 768px) {
  .about-hero {
    padding: 60px 15px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 14px;
  }
}


.about-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  background: #fff;
}

.value-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.value-box {
  text-align: center;
  width: 220px;
}

.value-box img {
  width: 50px;
  margin-bottom: 15px;
}

.value-box h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.value-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  background-color: #00cfc6;
  padding: 20px 15px;
  border-radius: 12px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-wrapper {
  padding: 60px 40px;
}

.about-founder {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.founder-img {
  flex: 1 1 350px;
  max-width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 25px;
}

.founder-img img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
}

.founder-bio {
  flex: 1 1 600px;
  max-width: 600px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

.founder-bio p {
  margin-top: 15px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

.social-links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 22%;
}

.social-left,
.social-right {
  display: flex;
  gap: 20px;
}

.social-left a,
.social-right a {
  font-size: 22px;
  color: #000;
}

.team-section {
  text-align: center;
  padding: 60px 20px;
}

.team-heading {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  width: 280px;
  height: 380px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  background-color: rgba(240, 213, 60, 0.95);
  /* yellow overlay */
  color: #000;
  text-align: center;
  padding: 20px 10px;
  opacity: 0;
  transition: opacity 0.4s ease;

}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.team-overlay p {
  font-size: 14px;
  margin: 8px 0;
}

.team-divider {
  width: 60px;
  height: 2px;
  background-color: #000;
  border: none;
  margin: 10px auto;
}

.team-social a {
  margin: 0 10px;
  color: #000;
  font-size: 16px;
}