@import "tailwindcss";

/* =========================
   Our Values section
========================== */
#values {
  padding: 3rem 0;
}

#values h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.values-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.values-text {
  flex: 1;
  min-width: 300px;
}

.values-text h3 {
  margin-bottom: 0.5rem;
}

.innovation {
  margin-bottom: 1.5rem;
}
/* =========================
  Team section (flip cards)
========================== */
#team {
  padding: 3rem 0;
}

#team h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.team-card {
  width: 220px;
  height: 300px;
  perspective: 1000px;
}

.team-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.team-card:hover .team-inner {
  transform: rotateY(180deg);
}

.team-front,
.team-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #e0f2f1;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-front img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  background-color: #e0f2f1;
  border: 2px solid #23aa9a;
}

.team-front h3 {
  margin: 0.5rem 0;
}

.team-back {
  transform: rotateY(180deg);
  padding: 1rem;
}

.gradient-bg {
  background: linear-gradient(
    135deg,
    #23aa9a 0%,
    #178c90 50%,
    #b2dfdb 100%
  );
}
.pulse-animation {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-card {
  transition: all 0.3s ease;
}