 .page-wrapper {
      font-family: 'Segoe UI', sans-serif;
      background-color: none;
      direction: rtl;
      text-align: center;
      padding: 40px;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px;
    }
    .card1 {
      background: linear-gradient(135deg, #ffffff, #e3f2fd);
  border: 1px solid #d0e3ff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);

      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      width: 340px;
      padding: 25px;
      transition: transform 0.3s;
      position: relative;
    }
    .card1:hover {
      transform: translateY(-5px);
    }
    .card1 img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .card1 h3 {
      margin: 10px 0 5px;
      color: #333;
    }
    .card1 p.role {
      color: #777;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .card1 p.bio {
      color: #555;
      font-size: 14px;
      margin-bottom: 15px;
    }
    .social-links a {
      margin: 0 8px;
      text-decoration: none;
      font-size: 20px;
    }
    .social-links a.email { color: #D44638; }
    .social-links a.linkedin { color: #0077b5; }
    .social-links a.twitter { color: #1DA1F2; }

    .contact-btn {
      margin-top: 15px;
      background-color: #0077b5;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    .contact-form {
      display: none;
      margin-top: 15px;
      text-align: right;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-family: inherit;
    }
    .contact-form button {
      background-color: #28a745;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
    }
