
.experts {
    background: #121212;
    padding: 40px 0;
  }
  
  .about {
      background: #1e1d1e;
      padding-top: 80px;
    }
    
    .container{
      padding: 0 10px;
    }
  
    .about-us {
        background: #1E1D1E;
        border-radius: 1rem;
        padding: 3rem 0rem;
        text-align: center;
    }
    
    .about-us h1 {
        font-size: 2.25rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }
    
    .about-us h1::after {
        content: '';
        width: 100%;
        height: 3px;
        background: #4f46e5;
        position: absolute;
        bottom: -0.5rem;
        left: 0;
    }
    
    .about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
        text-align: left;
    }
    
    .about-text {
        flex: 1 1 100%;
        padding: 1rem;
        padding-left: 0;
    }
    
    @media (min-width: 768px) {
        .about-text {
            flex: 1 1 55%;
            padding-right: 60px;
        }
    }
    
    @media (min-width: 1024px) {
        .about-text {
            flex: 1 1 55%;
            padding-right: 100px;
        }
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        color: #1f2937;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        color: #fff;
        line-height: 1.75;
    }
    
    .about-image {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }
  
    @media (min-width: 768px) {
        .about-image {
            flex: 1 1 40%;
            max-width: 500px;
        }
        .container{
          padding: 0 40px;
        }
    }
    
    @media (min-width: 1024px) {
        .about-image {
            flex: 1 1 40%;
            max-width: 500px;
        }
        .container{
          padding: 0 80px;
        }
    }
    
    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 0.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .placeholder-img {
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: #6b7280;
    }
    
    .status-message {
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: center;
      display: none;
  }
  
  .status-message.success {
      background: #d4f4e2;
      color: #1a7e3e;
  }
  
  .status-message.error {
      background: #f4d4d4;
      color: #7e1a1a;
  }
  
  .error-field {
      border-bottom: 1px solid #7e1a1a !important;
  }
  
  .error-text {
      color: #7e1a1a;
      font-size: 0.875rem;
      margin-top: 0.25rem;
      display: none;
  }
  
  /* Our Experts */
  
  
  
  .team-section {
      background: #121212;
      border-radius: 0.5rem;
      text-align: center;
  }
  
  .team-section h1 {
      font-size: 2rem;
      font-weight: 600;
      color: #121212;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
  }
  
  .team-section h1::after {
      content: '';
      width: 60%;
      height: 2px;
      background: #4f46e5;
      position: absolute;
      bottom: -0.5rem;
      left: 20%;
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
  }
  
  .team-member {
      text-align: center;
      padding: 1.5rem;
      background: #181616;
      border-radius: 0.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 40px 0;
  }
  
  .team-member:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .avatar {
      width: 120px;
      height: 120px;
      background: #e8ecef;
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      color: #4f46e5;
      margin-bottom: 30px;
      overflow: hidden;
      border: 1px solid #1816164d;
  }
  
  .team-member h3 {
      font-size: 1.125rem;
      font-weight: 500;
      color: #121212;
      margin-bottom: 12px;
  }
  
  .team-member p {
      font-size: 0.875rem;
      color: #5f6a7d;
      margin-bottom: 1rem;
  }
  
  .social-links {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
  }
  
  .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      color: #5f6a7d;
      text-decoration: none;
      font-size: 0.875rem;
      border-radius: 50%;
      transition: color 0.3s ease, background 0.3s ease;
  }
  
  .social-links a:hover {
      color: #ffffff;
      background: #4f46e5;
  }
  
  .linkedin::before {
      content: '\1F517'; /* Unicode for link icon */
  }
  
  .twitter::before {
      content: '\1F426'; /* Unicode for bird icon */
  }
  
  .github::before {
      content: '\1F431'; /* Unicode for cat icon */
  }


.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}