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%); }
        }
        
        .card-container {
            max-width: 500px;
            width: 90%;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            margin: 0 auto;
            margin-top: 20px;
        }

        .head {
            text-align: center;
            margin-bottom: 20px;
        }

        .head h2 {
            color: #c0392b;
            margin: 0 0 10px;
        }

        /* (Form Section) */
        .form-section {
            /*display: none; */
            background-color: #f7f9fc;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #ddd;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input {
            width: 95%;
            padding: 10px;
            border: 2px solid #bdc3c7;
            border-radius: 6px;
        }

        .submit-btn {
            width: 100%;
            background: #c0392b;
            color: #ffffff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1em;
        }

        table {
            width: 95%;
            max-width: 900px;
            border-collapse: collapse;
            margin-top: 25px;
            background: #fff;
            margin: 20px auto;
        }

        table, th, td {
            border: 1px solid #ccc;
        }

        th {
            background: #c0392b;
            color: #fff;
            padding: 10px;
        }

        td {
            padding: 10px;
            text-align: center;
        }

        /* Action Buttons */
        button {
            padding: 6px 10px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        .edit-btn {
            background: #f4b400;
        }

        .delete-btn {
            background: #e03131;
            color: white;
        }

        @media(max-width:600px){
            th, td {
                font-size: 0.75rem;
            }
        }

        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;
        }

        .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;
            }
        }