body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

.notice-heading {
    text-align: center;
    background: linear-gradient(90deg, #4caf50, #81c784);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#dynamic-heading {
    font-size: 2.5rem;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.notice-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: 20px;
}

.notice-container {
    background: white;
    width: 350px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid rgb(51, 153, 51);
}

.heading-sect {
    background: #673ab7;
    color: white;
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heading-sect h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.heading-sect i {
    font-size: 1.5rem;
}

marquee {
    padding: 15px;
    font-size: 1rem;
    line-height: 1.6;
    height: 180px; /* Adjusted height for increased container size */
    background: #f7f7f7;
    border-top: 2px solid #8a8989;
}

.latest-news-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-news-ul li {
    margin: 10px 0;
    padding: 8px;
    background: #e0f7fa;
    border-left: 4px solid #00796b;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-family: Lucida Bright;
}

.latest-news-ul li:hover {
    background: #b2dfdb;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
