/* Meet the Team - Unique Styling */

body {
  background: var(--bg);
  color: var(--words);
  overflow-x: hidden;
}

.image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* Sections */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.leadership-section {
  background: var(--bg-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: #fff;
}

#us-map {
  height: 300px;
  width: 100%;
}


.team-section {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(26, 35, 51, 0.8) 100%);
}

.values-section {
  background: var(--bg-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Featured Leader */
.featured-leader {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(20, 26, 39, 0.9), rgba(31, 41, 55, 0.7));
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.featured-leader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.leader-image-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.leader-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 150, 200, 0.9));
  padding: 1rem 1.5rem;
  border-radius: 15px;
  min-width: 200px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.leader-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.stat {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.leader-content {
  z-index: 2;
  position: relative;
}

.leader-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--words);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 209, 255, 0.4);
}

.leader-title {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--words-secondary);
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  position: relative;
}

.leader-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  opacity: 0.3;
}

.leader-bio {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--words-secondary);
  margin-bottom: 2rem;
}

.leader-contact {
  margin-top: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.contact-icon {
  font-size: 1.1rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}


.team-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  height: 400px;
  perspective: 1000px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front {
  background: linear-gradient(135deg, rgba(20, 26, 39, 0.9), rgba(31, 41, 55, 0.8));
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-back {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(20, 26, 39, 0.95));
  border: 1px solid var(--accent);
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.team-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--words);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 209, 255, 0.3);
}

.team-title {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-hover-indicator {
  margin-top: auto;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--accent);
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--words-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  transition: background 0.3s ease;
}

.team-contact a:hover {
  background: rgba(0, 212, 255, 0.2);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(20, 26, 39, 0.6), rgba(31, 41, 55, 0.4));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.value-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--words);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-item p {
  color: var(--words-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}
}