.about-section {
    background-color: #184d8b;
    color: #ffffff;
    overflow: hidden;
    margin-top: 20px;
  }
  
  .about-section h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  
  .about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f1f1;
    padding-bottom: 20px;
  }
  
  .about-image-wrapper {
    width: 350px;
    height: 350px;
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* -------- Responsive Design -------- */
  @media (max-width: 992px) {
    .about-image-wrapper {
      width: 280px;
      height: 280px;
    }
  }
  
  @media (max-width: 768px) {
    .about-section {
      text-align: center;
    padding-top: 100px;
    }
  
    .about-image-wrapper {
      width: 220px;
      height: 220px;
      margin-top: 20px;
    }
  
    .about-section p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .about-section {
        text-align: center;
        padding-top: 100px;
      }
    .about-image-wrapper {
      width: 180px;
      height: 180px;
    }
  
    .about-section h2 {
      font-size: 26px;
    }
  }
  

  /* Service section */

  
.course-title-bg {
  background-image: url("../images/courses/learning-bg.png");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  border-radius: 6px 6px 0 0;
  position: relative;
  color: #fff;
  text-align: center;
}

/* Overlay for better text readability */
.course-title-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: inherit;
}

.course-title-bg h5 {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}


.training-box1 {
  background-image: url("../images/backgrounds/bg1.png"); /* your image */
 
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  
  border-radius: 10px !important;  /* <-- Rounded corners */
  overflow: hidden;                /* <-- Required to clip the background inside the radius */
  margin-bottom: 20px;
}

.training-box2 {
  background-image: url("../images/backgrounds/bg2.png"); /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  
  border-radius: 10px !important;  /* <-- Rounded corners */
  overflow: hidden;                /* <-- Required to clip the background inside the radius */
}


/* Overlay */
.training-box1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.training-text {
  font-size: 22px;
  color: white;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
