.notification {
    transition: opacity 0.5s ease;
    opacity: 1;
}

    .notification.hidden {
        opacity: 0;
    }

.notification {
    display: none;
    position: fixed;
    right: -300px;
    top: 530px;
    z-index: 1000;
   /* transition: left 2s ease-out;*/
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: right 2s ease-out, opacity 1s ease-out; /* slide + fade */
}

.notification-img {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.notification-content h3 {
    margin: 0;
    font-size: 20px;
}

.notification-content span {
    font-size: 12px;
    color: #f0f0f0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*----------------22-04-25----------------*/
/*------- for sticky -------------*/

.tabs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 2px solid #1363df;
    background-color: #f5f5f5;
    width: 100%;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 35px;
}

    .tabs li {
        display: inline-block;
        padding: 10px;
    }

.sticky {
    position: fixed;
    top: 0;
    /*left: 0;*/
    width: 90%;
    z-index: 1000;
}

    .sticky li {
        display: inline-block;
    }


.tab-bar {
    z-index: 9999;
    width: 100%;
}


.tab-toggle {
    display: none;
    color: white;
    background-color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

/* 👇 MOBILE VIEW ONLY FIXED */
@media (max-width: 768px) {
    .tab-toggle {
        display: block;
        background: #444;
        color: white;
        text-align: center;
        padding: 10px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
    }

    .tabs {
        display: none !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        background: #222 !important;
        width: 100%;
        height: auto;
        border: none;
        box-shadow: none;
        margin-top: 0;
    }

        .tabs.open {
            display: flex !important;
        }

        .tabs li {
            display: block !important;
            /*margin: 5px 0;*/
            padding: 0;
        }

            .tabs li a {
                display: block;
                /*padding: 10px;*/
                color: white !important;
                font-size: 16px;
                text-decoration: none;
            }

                .tabs li a:hover {
                    color: #1363df;
                }
}

/* Hover Effect – No Change */
.hover-text {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

    .hover-text:hover {
        transform: scale(1.1);
    }



.tabs li a {
    color: black;
}

    .tabs li a:hover {
        color: #1363df;
    }

/*for whatspp icon*/

.whatsapp-icon {
    position: fixed;
    bottom: 70px;
    right: 0px;
    width: 60px;
    height: 110px;
    z-index: 1000;
}

    .whatsapp-icon img {
        width: 100%;
        height: auto;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }

        .whatsapp-icon img:hover {
            transform: scale(1.1);
        }

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #082a5e;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    /* opacity: 0.7;*/
}

    #scrollToTopBtn:hover {
        opacity: 1;
    }

.telegram {
    position: fixed;
    bottom: 70px;
    right: 0px;
    width: 60px;
    height: 160px !important;
    z-index: 1000;
}
/*    30-08-25  top heder css */
.continuous-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
}

    .marquee-content .clt {
        display: inline-block;
        padding-right: 50px; /* Space between repeated text */
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
/*.continuous-marquee:hover .marquee-content {
    animation-play-state: paused;
}*/