/* WhatsApp Floating Button */
.floating_btn a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 40px;
    right: 0px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}

/* Ticker Bar Container */
.ticker-bar {
    width: 100%;
    background: red;
    /* dark background */
    color: white;
    /* light text */
    overflow: hidden;
    font-weight: bold;
    white-space: nowrap;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 14px;
}

/* Inner wrapper to move text */
.ticker-inner {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 12s linear infinite;
}

/* Actual text */
.ticker-text {
    padding-left: 1.5rem;
    letter-spacing: 0.03em;
}

/* Animation: scroll text from right to left */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Small screens adjustments (optional) */
@media (max-width: 600px) {
    .ticker-bar {
        font-size: 13px;
        padding: 10px 0;
    }
}

/* Sticky Apply Now Bar */
.apply-now-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: orange;
    color: white;
    font-weight: bold;
    text-decoration: none;
    /* Blue */
    padding: 10px 15px;
    text-align: center;
    z-index: 9999;
}

.apply-now-bar:hover {
    background: green;
}