section.about_us{
    width: 100%;
}

.row{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 0;
}

.left-col , .right-col{
 width: 48%;

}

.right-col{
    display: flex;
    justify-content: center;
}

.right-col img{
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.right-col .img-container1 img{
    width: 350px;
    height: 500px;
    display: flex;
    justify-items: center;
    background: #000;
}

.left-col .sub-title{
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #121C52;
    margin-bottom: 1rem;
    
    
}
.left-col .title{
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121C52;
    margin-bottom: 1rem;
}

.left-col .desc{
    font-family: 'Poppins', 'sans-serif';
    color: black;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.left-col a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 120px;
    text-decoration: none;
    padding: 0.7rem 0;
    background-color: #121C52;
    text-align: center;
    color: white;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.row2 , .row3, .row4 {
    width: 100%;
    padding: 6rem  0;
}

.our_team .team-sub-title{
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #121C52;
    margin-bottom: 1rem;
    text-align: center;
    
}
.our_team .team-title{
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121C52;
    text-align: center;
    margin-bottom: 1rem;
}

.our_team .team-desc{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.our_team .team-desc p{
    font-family: 'Poppins', 'sans-serif';
    color: black;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    max-width: 60%;
}

.team-cards {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; /* This centers the last row items */
    gap: 20px;
    padding: 2rem 0;
}


.single-member{
    width: 30%;
    text-align: center;
}

.single-member img{
    width: 100%;
    border-radius: 20px;
}
.member-name{
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #121C52;
}

.why-choose-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .why-choose-us .section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    color: #121C52;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
    .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

  
  .feature-box {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .feature-box .icon {
    font-size: 40px;
    color: #fff;
    background: #121C52;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
  }
  
  .feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .feature-box p {
    color: #666;
    font-size: 14px;
  }



  @media (max-width: 767px) {
    p{
      font-size: 14px!important;
    }
    .row {
      flex-direction: column;
      margin-bottom: 20px;
    }

    .row, .row2, .row3, .row4 {
      padding: 1rem 0;
    }
  
    .left-col,
    .right-col,
    .right-section,
    .left-section {
      width: 100%;
      text-align: center;
    }

    .left-col .title,
    .left-col .sub-title,
    .right-section .title {
      text-align: center;
    }

    .right-col .img-container1 img {
      max-width: 300px;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      object-position: top;
      border-radius: 15px;
      margin-bottom: 20px;
    }
  .row .left-col,
  .row2 .right-section,
  .row3 .left-col {
    order: 2; /* content goes after image */
  }

  .row .right-col,
  .row2 .left-section,
  .row3 .right-col {
    order: 1; /* image goes first */
  }

    
  
    .img-container img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
      border-radius: 15px;
    }
  
    .our_team .team-desc p {
      max-width: 100%;
      text-align: center ;
    }


  
    .team-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .single-member {
      width: 80%;
    }
  
    .why-choose-us {
      padding: 1rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .feature-box {
      padding: 1.5rem;
    }
  
    .feature-box .icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 30px;
    }
  
    .feature-box h3 {
      font-size: 18px;
    }
  
    .feature-box p {
      font-size: 13px;
    }
  
    .left-col a,
    .right-section a {
      width: 100%;
      max-width: 200px;
      margin: 0 auto;
    }
  }
  

  