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%); }
        }
        
        /* ===============================
        SIMPLE IMAGE SLIDER (SAFE CSS)
        =============================== */

        #simpleSlider {
            width: 70%;
            max-width: 100%;
            position: relative;
            overflow: hidden;
            background: #fff;
            text-align: center;
            margin: 0 auto;
            margin-top: 0;
            border-radius: 20px;
        }

        #simpleSlider img {
            width: 100%;
            /* height: auto; */
            /*display: none;*/          /* JS will control visibility */
            height: 600px;
            object-fit: cover;
        }

        /* Navigation Buttons */
        #simpleSlider .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.6);
            color: #fff;
            border: none;
            font-size: 26px;
            padding: 10px 14px;
            cursor: pointer;
            z-index: 10;
        }

        #simpleSlider .prev {
            left: 15px;
        }

        #simpleSlider .next {
            right: 15px;
        }

        #simpleSlider .slider-btn:hover {
            background: rgba(0,0,0,0.8);
        }

        /* Caption overlay */
        .slide-caption {
            position: absolute;
            bottom: 40%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;

            backdrop-filter: blur(0.5px);
            -webkit-backdrop-filter: blur(6px);

            padding: 15px 25px;
            border-radius: 8px;
            color: #ffffff;
            border: 2px solid black;
        }

        /* Heading */
        .slide-caption h2 {
            margin: 0;
            font-size: 40px;
            font-weight: bold;
            text-shadow: 1px 1px 5px #000;
        }

        /* Sub text */
        .slide-caption p {
            margin-top: 6px;
            font-size: 18px;
            text-shadow: 1px 1px 4px #000;
        }

        .slide-caption a {
            margin-top: 6px;
            font-size: 16px;
            text-shadow: 1px 1px 4px #000;
        }

        .btn-link {
            display: inline-block;
            padding: 8px 16px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }

        /* Tablets */
        @media (max-width: 768px) {
            #simpleSlider img {
                height: 300px;
            }

            #simpleSlider .slider-btn {
                font-size: 22px;
                padding: 8px 12px;
            }
        }

        @media (max-width: 480px) {
            #simpleSlider {
                width: 100vw;      /* full viewport width */
            }

            #simpleSlider img {
                width: 100%;
                height: 220px;     /* keep image ratio */
                display: block;
            }

            #simpleSlider .slider-btn {
                font-size: 15px;
                padding: 6px 10px;
            }
            
            .slide-caption {
                bottom: 30%;
                padding: 5px 25px;
            }

            .slide-caption h2 {
                font-size: 14px;
            }

            .slide-caption p {
                font-size: 10px;
            }

            .slide-caption a {
                font-size: 8px;
            }
        }

        /* Table Title */
        .title {
            text-align: center;
            font-size: 32px;
            margin: 25px auto;
            font-weight: bold;
            color:rgb(56, 55, 55);
            text-transform: uppercase;
            padding: 20px;
            margin-top: -10px;
        }

        /* Table Container */
        table {
            width: 95%;
            max-width: 1000px;
            margin: 20px auto;
            border-collapse: collapse;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.5);
            animation: fadeIn 0.7s ease-in-out;
            border-spacing: 0 12px;
        }

        /* Table Header */
        table th {
            background: linear-gradient(to right, #2aafec, #76c2e6);
            color: #fff !important;
            padding: 14px 10px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
            /* border: 1px solid black; */
        }

        /* Table Body */
        table td {
            padding: 12px;
            border-bottom: 1px solid #e0e0e0;
            font-size: 16px;
            font-weight: 600;
            /* border: 1px solid; */
        }

        /* Even Row */
        table tr:nth-child(even) {
            background: rgba(180, 210, 255, 0.25);
        }

        /* Odd Row */
        table tr:nth-child(odd) {
            background: rgba(230, 240, 255, 0.35);
        }

        /* Hover Effect */
        table tr:hover {
            background: #d9e6fb;
            transform: scale(1.01);
            transition: 0.3s ease-in-out;
        }

        /* Mobile Scroll Support */
        @media(max-width: 700px) {
            .title {
                font-size: 15px;
            }
            table {
                display: block;
                white-space: nowrap;
            }

            th, td {
                font-size: 14px;
                width: 10%;
                max-width: 1000px;             
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0px); }
        }

        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;
            }
        }