.team-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 18px;
  color: #666;
}

.team-card {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
}

.team-card.reverse {
  flex-direction: row-reverse;
}

.team-image {
  flex: 1 1 45%;
    min-height: 400px;
    max-height: 500px;
    overflow: hidden;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.team-image img {
  width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.team-content {
  flex: 1 1 55%;
  padding: 40px;
}

.team-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.team-tagline {
  font-weight: bold;
  color: #cec8d8;
  margin-bottom: 20px;
}

.teamNameColor{
  color: white;
}

.team-quote {
  font-style: italic;
  border-left: 4px solid #6c2bd9;
  padding-left: 16px;
  margin-bottom: 20px;
  color: #444;
}

.team-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card,
  .team-card.reverse {
    flex-direction: column;
  }

  .team-image {
    height: 300px;
  }

  .team-content {
    padding: 24px;
  }
}

/* faq css */

.faq-section {
  background-color: #f0eee8;
  padding: 60px 20px;
}

.faq-subtitle {
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.faq-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #222;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 15px;
  color: #555;
}

/* Team Grid Styles */
.tc-team-grid {
  background-color: #f9f9f9;
}

.team-card-grid {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.team-card-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.team-card-grid .img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-card-grid .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card-grid:hover .img img {
  transform: scale(1.05);
}

.team-card-grid .info {
  padding: 24px;
}

.team-card-grid .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.team-card-grid .position {
  font-size: 14px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.team-card-grid .tagline {
  font-size: 14px;
  color: #cec8d8;
  font-style: italic;
  margin-bottom: 0;
}

/* Team Member Detail Page Styles */
.tc-team-member-detail {
  background-color: #f9f9f9;
}

.member-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.member-info h1 {
  color: #333;
}

.member-info h3 {
  color: #666;
}

.testimonial-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.back-to-team .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-team .btn:hover {
  transform: translateX(-5px);
}

/* Not Found Page Styles */
.tc-not-found-page {
  background-color: #f9f9f9;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found-content h1 {
  color: #333;
  font-weight: 700;
}

.not-found-content h2 {
  color: #666;
}

.action-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-buttons .btn:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments for team grid */
@media (max-width: 768px) {
  .team-card-grid .img {
    height: 250px;
  }
  
  .team-card-grid .info {
    padding: 20px;
  }
  
  .team-card-grid .title {
    font-size: 18px;
  }
}

/* Chart Styles for About Component */
.charts-container {
  padding: 20px;
}

.chart-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.chart-wrapper {
  position: relative;
  width: 100%;
}

.chart-wrapper canvas {
  max-width: 100%;
  height: auto !important;
}

/* Responsive chart adjustments */
@media (max-width: 768px) {
  .charts-container {
    padding: 10px;
  }
  
  .chart-section {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .chart-wrapper {
    height: 200px !important;
  }
}
