:root {
    --govt-blue: #010c32;
    --govt-orange: #e57200;
    --govt-light: #f0f0f0;
    --govt-dark: #162e51;    
    --secondary: #8fb996;
    --accent: #e6b325;
    --primary: #0067d7;
    --light: #f8f9fa;
    --dark: #1a1a1a;
}

.govt-header {
    background: linear-gradient(to right, var(--govt-blue), var(--govt-dark));
    color: white;
    padding: 10px 0;
    border-bottom: 4px solid var(--govt-orange);
}
.site-title {
    text-align: center;
}

.india-logo {
    height: 100px;
    filter: brightness(0) invert(1);
}

.odisha-logo {
    height: 100px;
    mix-blend-mode: lighten;
    position: relative;
    top: 15px;
}
@media (max-width: 768px) {
    .india-logo, .odisha-logo {
        height: 100px;
        mix-blend-mode: lighten;
        position: relative;
        top: 10px;
    }
}

.fixed-top {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
/* .hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
    url('../../assets/images/herobg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
} */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../../assets/images/herobg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-explore {
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-explore:hover {
    background-color: #d19c1f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section-title {
    color: var(--govt-blue);
    font-weight: 700;
    border-bottom: 3px solid var(--govt-orange);
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--govt-blue);
}

.info-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .card-header {
    background-color: var(--govt-blue);
    color: white;
    font-weight: 600;
}

/* Important Links */
.important-links {
    background-color: var(--govt-light);
    padding: 30px 0;
}

.link-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--govt-orange);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.link-item a {
    color: var(--govt-blue);
    font-weight: 500;
    text-decoration: none;
}

.link-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--govt-blue), var(--govt-dark));
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links a {
    color: #bbb;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}