/* ================= Our Team Page Theme ================= */
:root {
  --primary-color: #0A192F;
  --highlight-gold: #FFB300;
  --light-blue: #F0F4F8;
  --bg-gradient: linear-gradient(135deg, rgba(10, 25, 47, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
}

.highlight-gold {
  color: var(--highlight-gold);
}

.text-gold {
  color: var(--highlight-gold);
}

/* ================= Page Header ================= */
.team-hero {
  padding: 80px 0 60px 0;
  background: var(--bg-gradient);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.team-title {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--highlight-gold);
  margin-bottom: 25px;
}

.team-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= About Team Section ================= */
.about-team {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.about-team p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ================= Team Members Section ================= */
.team-grid-section {
  padding: 40px 0 80px 0;
  background: var(--light-blue);
}

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

.t-member-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.t-member-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.t-img-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--highlight-gold);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.4s ease;
}

.t-member-card:hover .t-img-wrapper {
  transform: scale(1.05);
}

.t-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.t-member-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.t-role {
  display: inline-block;
  background: rgba(255, 179, 0, 0.1);
  color: #D48800;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.t-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= Mission & Vision ================= */
.mv-section {
  padding: 80px 0;
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  padding: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mv-card.vision {
  background: var(--highlight-gold);
  color: var(--primary-color);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mv-card.vision .mv-icon {
  color: var(--primary-color);
}

.mv-card.mission .mv-icon {
  color: var(--highlight-gold);
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ================= Why Our Team is Different ================= */
.diff-section {
  padding: 60px 0 80px 0;
  background: var(--bg-gradient);
}

.diff-header {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.diff-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.diff-card i {
  font-size: 2rem;
  color: var(--highlight-gold);
}

.diff-card h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* ================= Closing Section ================= */
.team-cta {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.team-cta h2 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.btn-gold {
  display: inline-block;
  background: var(--highlight-gold);
  color: var(--primary-color) !important;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: var(--transition);
}

.btn-gold:hover {
  background: #E6A200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 179, 0, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .team-title { font-size: 2.5rem; }
  .team-cta h2 { font-size: 1.6rem; }
}
