.u-section-1 {
    background-image: none;
  }
  
  .u-section-1 .u-sheet-1 {
    min-height: 33px;
  }
  
  .u-section-1 .u-image-1 {
    width: 150px;
    height: 150px;
    margin: 15px auto 70px 10px;
  }
  
  .u-section-1 .u-text-1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin: -216px -32px 30px 230px;
  }
  
  @media (max-width: 1199px) {
    .u-section-1 .u-text-1 {
      font-size: 3.3rem;
      width: auto;
      margin: -260px 0 10px 100px;
    }
    .u-section-1 .u-image-1 {
      width: 120px;
      height: 120px;
      margin: 10px auto 140px 0;
    }
  }
  
  @media (max-width: 992px) {
    .u-section-1 .u-sheet-1 {
      min-height: 33px;
    }
  
    .u-section-1 .u-image-1 {
      width: 110px;
      height: 110px;
      margin: 10px auto 130px 0;
    }
  
    .u-section-1 .u-text-1 {
      font-size: 3rem;
      margin: -240px 0 10px 100px;
    }
  }
  
  @media (max-width: 767px) {
    .u-section-1 .u-sheet-1 {
      min-height: 120px;
    }
  
    .u-section-1 .u-image-1 {
      width: 100px;
      height: 100px;
      margin-top: 10px;
      margin-left: 10px;
      margin-bottom: -80px;
    }
  
    .u-section-1 .u-text-1 {
      font-size: 2rem;
      margin-top: -90px;
      margin-bottom: 10px;
      margin-left: 100px;
      margin-right: auto;
      
    }
  }
  
  @media (max-width: 575px) {
    .u-section-1 .u-sheet-1 {
      min-height: 380px;
    }
  
    .u-section-1 .u-image-1 {
      width: 234px;
      height: 234px;
      margin-top: 10px;
      margin-left: auto;
      margin-right: auto;
  
    }
  
    .u-section-1 .u-text-1 {
      animation-timing-function: ease;
      --animation-custom_in-translate_x: 0px;
      --animation-custom_in-translate_y: 0px;
      --animation-custom_in-opacity: 0;
      --animation-custom_in-rotate: 0deg;
      --animation-custom_in-scale: 1;
      font-size: 2.25rem;
      margin-left: auto;
      margin-top: 90px;
      margin-bottom: 8px;
      margin-right: auto;
    }
  }
  
  /* body css code starts here */
  
  header h2 {
    color: #000000;
    font-size: 24px;
    margin: 10px 0;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }
  
  .member-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .member-table th,
  .member-table td {
    padding: 10px 15px;
    text-align: left;
  }
  
  .member-table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  .member-table tr:nth-child(even) {
    background-color: #f5f5f5;
  }
  
  .member-table img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  .profile-cell {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .member-name {
    font-weight: bold;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .member-table {
      width: 90%;
    }
  }
  
  /*----------Code of CSS for Governing body-----*/ 
  
  .doctors {
    background: #fff;
  }
  
  .doctors .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 30px;
    border-radius: 10px;
  }
  
  .doctors .member .pic {
    
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
  }
  
  .doctors .member .pic img {
    transition: ease-in-out 0.3s;
  }
  
  .doctors .member:hover img {
    transform: scale(1.1);
  }
  
  .doctors .member .member-info {
    padding-left: 30px;
  }
  
  .doctors .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #2c4964;
  }
  
  .doctors .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
  }
  
  .doctors .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b2c8dd;
    bottom: 0;
    left: 0;
  }
  
  .doctors .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
  
  .doctors .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .doctors .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #a0bcd5;
  }
  
  .doctors .member .social a i {
    color: #fff;
    font-size: 16px;
    margin: 0 2px;
  }
  
  .doctors .member .social a:hover {
    background: #1977cc;
  }
  
  .doctors .member .social a + a {
    margin-left: 8px;
  }
  
  