﻿.message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #b3ccff; /* ✅ New background color */
}


    .message span {
        font-size: 14px;
        display: inline-block;
        white-space: nowrap;
        font-weight: 493;
        color: #fff;
        position: absolute;
        left: 100%; /* Start text off the screen from the right */
    }
.btn-custom {
    background-color: var(--btn-color);
    color: var(--btn-text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-custom:hover {
        background-color: #029c77; /* Slightly darker on hover */
    }

/* Keyframes for smooth scrolling with immediate restart */
/*@keyframes scrollHorizontal {
    0% {
        transform: translateX(100%);*/ /* Start from right off-screen */
    /*}

    100% {
        transform: translateX(-100%);*/ /* End at left off-screen */
    /*}
}*/




#top-header-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1E1F29;
    border-radius : 300px 300px 0px 0px;
    height : 100px;
    
}

.imaagerespo {
    height: 60px; /* Ya jitni required ho */
    width: auto; /* Auto width for proper aspect ratio */
    max-width: 100%; /* Responsive on small screens */
    display: block; /* Removes small gaps in inline images */
}

