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%); }
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            margin-top: 20px;
        }

        .head {
            background: linear-gradient(to right, #075d85, #DCEFEA);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 15px;
        }

        .head h2 {
            color: #ffffff;
            margin: 20px;
            font-size: 2.2em;
            font-weight: 700;
        }   

        /*(Control Button) */
        .control-btn {
            background-color: #2ecc71;
            color: white;
            padding: 10px 18px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s;
            margin: 20px;
        }

        .control-btn:hover {
            background-color: #27ae60;
        }

        /* (Form Section) */
        .form-section {
            
            background-color: #f7f9fc;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #ddd;
        }
        
        .form-row { display: flex; gap: 20px; margin-bottom: 15px; }
        .form-group { flex: 1; display: flex; flex-direction: column; }
        .form-group label { font-weight: 600; margin-bottom: 5px; color: #2c3e50; }
        .form-group input, .form-group textarea { padding: 12px; border: 1px solid #bdc3c7; border-radius: 4px; font-size: 1em; width: 100%; box-sizing: border-box; }
        .form-group input:focus, .form-group textarea:focus { border-color: #3498db; box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); outline: none; }
        .form-group textarea { resize: vertical; min-height: 100px; }

        .form-actions { text-align: right; margin-top: 20px; }
        .form-btn { padding: 10px 20px; margin-left: 10px; border: none; border-radius: 5px; font-size: 1em; cursor: pointer; transition: background-color 0.3s; }
        .submit-btn { background-color: #3498db; color: white; }
        .submit-btn:hover { background-color: #2980b9; }
        .cancel-btn { background-color: #e74c3c; color: white; }
        .cancel-btn:hover { background-color: #c0392b; }

        .meeting-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 30px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .meeting-table th, .meeting-table td {
            padding: 14px 10px;
            text-align: left;
        }

        .meeting-table th {
            background-color: #34495e;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85em;
        }

        .meeting-table tbody tr:nth-child(even) {
            background-color: #f0f4f7;
        }

        .meeting-table tbody tr:hover {
            background-color: #e5e9ec;
        }

        .action-btn {
            padding: 6px 10px;
            margin-right: 5px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.85em;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .action-btn:hover {
            opacity: 0.9;
        }

        .view-btn {
            background-color: #f39c12;
            color: white;
        }

        .delete-btn {
            background-color: #e74c3c;
            color: white;
        }

        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;
            }
        }