:root {
    --primary-color: #132687;
    --primary-dark: #0b1a5e;
    --saffron: #FF9933;
    --green: #128807;
    --white: #FFFFFF;
    --light-bg: #f4f7f9;
    --text-dark: #333333;
    --text-muted: #666666;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Accessibility Top Bar */
.accessibility-bar {
    background-color: #f1f1f1;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.accessibility-bar a {
    color: var(--text-dark);
    margin-right: 15px;
    text-decoration: none;
}

.accessibility-bar a:hover {
    color: var(--primary-color);
}

/* Header */
.govt-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 4px solid var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
}

.emblem {
    width: 50px;
    margin-right: 15px;
}

.diet-logo {
    width: 60px;
}

.header-text {
    margin-left: 15px;
}

.header-text h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
}

.header-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Navbar Redesign */
.navbar-custom {
    background-color: var(--primary-color);
    padding: 0;
}

.navbar-custom .nav-link {
    color: var(--white) !important;
    padding: 15px 20px !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover, 
.navbar-custom .nav-link.active {
    background-color: var(--primary-dark);
    color: var(--saffron) !important;
}

.navbar-custom .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--saffron);
}

/* Hero Carousel */
.carousel-item img {
    height: 450px;
    object-fit: cover;
}

/* Cards & Panels */
.modern-card {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: var(--shadow-md);
}

.card-header-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Notice Board */
.notice-marquee {
    background: var(--saffron);
    color: var(--white);
    padding: 10px;
    font-weight: 500;
    border-radius: 4px;
}

.notice-list {
    padding: 0;
    list-style: none;
}

.notice-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.notice-item:hover {
    background-color: #f9f9f9;
}

.notice-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Footer Section */
.footer-main {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--saffron);
    display: inline-block;
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111;
    color: #888;
    padding: 20px 0;
    font-size: 13px;
}

/* Utilities */
.btn-gov {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gov:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.section-padding {
    padding: 60px 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header-text h1 { font-size: 16px; }
    .carousel-item img { height: 300px; }
    .navbar-custom .nav-link { padding: 10px 15px !important; }
}