/* General Styles */
body {
    font-family: 'Kalpurush', Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    margin-right: 10px;
}

/* Hero Section */
.hero-section {
    margin-top: -56px; /* Adjust for fixed navbar */
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Section Headers */
section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #007bff;
}

/* Officials Section */
.officials .card img {
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services .card {
    text-align: center;
    padding: 20px;
}

.services .card i {
    color: #007bff;
    margin-bottom: 15px;
}

/* Notice Board */
.notices .card {
    border-left: 4px solid #007bff;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Newspaper Logos */
.logo-carousel {
    padding: 20px 0;
}

.logo-item {
    padding: 15px;
    text-align: center;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }
    
    .officials .card img {
        height: 200px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: #007bff;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    margin-bottom: 20px;
}

/* Modal Styles */
.modal-content {
    border-radius: 0;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

/* Ad Styles */
.ad-container {
    margin: 20px 0;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-ad {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-ad {
    margin-bottom: 20px;
}

.content-ad {
    margin: 30px 0;
}

.footer-ad {
    margin-top: 30px;
}

.text-ad {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.banner-ad img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive Ad Styles */
@media (max-width: 768px) {
    .ad-container {
        margin: 15px 0;
    }
    
    .header-ad {
        margin-bottom: 20px;
    }
    
    .content-ad {
        margin: 20px 0;
    }
} 