/* Container for the advertisement */


.advertisement {
    font-size: 24px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    padding-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Animation for scrolling the text */
.advertisement::before {
    content: "Admissions Open for 2025-2026 Academic Year"; /* Copy the text here */
    position: relative;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
    padding-right: 100%; /* Creates space for smoother scroll */
}

/* Keyframes for the scrolling animation */
@keyframes scrollLeft {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .advertisement {
        font-size: 18px; /* Slightly smaller text for mobile */
    }
    
    /* Slow down the animation for mobile screens */
    .advertisement::before {
        animation-duration: 10s; /* Slower scroll for mobile */
    }
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .advertisement::before {
        animation-duration: 15s; /* Standard speed for desktop */
    }
}




