.callback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #69c8a6;
    color: #000;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    box-shadow: 0 8px 20px rgba(4, 116, 217, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 1px solid white;
    cursor: pointer;
}

.callback-btn:hover {
    background: #3ca782;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(4, 116, 217, 0.4);
}

@media (max-width: 768px) {
    .callback-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }
}


/*Hero Updated Events*/
.news-ticker{
    width:100%;
    padding:20px 0;
    background:#b4e3d3;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.news-ticker::-webkit-scrollbar{
    display:none;
}

.ticker-track{
    display: flex;
    gap: 25px;
    width: max-content;
    will-change: transform;
}

.news-card{

    width:420px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    gap:18px;

    background:#184a3d;
    color:#fff;

    border-radius:16px;
    padding:16px;

    text-decoration:none;

    transition:.3s;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-card img{
    width:110px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

.news-content h4{
    margin-bottom:8px;
    font-size: 18px;
}

.news-content p{
    margin-bottom:10px;
    opacity:.85;
    font-size: 16px;
    text-align: start;
}

.news-content span{
    color:#fff;
    font-weight:bold;
}