.container {
    display: flex;
    height: 100%;
    border-radius: 10px;
    margin: 0px;
    overflow: hidden;
    position: relative;
}

.sidebar {
    width: 30%;
    padding: 0px 0px;
    background: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    border-right: 1px solid #eee;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 12px 10px;
    cursor: pointer;
    color: #999;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar li.active {
    color: #2b2b2b;
    font-weight: 600;
    border-left: 3px solid #F47A00;
}

.main {
    display: flex;
    flex: 1;
    padding: 0px 20px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.left-section {
    flex: 3; /* 3 parts out of 5 */
}

.right-section {
    flex: 2; /* 2 parts out of 5 */
}
.circle-img-wrapper {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
}

/* .circle-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
} */

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#slideImage{
    width: auto;
    height: 100%;
}
.content {
    max-width: 450px;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.nav-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.nav-buttons button {
    background: linear-gradient(90deg, #ff8000 0%, #ffa64d 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-buttons button.down {
    background:   linear-gradient(90deg, #ffa64d 0%, #ff8000 100%);
    color: white;
    border: none;
}


@media screen and (max-width: 700px) {
    .sidebar{
        display: none;
    }
    .circle-img-wrapper{
        display: none;
    }
    .modal-body{
        padding: 2rem 1rem !important;
    }
    .modal-body .container{
        overflow: visible !important;
    }
    .nav-buttons{
        bottom: -80px;
        right: 10px;
    }
}