﻿.notice-section-bg {
        background: #f7f9fc;
    }

    /* Principal Card */
    
    /* Notice Wrapper */
    .college-notice-wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        overflow: hidden;
        position: relative;
        height: 100%;
    }

 
/* Remove animation completely */

.notice-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/*.notice-scroll-area:hover .notice-scroll {
    animation-play-state: paused;
}

@keyframes noticeScroll {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}*/
    /* Notice Card */
    .notice-card {
        background-color:aliceblue;
        border: 1px solid #e9eef5;
        border-left: 5px solid #122158;
        border-radius: 16px;
        padding: 15px 20px 15px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: 0.3s;
    }

    .notice-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    }

    .notice-date {
        font-size: 14px;
        color: #101337;
        font-weight: 600;
    }

    .notice-date i {
        color: #101337;
        margin-right: 6px;
    }

    .notice-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 0px;
        color: #101337;
        line-height: 1.4;
    }

    .notice-title i {
        color: #101337;
        margin-right: 8px;
    }

    .notice-desc {
        font-size: 15px;
        line-height: 1.5;
        color: #555;
        margin-bottom: 0px;
    }

    /* Buttons */
    .notice-btns {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
        margin-bottom: 0px;
    }

    .notice-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        transition: 0.3s;
    }

    .download-btn {
        background: #eef4ff;
        color: #0d6efd;
    }

    .download-btn:hover {
        background: #0d6efd;
        color: #fff;
    }

    .notice-links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    .notice-link-btn {
        color: #198754;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
    }

    .notice-link-btn i {
        margin-right: 5px;
    }

    .notice-read-btn {
        color: #0d6efd;
        font-weight: 700;
        text-decoration: none;
        font-size: 14px;
    }

    .notice-read-btn i {
        margin-left: 5px;
        transition: 0.3s;
    }

    .notice-read-btn:hover i {
        transform: translateX(4px);
    }

    /* Responsive */
    @media (max-width:991px) {

        

        .notice-title {
            font-size: 18px;
        }
    }