* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    background: #f2f5f3;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-align: center;
    padding: 30px 15px;
}

/* NAV */
nav {
    background: #1b5e20;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    font-weight: bold;
}

nav ul li a:hover {
    background: #2e7d32;
}

/* SLIDER */
.slider {
    max-width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    margin: 20px auto;
    border-radius: 12px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.slide.active {
    opacity: 1;
}

/* CONTENT */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

section {
    background: white;
    padding: 20px;
    margin-bottom: 0px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section h2 {
    color: #2e7d32;
    margin-bottom: 10px;
}

ul {
    padding-left: 20px;
}

/* FOOTER */
footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MOBILE */
@media (max-width: 600px) {
    .slider {
        height: 200px;
    }

    nav ul {
        flex-direction: column;
    }
}
.stylish-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: linear-gradient(135deg, #1b5e20, #66bb6a);
    color: white;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
}

/* GLASS EFFECT */
.stylish-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    pointer-events: none;
}

.header-left,
.header-right,
.header-center {
    position: relative;
    z-index: 1;
}

.header-left img,
.header-right img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* CENTER TEXT */
.header-center {
    text-align: center;
    flex: 1;
}

.header-center h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.header-center p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* MOBILE */
@media (max-width: 600px) {
    .stylish-header {
        padding: 15px;
    }

    .header-left img,
    .header-right img {
        width: 50px;
        height: 50px;
    }

    .header-center h1 {
        font-size: 1.2rem;
    }

    .header-center p {
        font-size: 0.8rem;
    }
}
/* ===== STYLISH NAV (OLD ACTIVE STYLE, REFINED LOOK) ===== */
.stylish-nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 8px 12px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    font-size: 0.95rem;
}

/* Tricolor decorative line */
.stylish-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

/* Links */
.stylish-nav a {
    text-decoration: none;
    color: #1b5e20;
    font-weight: 600;
    padding: 4px 0;
}

/* Hover (simple & clean) */
.stylish-nav a:hover {
    color: #2e7d32;
}

/* ✅ OLD ACTIVE STYLE (KEEP THIS) */
.stylish-nav a.active {
    border-bottom: 2px solid #1b5e20;
    color: #0d3f16;
}

/* MOBILE */
@media (max-width: 768px) {
    .stylish-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}


.stylish-card {
    max-width: 1100px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: clip;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

.info-card h2 {
    color: #1b5e20;
    margin-bottom: 10px;
}
.stylish-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1b5e20, #66bb6a);
    //border-top-left-radius: 25px;
   // border-top-right-radius: 25px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
.home-layout {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch; /* KEY */
}

/* LEFT CARD */
.intro-card {
    height: 100%;
}

/* RIGHT COLUMN */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%; /* KEY */
}

/* RIGHT SIDE CARDS */
.right-column .info-card {
    flex: 1; /* SPLITS HEIGHT EQUALLY */
}

/* MOBILE */
@media (max-width: 768px) {
    .home-layout {
        grid-template-columns: 1fr;
    }

    .right-column {
        height: auto;
    }
}
iframe {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
}

/* ================= HEADER ================= */
.stylish-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #1b5e20, #4caf50);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.stylish-header img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.header-center {
    text-align: center;
}

.header-center h1 {
    font-size: 1.8rem;
}

.header-center p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ================= NAV ================= */
.stylish-nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 8px 12px;

    /* ✅ NORMAL BACKGROUND */
   background: #f5f7f6 !important;


    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    font-size: 0.95rem;
}


.stylish-nav a {
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    color: #2e7d32;
    font-weight: 600;
    transition: 0.3s;
}

.stylish-nav a:hover {
    background: #2e7d32;
    color: white;
}

/* ================= CONTAINER ================= */
.container,
.home-layout {
    max-width: 1150px;
    margin: auto;
    padding: 20px;
}

/* ================= CARDS ================= */
.info-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.info-card h2 {
    color: #1b5e20;
    margin-bottom: 10px;
}

.info-card ul {
    padding-left: 18px;
}

.info-card li {
    margin-bottom: 6px;
}

/* ================= HOME PAGE GRID ================= */
.home-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-column .info-card {
    flex: 1;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

/* ================= MAP ================= */
iframe {
    width: 100%;
    border-radius: 15px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ================= FOOTER ================= */
.stylish-footer {
    text-align: center;
    padding: 15px;
    background: #1b5e20;
    color: white;
    margin-top: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .home-layout {
        grid-template-columns: 1fr;
    }

    .stylish-header img {
        width: 45px;
        height: 45px;
    }

    .header-center h1 {
        font-size: 1.3rem;
    }

    .stylish-nav {
        flex-wrap: wrap;
    }
}
/* ================= NOTICE TICKER ================= */
.notice-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1b5e20, #4caf50);
    color: white;
    padding: 10px 15px;
    overflow: hidden;
}

.notice-label {
    background: #ffeb3b;
    color: #1b5e20;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 12px;
    white-space: nowrap;
}

.notice-container {
    overflow: hidden;
    flex: 1;
}

.notice-track {
    display: inline-flex;
    gap: 50px;
    white-space: nowrap;
    animation: scrollNotice 18s linear infinite;
}

.notice-track span {
    font-weight: 500;
}

/* Pause on hover */
.notice-bar:hover .notice-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scrollNotice {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ================= CONNECT SECTION ================= */
.connect-section {
    margin-top: 30px;
    text-align: center;
}

.connect-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.connect-btn {
    text-decoration: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.connect-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Platform Colors */
.youtube {
    background: #ff0000;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.facebook {
    background: #1877f2;
}

.pdf {
    background: #455a64;
}
.home-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* LEFT */
.intro-card {
    height: 100%;
}

/* RIGHT */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Social buttons spacing */
.connect-section {
    text-align: center;
}
/* ===== FIX CONNECT SECTION ALIGNMENT ===== */
.connect-section {
    display: flex;
    flex-direction: column;
}

.connect-section h2 {
    margin-bottom: 12px;
}

/* Make content area behave like UL/text */
.connect-content {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Button grid spacing like list */
.connect-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Buttons same height feeling */
.connect-btn {
    padding: 12px;
    border-radius: 14px;
    font-size: 0.95rem;
    text-align: center;
}
/* ===== DOWNLOAD SECTION ===== */
.download-section {
    display: flex;
    flex-direction: column;
}

.download-content {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    text-decoration: none;
    padding: 12px;
    background: #455a64;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
/* ===== COMPACT ATTRACTIVE HEADER ===== */
.compact-header {
    position: relative; /* ✅ REQUIRED */
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #1b5e20, #43a047);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);	
}

/* Logos */
.compact-header img {
     width: 90px;      
    height: 90px;
    object-fit: contain;
}

/* Center text */
.header-center {
    text-align: center;
}

.header-center h1 {
     font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Decorative bottom line */
.compact-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

/* MOBILE */
@media (max-width: 768px) {
    .compact-header img {
        width: 42px;
        height: 42px;
    }

    .header-center h1 {
        font-size: 1.1rem;
    }
}
/* ===== FOOTER DECORATIVE LINE ===== */
.stylish-footer {
    position: relative; /* REQUIRED */
   background: linear-gradient(90deg, #1b5e20, #43a047);
    color: white;
    text-align: center;
    padding: 15px;
}

/* Decorative top line */
.stylish-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}
/* ===== STICKY FOOTER FIX (SAFE) ===== */
html, body {
    height: 100%;
}

/* Wrapper takes full height */
.site-wrapper {
    min-height: calc(100vh - 60px); /* footer height */
}

/* Main content expands naturally */
.main-content {
    padding-bottom: 20px;
}
input[type="file"] {
    padding: 8px;
    background: #f5f7f6;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.main-info-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.main-info-photos img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .main-info-photos {
        grid-template-columns: 1fr;
    }

    .main-info-photos img {
        height: 180px;
    }
}
/* ===== PERSON IMAGES WITH NAME ===== */
.main-info-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.person-card {
    text-align: center;
}

.person-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.person-card span {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #1b5e20;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .main-info-photos {
        grid-template-columns: 1fr;
    }

    .person-card img {
        height: 200px;
    }
}
.section-title {
    text-align: center;
    color: #1b5e20;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.person-card {
    text-align: center;
}

.person-role {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #2e7d32;
    font-weight: 600;
}

.person-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b5e20;
}
/* ===== PERSON CARD UI MATCH FIX ===== */

.person-card {
    text-align: center;
}

/* Role = small muted text (like info lists) */
.person-role {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2e7d32; /* same green as headings */
    opacity: 0.85;
}

/* Name = primary text (like card content) */
.person-name {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b5e20;
    line-height: 1.3;
}
.person-card {
    padding-bottom: 4px;
}
/* Person section should grow naturally */
.people-section {
    flex: unset !important;
    overflow: hidden;
}
/* ===== PERSON ROLE vs NAME VISUAL DIFFERENCE ===== */

.person-role {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;          /* smaller */
    font-weight: 500;            /* lighter */
    text-transform: uppercase;   /* optional but helps distinction */
    letter-spacing: 0.6px;
    color: #2e7d32;
    opacity: 0.8;
}

.person-name {
    display: block;
    margin-top: 4px;
    font-size: 1rem;             /* bigger */
    font-weight: 700;            /* bold */
    color: #1b5e20;
    line-height: 1.3;
}
.person-name {
    border-bottom: 2px solid rgba(27,94,32,0.15);
    display: inline-block;
    padding-bottom: 2px;
}
/* ===== FINAL PERSON CARD FIX (NO CONFLICT) ===== */

/* 1. Person card must behave like vertical block */
.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 2. ROLE = secondary text */
.person-card .person-role {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2e7d32;
    letter-spacing: 0.5px;
}

/* 3. NAME = primary text */
.person-card .person-name {
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b5e20;
    line-height: 1.3;
}

/* ===== GALLERY IMAGE WITH SUBTITLE ===== */

.gallery-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Subtitle at bottom */
.gallery-caption {
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: #1b5e20;
    background: #f5f7f6;
    border-top: 1px solid #e0e0e0;
}
.gallery-item:hover img {
    transform: scale(1.05);
    transition: transform 0.4s;
}

/* ================= NOTICE BAR ================= */
/* ===== NOTICE BAR (30px FIXED HEIGHT) ===== */
.notice-bar {
    display: flex;
    align-items: center;
    height: 30px;              /* ✅ EXACT HEIGHT */
    padding: 0 10px;

    background: #fff8e1;       /* soft cream */
    color: #1b5e20;

    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

/* Label */
.notice-label {
    height: 20px;
    display: flex;
    align-items: center;

    padding: 0 10px;
    margin-right: 10px;

    background: linear-gradient(90deg, #ff9933, #ffcc80);
    color: #5d3700;

    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 12px;
    white-space: nowrap;
}

/* Text container */
.notice-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Moving text */
.notice-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;

    white-space: nowrap;
    line-height: 1;

    font-size: 0.75rem;
    font-weight: 500;

    animation: noticeScroll 35s linear infinite;
}

/* Pause on hover */
.notice-bar:hover .notice-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes noticeScroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ===== HEADER LOGO WITH TEXT ===== */
.header-left,
.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
	padding: 0 50px;
}

/* Text below logo */
.logo-text {
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

/* Mobile fine-tune */
@media (max-width: 768px) {
    .logo-text {
        font-size: 0.55rem;
    }
}
/* ===== HEADER CENTER – GRAMPANCHAYAT IDENTITY ===== */

.header-center {
    text-align: center;
    line-height: 1.2;
}

/* ===== GRAMPANCHAYAT NAME – STYLISH ===== */
.gp-name {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.6px;

    color: #ffffff;              /* pure white */
    text-shadow: 0 2px 3px rgba(0,0,0,0.4);

    margin-bottom: 4px;
}



/* Taluka / District / Year */
.gp-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 900;
   
    margin-bottom: 10px;
}

.gp-meta span {
    white-space: nowrap;
}

/* Slogan */
.gp-slogan {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
    .gp-name {
        font-size: 1.05rem;
    }

    .gp-meta {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.6rem;
    }

    .gp-slogan {
        font-size: 0.65rem;
    }
}
/* ===== COMPLAINT FORM ===== */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b5e20;
}

input, textarea {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

.submit-btn {
    margin-top: 10px;
    padding: 12px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}

.submit-btn:hover {
    background: #2e7d32;
}
.intro-card p {
    text-indent: 2em;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .intro-card p {
        text-indent: 1.5em;
    }
}
.slider {
    height: 460px;
}

/* ===== GOVERNMENT PDF LIST STYLE ===== */

.gov-pdf-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.gov-pdf-list li {
    border-bottom: 1px solid #e0e0e0;
}

.gov-pdf-list li:last-child {
    border-bottom: none;
}

.gov-pdf-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    text-decoration: none;
    color: #1b5e20;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s;
}

.gov-pdf-list a:hover {
    background: #f1f8f4;
}

.pdf-ico {
    font-size: 1.1rem;
    min-width: 22px;
}

.arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: #2e7d32;
}
.download-section {
    max-width: 1114px;
    margin: 0px auto;
}
.gov-download {
    border: 1px solid #c8e6c9;
   
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.download-section {
    display: block !important;
}
/* PDF SECTION GRID */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 15px;
}

/* COLUMN */
.pdf-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* PDF ITEM */
.pdf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f7faf7;
    border-left: 4px solid #2e7d32;
    border-radius: 8px;
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* ICON */
.pdf-ico {
    font-size: 22px;
}

/* TEXT */
.pdf-text {
    flex: 1;
    line-height: 1.4;
}

/* HOVER EFFECT */
.pdf-item:hover {
    background: #e8f5e9;
    transform: translateX(4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .pdf-grid {
        grid-template-columns: 1fr;
    }
}


.compact-header {
    font-family: "Noto Sans Devanagari";
    letter-spacing: 0.4px;
}

.compact-header .gp-name,
.compact-header .gp-meta,
.compact-header .gp-slogan {
    font-family: "Noto Sans Devanagari", "Hind", "Mangal", sans-serif;
}

.compact-header .gp-name {
    color: #ffffff;                 /* pure white */
    text-shadow: 0 2px 3px rgba(0,0,0,0.45);
}
.compact-header .gp-meta span {
    color: #ffeb3b;                 /* soft yellow */
}
.compact-header .gp-slogan {
    color: #c8e6c9;                 /* light green */
}

.compact-header {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.compact-header .gp-name {
    color: #ffd54f;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}


/* MAIN TITLE */
.compact-header .gp-name {
    color: #ffd54f; /* golden yellow */
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.compact-header .gp-meta span {
    color: #ffecb3; /* light gold */
}

.compact-header .gp-slogan {
    color: #fffde7; /* ivory */
}
@media (max-width: 768px) {
    .compact-header .gp-meta span,
    .compact-header .gp-slogan {
        opacity: 0.95;
    }
}
.header-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.header-link * {
    cursor: pointer;
}
/* Image Popup Background */
.img-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

/* Popup Image */
.img-popup img {
    max-width: 95%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Cursor */
.gallery-item img {
    cursor: zoom-in;
}
.img-popup {
    z-index: 99999;   /* header + nav से ऊपर */
}
.gallery-title {
    margin: 25px 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f5d3b;
    border-left: 5px solid #4caf50;
    padding-left: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 14px;
}

/* Image style */
.gallery-grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    cursor: zoom-in;
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Gallery Card */
.gallery-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    cursor: zoom-in;
}

/* Caption */
.gallery-item figcaption {
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background: #f3f6f4;
    color: #2f5d3b;
}

/* Hover */
.gallery-item:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Gallery Section Header */
.gallery-header {
    margin: 10px 0 16px;
    padding-bottom: 6px;
    border-bottom: 2px solid #d6e4da;
}

/* Heading text */
.gallery-header h3 {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f5e36;
    margin: 0;
    padding-left: 12px;
    position: relative;
}

/* Left accent bar */
.gallery-header h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 70%;
    background: #2f7a3e;
    border-radius: 4px;
}
.gallery-header {
    border-bottom: 2px solid #dbe4f1;
}

.gallery-header h3 {
    color: #1f3c5b;
}

.gallery-header h3::before {
    background: #2a5d9f;
}

/* Slider dots container */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

/* Each dot */
.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd8dc;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active dot */
.slider-dots span.active {
  background: #2e7d32;
  transform: scale(1.3);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd8dc;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots span.active {
  background: #2e7d32;
  transform: scale(1.3);
}
.map-wrapper {
    position: relative;
}

.map-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    max-width: 260px;
    font-family: "Noto Sans Devanagari", sans-serif;
}

.map-info h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #0b4f6c;
}

.map-info p {
    font-size: 14px;
    margin: 4px 0;
}

.map-info a {
    display: inline-block;
    margin-top: 8px;
    background: #0b4f6c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.map-info a:hover {
    background: #08364a;
}

.contact-card {
    background: #fdfefe;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    font-size: 15px;
}

.contact-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.contact-list li:last-child {
    border-bottom: none;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* नाविन्यपूर्ण उपक्रम खालच्या बाजूला full width */
.full-width {
    grid-column: 1 / -1;
}

.full-width h2 {
    text-align: center;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}





