:root {
    --primary-blue: #2563eb;
    --hover-blue: #1d4ed8;
    --accent-blue: #3b82f6;
    --deep-purple: #7c3aed;
    --dark-bg: #0f172a;
    --light-text: #f8fafc;
    --section-bg: #f8f9fa;
    --gradient-start: #2563eb;
    --gradient-end: #7c3aed;
  }
  
  .team-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .team-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-blue), var(--deep-purple));
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
  }
  
  .team-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
  }
  
  .text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
  }
  
  .team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.05);
  }
  
  .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(15, 23, 42, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .team-card:hover .team-overlay {
    background: linear-gradient(transparent 30%, rgba(15, 23, 42, 0.9));
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .team-card:hover .social-links {
    transform: translateY(0);
    opacity: 1;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
    color: white;
    transform: translateY(-3px);
  }
  
  .team-content {
    padding: 25px;
    text-align: center;
  }
  
  .team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-bg);
  }
  
  .team-position {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
  }
  
  .team-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .skill-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
  }
  
  .team-stats {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .stat-card {
    text-align: center;
    padding: 20px;
  }
  
  .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
  }
  
  .team-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
    border-radius: 16px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 3rem;
  }
  
  .team-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="0" y="0" width="200" height="200" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.1"/></svg>');
    z-index: -1;
  }
  
  .team-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .team-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
  }

  
  /* Responsive */
  @media (max-width: 992px) {
    .team-image {
      height: 250px;
    }
  }
  
  @media (max-width: 768px) {
    .team-section {
      padding: 3rem 0;
    }
    
    .team-cta {
      padding: 2rem;
    }
    
    .team-cta h3 {
      font-size: 1.5rem;
    }
  }