/* Modern Template Override Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar / Top Menu Glassmorphism */
.navbar-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Card Design for News */
.card-modern {
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-modern img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
    height: 200px;
    width: 100%;
    transition: transform 0.5s ease;
}

.card-modern:hover img {
    transform: scale(1.05);
}

/* Main Carousel */
.carousel-modern .carousel-inner {
    overflow: hidden;
}

.carousel-modern .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: brightness(0.95);
}

.carousel-caption-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: left;
}

/* Badges / Categories */
.badge-modern {
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-modern {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-modern-primary {
    background: #0056b3;
    color: #fff;
    border: none;
}
.btn-modern-primary:hover {
    background: #004494;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #222;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: #0056b3;
    border-radius: 2px;
}

/* Footer */
.footer-modern {
    background: #111;
    color: #bbb;
    padding: 40px 0;
}
.footer-modern h5 {
    color: #fff;
}
.footer-modern a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-modern a:hover {
    color: #fff;
}
