p,a,h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
}

.section-team {
	font-family: "Poppins", sans-serif;
	padding: 80px 0;
}

.section-team .header-section {
	margin-bottom: 50px;
}

.section-team .header-section .small-title {
    margin-bottom: 25px;
	font-size: 16px;
    font-weight: 500;
    color: #004745;
}

.section-team .header-section .title {
    font-weight: 700;
    font-size: 45px;
}

/* Uniform card size and styling */
.section-team .single-person {
    margin-top: 30px;
    padding: 30px;
    background-color: #f6f9ff;
    border-radius: 5px;
    height: 450px; /* Ensure uniform height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .section-team .single-person:hover {
    background: linear-gradient(to right, #004745, #1f478a);
  }
  
  .section-team .single-person .person-image {
    position: relative;
    margin-bottom: 50px;
    border-radius: 50%;
    border: 4px dashed transparent;
    transition: padding .3s;
  }
  
  .section-team .single-person:hover .person-image {
    padding: 12px;
    border: 4px dashed #fff;
  }
  
  .section-team .single-person .person-image img {
    width: 100%;
    border-radius: 50%;
  }
  
  .section-team .single-person .person-image .icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(to right, #016cec, #00b5f7);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
  }
  
  .section-team .single-person:hover .person-image .icon {
    background: none;
    background-color: #fff;
    color: #004745;
  }
  
  .section-team .single-person .person-info .full-name {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
  }
  
  .section-team .single-person .person-info .speciality {
    text-transform: uppercase;
    font-size: 14px;
    color: #016cec;
  }
  
  .section-team .single-person:hover .full-name,
  .section-team .single-person:hover .speciality {
    color: #fff;
  }
  
  .section-team .single-person .lead-btn {
    margin-top: 10px;
  }
  
  .section-team .single-person .lead-btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .section-team .single-person .lead-btn a:hover {
    background-color: darkred;
  }


/* Styles for single person card */
.section-team .single-person {
    margin-top: 30px;
    padding: 30px;
    background-color: #f6f9ff;
    border-radius: 5px;
    height: 450px; /* Ensure uniform height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .section-team .single-person:hover {
    background: linear-gradient(to right, #004745, #1f478a);
  }
  
  .section-team .single-person .person-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 4px dashed transparent;
    transition: padding 0.3s;
  }
  
  .section-team .single-person:hover .person-image {
    padding: 12px;
    border: 4px dashed #fff;
  }
  
  .section-team .single-person .person-image img {
    width: 100%;
    border-radius: 50%;
  }
  
  .section-team .single-person .person-info .full-name {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
  }
  
  .section-team .single-person .person-info .speciality {
    text-transform: uppercase;
    font-size: 14px;
    color: #016cec;
  }
  
  .section-team .single-person:hover .full-name,
  .section-team .single-person:hover .speciality {
    color: #fff;
  }
  
  /* Flex container to ensure uniform card size */
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  @media (max-width: 1200px) {
    .col-xl-3 {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }
  
  @media (max-width: 992px) {
    .col-lg-4 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (max-width: 576px) {
    .col-sm-6 {
      flex: 0 0 80%;
      max-width: 100%;
    }
  
    .section-team .single-person {
      margin: 20px auto; /* Center the card horizontally */
    }
  }
  