
.container-fluid {
    margin: 0;
    padding: 0;
}

.career-description {
    padding: 30px;
}

.career-form {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #222a48;
}

.strong {
    color: #222a48;
    font-size: 18px;
}

.submit {
    background-color: #222a48;
    color: #fff;
}

.contact-item {
    color: #ef7f19;
}

.submit:hover {
    background-color: #ef7f19;
    color: #fff;
}

.form-control:focus {
    color: #222a48;
    /* background-color: var(--bs-body-bg); */
    border-color: 3px solid #222a48;
    outline: 0;
    box-shadow: none;
}

.contact-section {
    background-color: #222a48;
}


/* Map wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
}

/* Floating Share Button INSIDE MAP */
.floating-share {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: blinkColors 1.5s infinite;
    transition: transform 0.3s ease;
}

.floating-share:hover {
    transform: scale(1.1);
}

/* 3-Color Blink Animation */
@keyframes blinkColors {
    0% {
        background-color: rgb(239, 127, 25);
    }

    33% {
        background-color: rgb(52, 219, 77);
    }

    66% {
        background-color: rgb(239, 127, 25);
    }

    100% {
        background-color: #0d6efd;
    }
}
