
.container-unique {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 100px;
  }
  .mm {
    overflow: hidden;
    width: 500px !important;
    height: 400px;
    
  object-fit: cover;
}

.mm img{
  height: 400px;
}
  .heading-unique {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    margin-top: 20px;
    background: linear-gradient(90deg, orange, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
  }

  .subheading-unique {
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 40px;
  }

  .content-unique {
    display: flex;
    gap: 20px;
  }

  .left-section-unique {
    flex: 1;
    
  }

  .left-section-unique .feature-unique {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .left-section-unique .feature-icon-unique {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9f5fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: #3498db;
  }

  .left-section-unique .feature-text-unique {
    font-size: 17px;
    color: #34495e;
  }

  .register-btn-unique {
    display: block;
    width: 200px;
    margin: 30px auto;
    text-align: center;
    padding: 10px 20px;
    background-color: #f1c40f;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
  }

  .right-section-unique {
    flex: 1;
    position: relative;
  }

  .card-container-unique {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .card-unique {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .card-unique img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .card-unique p {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 15px;
  }

  .card-unique .details-unique {
    font-size: 12px;
    color: #7f8c8d;
  }

  .scroll-buttons-unique {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .scroll-buttons-unique button {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dots-unique {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .dots-unique span {
    width: 10px;
    height: 10px;
    background-color: #dcdcdc;
    border-radius: 50%;
    margin: 0 5px;
  }

  .dots-unique .active-unique {
    background-color: #3498db;
  }

  @media (max-width: 768px) {
    .content-unique {
        flex-direction: column;
    }

    .left-section-unique {
        text-align: center;
    }

    .right-section-unique,
    .left-section-unique {
        width: 100%;
    }

    .mm {
      margin: auto;
  }
}