body {
            margin: 0;
            font-family: "Poppins", sans-serif;
            background: linear-gradient(to bottom right, #e9f0ff, #f7faff);
        }

        .header {
            background: linear-gradient(to right, #DCEFEA, #1B5E20);
            display: flex;
            text-align: center;
            gap: 20px;
            padding: 10px;
            position: relative;

        }

        .emblem-left {
            position: absolute;
            top: 10%;
            left: 1%;
        }

        /* Left Logo */
        /* .emblem-left img {
            height: 80px;
            width: auto;
        } */

        /* Center Content */
        .header-content {
            text-align: center;
            flex: 1;
        }

        .header-content h2 {
        margin: 5px 0;
        font-size: 26px;
        font-weight: bold;
    }

        /* 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: 20px;
                padding: 5px;
            }
        }

        .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 10s 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%); }
        }

        .menu-bar {
            padding: 15px;
            text-align: center;
            width: 70%;
            margin: 0 auto; /* Centers the menu bar */
        }
            .menu-bar button {
                background: #1B5E20;
                color: white;
                border: none;
                padding: 10px 18px;
                margin: 5px;
                border-radius: 8px;
                font-size: 12px;
                cursor: pointer;
            }
                .menu-bar button:hover {
                    background: #003e80;
                }

        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title h2 {
            margin: 0 auto;
            text-align: center;
        }             

        .container2 {
            max-width: 600px;
            margin: 10px auto;
            padding: 25px;
            border-radius: 12px;
        }

        .container2 h2 {
            text-align: center;
            color: #333;
        }
        .container2 p {
            text-align: center;
            color: white;
        }
        
        /* फॉर्म विभाग (Form Section) */
        .form-section {
            /*display: none; /* फॉर्म सुरुवातीला लपवलेला */
            background-color: #f7f9fc;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }   
        label {
            display: block;
            margin: 12px 0 6px;
            font-size: 16px;
            color: #333;
        }
        input, textarea {
            width: 95%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 15px;
        }
        textarea {
            height: 120px;
            resize: vertical;
        }
        .container2 button {
            width: 100%;
            padding: 12px;
            margin-top: 18px;
            background: #007BFF;
            border: none;
            color: #fff;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
        }
        button:hover {
            background: #0056c7;
        }

        /* फुटर स्टायलिंग */
       footer {
            background: #2d2e2d;
            text-align: center;
            padding: 20px 0;
            color: #fff;
        }

        footer .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: 20px;
        }

        .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;
        }

        .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;
            }
        }
        