/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff !important;
}

/* Scrolling Notice Board */
.notice-board {
    background: #fff;
    border-radius: 10px;
    border-top: 4px solid #6c5ce7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.notice-header {
    background: #6c5ce7;
    color: white;
    padding: 10px;
    font-weight: 600;
    text-align: center;
}

.notice-content {
    height: 300px; /* Fixed height for scroll */
    padding: 15px;
}

.notice-item {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.9rem;
    color: #444;
}

/* Card Styling for PDF/Books */
.content-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-view {
    background-color: #6c5ce7;
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Image Gallery Styling */
.gallery-img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}