.two-column-layout {
  display: flex;
  width: 100%;
  min-height: 300px; /* Adjust as needed */
}
.AboutName{
  font-size:24px !important;
}

.column-leftabout {
  width: 30%;
  padding: 1.5rem;
  box-sizing: border-box;
  border-right: 2px solid #ccc; /* Vertical line */
  background: #fafafa; /* Optional: subtle background */
}
.abouthead{
  font-size: 18px;
}
.column-rightabout {
  width: 70%;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 18px;
}
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    min-height: unset;
  }
  .AboutName{
  font-size: 20px !important;
}
  .abouthead{
  margin-top: 5px;
  font-size: 14px;
}
  .column-leftabout,
  .column-rightabout {
    width: 100%;
    padding: 1rem;
    border-right: none;
    border-bottom: 2px solid #ccc;
  }
  .column-rightabout {
    border-bottom: none;
    font-size: 14px;
  }
  .client-items {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .client-image {
    width: 120px;
    height: 120px;
  }
  .clients-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  li {
    font-size: 1rem;
    padding: 8px 10px;
  }
}

li {
  /*background: #f0f8ff;
  border-left: 4px solid #818589;
  margin: 8px 0;*/
  /*padding: 10px 16px;*/
  font-weight: 500;
  color: #222;
  border-radius: 4px;
  transition: background 0.2s;
}

li:hover {
  background: #e6f2ff;
}
.clients-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111;
}
.client-items {
    display: flex;
    gap: 2rem;
    width: 900px; 
    overflow: hidden;
    scroll-behavior: smooth;
   
}
.client-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* object-fit: cover; */
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 600px) {
  .client-items {
    max-width: 60%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
     display: -webkit-box;
  }
  .client-card {
    max-width: 90%;
    min-width: 120px;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    padding: 0.5rem;
  }
}
.navbar{
  --bs-navbar-padding-y:0px !important;
}