.navbar-nav button {
    background-color: #4C51E0;
    color: #fff;
    border: none;
    margin: 14px 0;
    width: 100%;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.navbar-nav button:hover {
    background-color: #222222;
}

.nav-small[data-menu-style="transparent"] .navbar-nav>li>button {
    margin: 9px 0;
}

.video-container {
    border-radius: 8px;
}

.portfolio-item {
    border-radius: 5px;
}

.img-Container {
    pointer-events: none;
}

.img-Container:hover {
    cursor: default;
}

.img-Container::before,
.img-Container::after {
    display: none;

}


/* Modal Overlay */
.modal-overlay {
    display: none;
    /* hidden by default */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 20px;
    max-width: 800px;
    width: 90%;
    border-radius: 6px;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 100px auto 20px;
}

.modal-content h3 {
    padding: 0 0 20px;
}

/* Show State */
.modal-overlay.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
}



#requestForm button {
    background-color: #4C51E0;
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    margin-top: 20px;
}

#requestForm button:hover {
    background: #222222;
}

select {
    padding: 14px 18px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border: 0px;
    font-weight: 300;
    font-size: 13px;
    line-height: 22px;
    color: #555;
    width: 100%;
    margin-bottom: 14px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    outline: none;
}