.about-us-section {
    background: #f5f7f8;
  }
  
  .image-grid {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    border-radius: 20px;
  }
  
  .grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  
  /* Replace below with your actual images */
  /* .top-left {
    background-image: url('img/images1.jpg');
  }
  .top-right {
    background-image: url('img/photo.jpg');
  }
  .bottom-left {
    background-image: url('img/images2.jpg');
  }
  .bottom-right {
    background-image: url('img/img_cricle.jpg');
  }
   */
  .experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background-color: #001f8d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    line-height: 1.2;
  }
  .text{
    color: #001f8d;
    padding: 105px;
  }
  
  @media (max-width: 768px) {
    .image-grid {
      height: 300px;
      max-width: 300px;
      gap: 8px;
    }
  
    .experience-badge {
      width: 100px;
      height: 100px;
      font-size: 0.8rem;
    }
}


.info-section {
    background-color: #001f8d;
    padding: 30px 30px;
    border-radius: 0 250px 250px 0;
    max-width: 93%;
    overflow: hidden;
  }

  .info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    text-align: center;
  }

  .info-text {
    color: #fff;
    flex: 1;
    min-width: 280px;
  }

  .info-text h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .info-text button {
    background-color: #fff;
    color: #001f8d;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .info-text button:hover {
    background-color: #f0f0f0;
  }

  .info-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .info-container {
      flex-direction: column;
      text-align: center;
     
    }
    .info-text h2{
      font-size: 18px;
      font-weight: bold;
      line-height: 30px;
      margin-bottom: 10px;

    }

    .info-image {
      margin-top: 30px;
    }

    .info-section {
      border-radius: 1;
      padding: 4px 30px;
   }
  }

  .apcp-section {
    background-color: #f5f7f8;
  }

  .apcp-section h2 {
    font-size: 1.8rem;
  }

  .apcp-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .prof{
    margin-top: -18px;
    margin-bottom: 1rem;
  }
  .asiri{
    border: 2px solid;
  }

  .apcp-section sup {
    font-size: 0.6em;
    top: -0.6em;
  }

  @media (max-width: 768px) {
    .apcp-section h2 {
      font-size: 1.4rem;
    }

    .apcp-section p {
      font-size: 0.95rem;
    }
  }
