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; 
}
header h1 { margin: 0; font-size: 32px; }
header h3 { margin: 0; font-weight: normal; font-size: 18px; }

/* Navbar */
.navbar { background: #003f7f; padding: 12px 20px; display: flex; justify-content:center; align-items:center; }
.nav-links { display: flex; gap: 20px; }
.menu-btn { display: none; font-size: 30px; background: none; border: none; color: white; cursor: pointer; }

.nav-links a {
    /* color: #ff9933; */
     color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    padding: 8px 5px;   /* FIXED HEIGHT */
    border-radius: 6px;  /* for smooth active */
}

/* Mobile */
@media (max-width: 900px) {
    .menu-btn { display: block; }
    .nav-links { display: none; flex-direction: column; width: 100%; background: #003f7f; text-align: center; padding: 10px 0; }
    .nav-links.show { display: flex; }
    .nav-links a { padding: 10px 0; }
}

/* Hero */
.hero {
    height: 600px; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../photo/gpimage.jpg') center/cover no-repeat; 
    display: flex; justify-content: center; align-items: end; 
    color: #23ffc0; text-align: end;
}
.hero h2 { font-size: 45px; margin: 0; }

/* Section */
.section { width: 90%; margin: 35px auto; background: white; padding: 20px; border-radius: 8px; border-left: 6px solid #003f7f; box-shadow: 0 2px 8px #ccc; }
.section h2 { margin-top: 0; color: #003f7f; border-bottom: 2px solid #ff9933; padding-bottom: 6px; }

/* 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: 200px; 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: 6px solid #002b5c; /* blue stripe */
    border-top: 4px 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: 90%;
}


/* 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 */
}

/* Photo Scroller Section */
.photo-scroller h2 {
    font-size: 28px;
    color: #002b5c;
    border-left: 6px solid #ff9933;
    padding-left: 10px;
    margin-bottom: 15px;
}

.photo-scroller {
    width: 96%;
    margin: 30px auto;
    padding: 0 20px;
    overflow: hidden; /* hide extra content */
}

.scroll-container {
    display: flex;
    gap: 25px;
    padding: 15px 20px;
    overflow-x: hidden;   
    scroll-behavior: smooth; 
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container img {
    height: 260px;
    width: 380px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.scroll-container img:hover {
    transform: scale(1.06);
}
.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;
}


.services-section {
    background: #f7f9fb;
}

.services-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: auto;
}

.service-item {
    text-align: center;
}

.service-item p {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* ---------- ICON CIRCLES ---------- */
.icon {
    font-size: 32px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/* COLORS */
.yellow { background: #ffe9a9; color: #f7b500; }
.pink { background: #ffd6d9; color: #d14f4f; }
.green { background: #d6f1df; color: #228b22; }
.gray { background: #e7e6e6; color: #707070; }
.blue { background: #d3e8ff; color: #007bff; }
.lightgreen { background: #e2f4e8; color: #3e7f4b; }
.gold { background: #ffefbd; color: #d6a420; }
.sky { background: #d7f4ff; color: #0b9ed9; }
.teal { background: #d9f2ea; color: #0f7f66; }
.lightyellow { background: #fff1c7; color: #e0a100; }
.red { background: #ffd6d6; color: #d93333; }
.gray2 { background: #e1e5e8; color: #555; }
.blue2 { background: #d8e4ff; color: #3366ff; }
.mint { background: #def6ef; color: #1d8f73; }
.gray3 { background: #e2e2e2; color: #555; }
.petrol { background: #ffdede; color: #d9534f; }



/* 🔹 Top Header with Logos */
.top-logo-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: white;
    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;
    }
}

/* Background Section */
.info-section {
    background: #112b80;
    /* padding: 60px 20px;
    text-align: center;
border-radius: 12px;
    border-left: 30px solid white;
    border-right: 30px solid white;
    border-top: 4px solid white;
    box-shadow: 10px 3px 10px rgba(0, 0, 0, 0.08); */


    padding: 25px 35px;
    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: 25px auto;
    width: 90%;
}


/* Section Title */
.info-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

/* 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;
}

/* Card Heading Text */
.card .title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Card Value Text */
.card .value {
    font-size: 28px;
    color: #4b5563; /* subtle gray */
    font-weight: 600;
    display: block;
    margin-top: 6px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .info-section h2 {
        font-size: 30px;
    }
    .card {
        width: 90%;
    }
}





.zp-footer {
    background: #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: #003c70;
}
.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: #003c70;
    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;
}

