.hero {
  position: relative;
  padding: 110px 20px 90px;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  overflow: hidden;
}

/* Green glow effect */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 750px;
  margin: auto;
  z-index: 1;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Heading */
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #166534; /* darker green for contrast */
  margin-bottom: 18px;
}

/* Paragraph */
.hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 90px 20px 70px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background: #f0fdf4;
  flex-wrap: wrap;
}

.stat-card {
  background: white;
  padding: 35px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  min-width: 220px;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(34,197,94,0.15);
}

/* Number */
.stat-card h2 {
  font-size: 42px;
  font-weight: 700;
  color: #22c55e;
  display: inline-block;
}

/* Plus sign */
.stat-card .plus {
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  margin-left: 3px;
}

/* Label */
.stat-card p {
  margin-top: 10px;
  font-size: 15px;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .team-stats {
    gap: 20px;
  }

  .stat-card {
    width: 100%;
    max-width: 300px;
  }
}

.team-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.section-header h2 {
  font-size: 32px;
  color: #166534;
  margin-bottom: 10px;
}

.section-header p {
  color: #64748b;
  margin-bottom: 50px;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.team-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 18px;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(34,197,94,0.15);
}

/* Image */
.image-wrapper {
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

/* Name */
.team-card h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 6px;
}

/* Role */
.team-card p {
  color: #22c55e;
  font-weight: 500;
  font-size: 14px;
}

.team-culture {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  text-align: center;
  overflow: hidden;
}

/* Soft green glow */
.team-culture::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
  bottom: -120px;
  left: -120px;
  z-index: 0;
}

.culture-content {
  position: relative;
  max-width: 750px;
  margin: auto;
  z-index: 1;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

/* Badge */
.culture-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Heading */
.team-culture h2 {
  font-size: 36px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 18px;
}

/* Paragraph */
.team-culture p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* Overlay */
.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Active state */
.team-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-content {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: 0.3s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.team-modal.active .modal-content {
  transform: scale(1);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  transition: 0.2s ease;
}

.close-btn:hover {
  color: #ef4444;
}

/* Image */
.modal-image {
  margin-bottom: 20px;
}

.modal-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #dcfce7;
}

/* Name */
.modal-content h2 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 5px;
}

/* Role */
.modal-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: #22c55e;
  margin-bottom: 20px;
}

/* Bio */
.modal-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Links */
.modal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.modal-links a {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.modal-links .linkedin {
  background: #22c55e;
  color: white;
}

.modal-links .linkedin:hover {
  background: #16a34a;
}

.modal-links .email {
  background: #f1f5f9;
  color: #111827;
}

.modal-links .email:hover {
  background: #e2e8f0;
}
