.navbar-nav .nav-link {
    margin-left: 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
}

.contact-box {

    max-width: 1000px;
    width: 100%;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-section {

    /* background: white; */
    background-image: url(../images/images\ \(3\).jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-section {

    background: linear-gradient(135deg,
            #0d6efd,
            #4f8cff);

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}

.form-control {

    border-radius: 10px;
}

.form-control:focus {

    box-shadow: none;

    border-color: #0d6efd;
}

.input-group-text {

    background: white;
}

.btn-primary {

    border-radius: 10px;
}

.contact-details p {

    margin-bottom: 15px;

    font-size: 16px;
}

.social-icons a {

    color: white;

    font-size: 28px;

    margin-right: 15px;

    transition: 0.3s;
}

.social-icons a:hover {

    color: #ffd700;

    transform: translateY(-5px);
}

@media(max-width:991px) {

    .info-section {

        text-align: center;

        padding: 30px;
    }

}