.notice-list {
    list-style: none;
    padding: 50px;
}

.notice-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #28a745;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notice-item h3 {
    margin: 0;
    color: #004080;
}

.notice-date {
    font-size: 0.9em;
    color: #888;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .notice-item {
        padding: 10px;
    }

    .notice-item h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .notice-item h3 {
        font-size: 1.2em;
    }

    .notice-date {
        font-size: 0.8em;
    }
}
/*event*/
.event-list {
    list-style: none;
    padding: 50px;
}

.event-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #28a745;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-item h3 {
    margin: 0;
    color: #004080;
}

.event-date {
    font-size: 0.9em;
    color: #888;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .event-item {
        padding: 10px;
    }

    .event-item h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .event-item h3 {
        font-size: 1.2em;
    }

    .event-date {
        font-size: 0.8em;
    }
}
/*alumini*/
.container {
    width: 90%;
    margin: 20px auto;
    padding-top: 50px;
}

.page-title {
    text-align: center;
    color: #004080;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.alumni-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.alumni-item {
    display: flex;
    align-items: center;
    flex-basis: 23%;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.alumni-item:hover {
    transform: scale(1.05);
}

.alumni-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.alumni-info h3 {
    margin: 0;
    font-size: 1.2em;
    color: #004080;
}

.batch {
    display: block;
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
}

/* Responsive CSS */
@media (max-width: 1200px) {
    .alumni-item {
        flex-basis: 48%;
    }
}

@media (max-width: 768px) {
    .alumni-item {
        flex-basis: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .alumni-item {
        flex-basis: 100%;
    }

    .alumni-img {
        width: 60px;
        height: 60px;
    }

    .alumni-info h3 {
        font-size: 1em;
    }

    .batch {
        font-size: 0.8em;
    }
}