body {
            margin: 0;
            font-family: "Poppins", sans-serif;
            background: linear-gradient(to bottom right, #e9f0ff, #f7faff);
        }

        .call {
            color: black;
            font-weight: bold;
            border-bottom: 2px solid black;
            text-align: right;
            background: linear-gradient(to right, #003e80, #007bff);
            padding: 5px;
        }

        .header {
            background: linear-gradient(to right, #DCEFEA, #4bb0df);
            display: flex;
            text-align: center;
            gap: 20px;
            padding: 10px;
            position: relative;
        }

        .emblem-left {
            position: absolute;
            top: 10%; 
            left: 1%;
        }

        /* Center Content */
        .header-content {
            text-align: center;
            flex: 1;
        }

        .header-content h2 {
            margin: 5px 0;
            font-size: 26px;
            font-weight: bold;
            color: #000;
        }

        /* Default (Desktop View) */
        .image-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            position: absolute;
            top: 20px;
            right: 50px;
        }

        .icon-img {
            height: 90px;
            border-radius: 8px;
        }

        /* Tablet View */
        @media (max-width: 991px) {
            .icon-img {
                height: 70px;
            }

            .image-container {
                top: 15px;
                right: 10px;
            }
        }

        /* Mobile View */
        @media (max-width: 600px) {
            .image-container {
                position: static; /* remove absolute for better responsiveness */
                justify-content: center;
                margin-top: 5px;
            }

            .icon-img {
                height: 45px; /* reduce size on mobile */
            }
        }

        /* Very small screens */
        @media (max-width: 400px) {
            .icon-img {
                height: 35px;
            }
        }


        /* ===== RESPONSIVE BREAKPOINTS ===== */

        /* Tablets */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .emblem-left img {
                height: 70px;
            }

            .header-content h2 {
                font-size: 22px;
            }
        }

        /* Smart Phones */
        @media (max-width: 480px) {
            .emblem-left img {
                height: 60px;
            }

            .header-content h2 {
                font-size: 15px;
                padding: 5px;
            }
        }

        .menu-bar {
            padding: 15px;
            text-align: center;
            width: 50%;
            margin: 0 auto; /* Centers the menu bar */
            display: flex;
        }
            .menu-bar button {
                background: #24647e;
                color: white;
                border: none;
                padding: 10px 18px;
                margin: 5px;
                border-radius: 8px;
                font-size: 12px;
                cursor: pointer;
                box-shadow:0 8px 20px rgba(0,0,0,0.5);
            }

                .menu-bar button:hover {
                    background: #003e80;
                }
                
        /* Mobile Responsive Menu */
        @media (max-width: 768px) {

            .menu-bar {
                width: 100%;          /* Full width on mobile */
                padding: 5px;
            }

            .menu-bar button {
                width: 20%;          /* One button per row */
                font-size: 8px;      /* Bigger text for mobile */
                padding: 8px 0;
                border-radius: 10px;
                margin: 3px auto;
            }
        }

        /* Dropdown */
        .dropdown{
            position:relative;
        }

        .dropdown-content{
            display:none;
            position:absolute;
            top:40px;
            left:0;
            background:#24647e;
            min-width:180px;
            box-shadow:0 8px 20px rgba(0,0,0,0.2);
            border-radius:8px;
            overflow:hidden;
            z-index:100;
        }

        .dropdown-content a{
            display:block;
            padding:10px 14px;
            text-decoration:none;
            color:white;
            font-size:14px;
            box-shadow:0 8px 20px rgba(0,0,0,0.2);
        }

        .dropdown-content a:hover{
            background:#003e80;
        }

        /* Hover open */
        .dropdown:hover .dropdown-content{
            display:block;
        }

        /* 📱 Mobile Responsive */
        @media(max-width:768px){
            .menu-bar{
                flex-direction:column;
            }
            .dropdown-content{
                position:static;
                box-shadow:none;
            }
        }

        .slider {
            font-family: "Poppins", sans-serif;
            white-space: nowrap;
            font-size: 24px;
            font-weight: 600;
            padding: 0 15px;
            animation: scroll-left 5m linear infinite;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Smooth text glow */
        }

        .scroll-left {
            width: 100%;
            height: 60px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;

            background: linear-gradient(to right, #003e80, #007bff); /* Modern gradient */
            color: #fff; /* Text color white */
            border: none;
            border-radius: 0; 
            box-shadow: 0 4px 20px rgba(0,0,0,0.3); /* Soft shadow */
        }

        .scroll-left p {
            position: absolute;
            white-space: nowrap;
            font-size: 22px;
            font-weight: 600;
            padding: 0 15px;
            animation: scroll-left 5m linear infinite;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Smooth text glow */
        }

        /* Hover Ã¢â€ â€™ pause */
        .scroll-left:hover p {
            animation-play-state: paused;
        }

        /* Keyframes */
        @keyframes scroll-left {
            0%   { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        header {
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 3px solid  #0066cc;
            margin-bottom: 30px;
        }

        header h1 {
            color: #24647e;;
            font-size: 2.5em;
            margin-bottom: 5px;
        }

        header h2 {
            color: #24647e;
            padding-bottom: 8px;
            margin-top: 30px;
            font-size: 1.8em;
        }
        
        header p{
            text-align: center;
            color: #24647e;
        }

        p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .info-section {
            padding: 15px;
            background-color: #f9fff9;
            border-left: 5px solid  #24647e;
            margin-top: 20px;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .info-table th, .info-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
            text-align: left;
        }

        .info-table th {
            background-color: #e8f5e9;
            color: #24647e;; 
            width: 50%; 
            font-weight: bold;
        }

        .history-text {
            white-space: pre-wrap; 
        }

        .about-container {
            width: 90%;
            max-width: 1000px;
            margin: auto;
            padding: 20px 0;
            
        }

        .section-title {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 3px solid  #0066cc;
            margin-bottom: 30px;
        }

            .section-title h2 {
                font-size: 32px;
                color: #24647e;
                margin: 0;
            }

        .vision-box, .content-box {
            background: white;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        h3 {
            color: #24647e;
            margin-top: 0;
        }

        ul {
            margin: 10px 0 0 20px;
        }

        .sarpanch-box {
            background: #e3f2fd;
            padding: 20px;
            border-left: 5px solid #24647e;
            margin-bottom: 25px;
            border-radius: 6px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .highlight {
            font-weight: bold;
            color: #0d47a1;
        }

 
        footer {
            background: #2d2e2d;
            text-align: center;
            padding: 30px 0;
            color: #fff;
            margin-top: 0px;
        }
        
        .gp {
            text-align: center;
            color: #fff;
            font-size: 12px;
            padding-top: 25px; /* adjust */
        }

        /* Mobile View */
        @media (max-width: 600px) {
            .footer-section h3 {
                font-size: 18px;
            }

            .footer-map iframe {
                height: 200px;
                width: auto;
            }
        }

        .social {
            margin-top: 0px;
        }

        .social img {
            width: 20px;
            margin: 0 5px;
        }

        .social a:hover img {
            transform: scale(1.12);
            box-shadow: 0 0 8px rgba(0,0,0,0.2);
        }

        footer .links {
            margin: 10px 0;
        }

        .issues {
            font-size: small;
            padding: 10px;
        }

        .gov-portal a {
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gov-portal img {
            height: 50px;
            width: auto;
            object-fit: contain;
            border-radius: 8px;
            margin-top: 10px;
        }

        .gov-portal a:hover img {
            transform: scale(1.12);
            box-shadow: 0 0 8px rgba(0,0,0,0.2);
        }

        @media(max-width: 700px) {  
            footer {
                font-size: 12px;
            }

            .gov-portal img {
                height: 30px;
                width: auto;
                object-fit: contain;
                border-radius: 8px;
                margin-top: 10px;
            }
        }