#CM_Section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #113d9c, #0c72e6, #8016e4);
    color: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }

  #CM_Section img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 10px;
    border: 2px solid #c26ace;
  }

  #CM_Section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  #CM_Section div {
    text-align: center;
  }

  .boxed {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
  }

  .slider {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slides img {
    height: auto;
    width: 100%;
  }

  .slider-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
  }

  .slider-buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .slider-buttons button:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .slider-dots button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background: #043ba0;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .slider-dots button.active {
    background: rgb(146, 3, 212);
  }