.card-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #E6E6E6;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #E6E6E6;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card-img-container:hover .card-img-top {
    transform: scale(1);
    filter: brightness(1);
}


.card-img-container:hover .card-img-top {
    transform: scale(1.1);
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.modal-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.modal-body h5 {
    text-align: center;
    margin-top: 15px;
}

.modal-description {
    text-align: justify;
    margin-top: 10px;
}

.title {
    margin-bottom: 3rem;
}

.text-color {
    color: #CF9D46;
}

.no-padding-top {
    padding-top: 0 !important;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.card-title:hover {
    text-decoration: underline;
}


/*    modal */
.modal-lg {
    max-width: 90%;
}

.modal-body {
    padding: 30px;
}

.modal-description {
    text-align: justify;
    margin-top: 3rem;
    padding: 0 20px;
    font-size: 1.1rem;
}

.modal-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    background-color: #CF9D46;
}

.modal-header .btn-close {
    position: absolute;
    top: 15px;
}

.dropdown-menu[data-bs-popper] {
    left: unset;
}
