.fixed-size-img {
    width: auto; /* Set the fixed width */
    height: 200px; /* Set the fixed height */
    object-fit: cover; /* Cover the image within the set dimensions without distortion */
    /* Center the image horizontally */
  }
  
  .fixed-card {
    height: 350px; /* Fixed height for the card */
    /* Ensure that the content is spaced properly */
    border: 1px solid #ddd; /* Optional border for the card */
    border-radius: 8px; /* Optional rounded corners */
    overflow: hidden; /* Hide any overflow from child elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for card */
  }
  
  .team-img {
    overflow: hidden; /* Ensure image does not overflow the container */
  }
  
  .team-content {
    padding: 15px; /* Space around the content */
  }
  
  .about-uss {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding: 90px 0;
    background: #fff;
  }
  
  .pic {
    height: auto;
    width: 400px;
    border-radius: 12px;
  }
  
  .about {
    width: 1130px;
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .text {
    width: 540px;
  }
  
  .text h2 {
    color: #333;
    font-size: 90px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .text h5 {
    color: #333;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  span {
    color: #4070f4;
  }
  
  .text p {
    color: #333;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
  }
  
  .data {
    margin-top: 30px;
  }
  
  .hire {
    font-size: 18px;
    background: #4070f4;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    transition: 0.5s;
  }
  
  .hire:hover {
    background: #000;
  }
  