body {
    margin: 0; 
    background: #f0f4f9; 
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Top Gov Bar */
.top-gov-bar {
    background: #ff9933; 
    padding: 15px 10px; 
    color: #000; 
    font-size: 14px; 
    text-align: center; 
    font-weight: bold; 
}

/* Header */
header {
    /* background: #002b5c;  */
    padding: 18px 10px; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    border-bottom: 5px solid #138808; 
    background-color: #fdffcb;
}
header h1 { margin: 0; font-size: 32px; }
header h3 { margin: 0; font-weight: normal; font-size: 18px; }

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, red, #05457b);
    padding: 19px 25px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 6px;
    transition: all 0.4s ease;
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #ff9933;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hover Color */
.nav-links a:hover {
    color: #ffcc66;
    transform: translateY(-2px);
}

/* ACTIVE */
.nav-links a.active {
    color: #ff9933;
}

/* MENU BUTTON */
.menu-btn {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #002b5c, #003c70);
        flex-direction: column;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .nav-links.show {
        max-height: 600px;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        animation: slideFade 0.6s ease forwards;
    }
}

/* MOBILE LINK ANIMATION */
@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Cards */
.cards { display: flex; flex-wrap: wrap; gap: 20px; }
.card { flex: 1 1 calc(20% - 20px); background: #f8fbff; padding: 20px; text-align: center; border-radius: 6px; border: 1px solid #c7c7c7; font-size: 20px; font-weight: bold; }
@media(max-width: 700px) { .card { flex: 1 1 100%; } }

/* Members */
.member-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.member { width: 15%; background: #f8fbff; border: 1px solid #c7c7c7; border-radius: 6px; padding: 15px; text-align: center; }
.member img { width: 80%; height: 150px; border-radius: 6px; background: #ddd; }
@media(max-width: 768px) { .member { width: 45%; } }
@media(max-width: 480px) { .member { width: 100%; } }

/* Gallery */
.gallery { display: flex; flex-wrap: wrap; gap: 20px; }
.gallery img { width: 32%; border-radius: 6px; border: 1px solid #c7c7c7; height: 350px; object-fit: cover; }
@media(max-width: 700px){ .gallery img { width: 48%; } }
@media(max-width: 480px){ .gallery img { width: 100%; } }

/* Footer fix */
html, body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
body {
min-height: 100vh;
}
main {
flex: 1;
}
footer {
background: #002b5c;
color: white;
text-align: center;
padding: 20px;
border-top: 5px solid #ff9933;
}


.info-box {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 12px;
    border-left: 4px solid #002b5c; /* blue stripe */
    border-top: 3px solid #ff9933; /* orange bar */
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    margin: 25px auto;
    width: 90%;
     font-size: 23px;
}

.info-box h2 {
    color: #002b5c;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

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

.info-list li {
    background: #f7faff;
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9933;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Section Heading */
.section h2 {
    color: #002b5c;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
		   
			   width: 100%;
}


/* Main Scheme Card Box */
.scheme-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 6px solid #002b5c;  /* blue stripe */
    border-top: 4px solid #ff9933;   /* orange bar */
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    margin: 20px 0;
    list-style: none;
}

/* Scheme Title */
.scheme-card h3.scheme-title {
    font-size: 22px;
    font-weight: 700;
    color: #002b5c;
    margin: 0;
}

/* Sub list Container */
.sub-list {
    margin-top: 15px;
    padding-left: 10px;
}

/* Each Sub Item */
.sub-item {
    background: #f7faff;
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9933; /* orange stripe */
    font-size: 18px;
}

/* Tick icon like info-box */
.sub-item::before {
    content: "✔ ";
    color: #002b5c;
    font-weight: bold;
}
/* .nav-links a.active {
   background: #ff9933;
    color: black !important;
} */


.footer-address {
    margin-top: 10px;
    padding: 10px 0;
    line-height: 1.6;
}

.footer-address h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffcc66; /* soft golden look */
}

.footer-address p {
    margin: 5px 0;
    font-size: 16px;
       color: #141414;
}

.footer-address .email {
    font-weight: bold;
       color: #235bff;   /* light green highlight */
}


.site-header {
    text-align: center;
    padding: 10px 0;
}

.title-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.title-logo {
    height: 60px;   /* change size if needed */
    width: auto;
}


/* 🔹 Top Header with Logos */
.top-logo-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: #fdffcb;
    border-bottom: 2px solid #e6e6e6;
}

.gov-logo-1 {
    width: 115px;
    height: auto;
    /* padding-left: 200px;; */
}
.gov-logo-2 {
    width: 115px;
    height: auto;
    /* padding-right: 200px; */
}

.center-box {
    text-align: center;
}

.center-logo {
    width: 95px;
    display: block;
    margin: auto;
}

.center-box h1 {
    font-size: 40px;
    margin: 6px 0 0 0;
    font-weight: 700;
    color: #000;
}

.center-box h2 {
    font-size: 22px;
    margin: 5px 0 0 0;
    color: #444;
    font-weight: 500;
}

/* 🔹 Page Content */
.content {
    padding: 25px;
    font-size: 20px;
}
@media (min-width: 1024px)  {
.gov-logo-1 {
    padding-left: 200px;;
}
.gov-logo-2 {
    padding-right: 200px;
}
}

/* 🔹 Responsive Mobile View */
@media (max-width: 768px) {
    .top-logo-bar {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
    }

    .gov-logo {
        width: 90px;
    }

    .center-logo {
        width: 75px;
    }

    .center-box h1 {
        font-size: 30px;
    }
    .center-box h2 {
        font-size: 18px;
    }
    
}

/* 🔹 Very small phones */
@media (max-width: 480px) {
    .gov-logo-1, .gov-logo-2 {
        width: 90px;
    }

    .center-box h1 {
        font-size: 24px;
    }

    .center-box h2 {
        font-size: 16px;
    }
    
}
/* 🔹 Mobile and Tablet View */
@media (max-width: 900px) {
    .top-logo-bar {
        flex-direction: column;
        gap: 10px;
    }

    .gov-logo-1,
    .gov-logo-2 {
        width: 110px;
    }

    .center-box h1 {
        font-size: 32px;
    }

    .center-box h2 {
        font-size: 18px;
    }
}

/* 🔹 Small Phones */
@media (max-width: 540px) {
    .gov-logo-1,
    .gov-logo-2 {
        width: 90px;
    }

    .center-box h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .center-box h2 {
        font-size: 16px;
    }
}


/* Cards Layout */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Each Card Box */
.card {
    background: #ffffff;
    padding: 28px;
    width: 300px;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    line-height: 35px;
}


.zp-footer {
    background: linear-gradient(135deg, red, #05457b);
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

/* Top Logos */
.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 15px 10px;
    background: linear-gradient(135deg, red, #05457b);
}
.footer-logos img {
    width: 150px;
    height: auto;
    background: #fff;
    padding: 10px;
}

/* Content Section */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 45px 50px;
}
.footer-col {
    width: 22%;
    text-align: left;
}
.footer-col-links {
    width: 16%;
    text-align: left;
}
.footer-col ul li {
    list-style: disc;
    margin: 6px 0;
    font-size: 18px;
}
.footer-col ul p a {
 text-decoration: none !important;  /* removes underline */
    color: #ffffff !important; 

}
.footer-col p {
    font-size: 18px;
    line-height: 28px;
}

.footer-logo-right {
    width: 22%;
    text-align: center;
}
.footer-logo-right img {
    width: 160px;
    margin-bottom: 10px;
}
.footer-logo-right h2 {
    color: #ff934f;
    font-size: 28px;
}

/* Bottom copyright */
.footer-bottom {
    background: linear-gradient(135deg, red, #05457b);
    padding: 15px 10px;
    font-size: 16px;
}
.footer-bottom a {
    color: #ff934f;
    font-weight: bold;
}
.footer-bottom p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-col,
    .footer-logo-right {
        width: 45%;
        margin-top: 20px;
    }
}
@media (max-width: 600px) {
    .footer-col,
    .footer-logo-right {
        width: 100%;
        text-align: center;
    }
    .footer-col ul {
        padding: 0;
    }
    .footer-col ul li {
        list-style: none;
    }
}





.info-list li::before {
    content: \"✔\";
    color: #002b5c;
    font-weight: bold;
}

