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%); }
        }
        
        .title-box {
            text-align: center;
            background: #24647e;
            color: white;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 25px;
            max-width: 960px;
            margin: auto;
            padding: 20px 0;
            gap: 40;
            padding: 35px 50px;
            margin-top: 20px;
        }

            .title-box h2 {
                margin: 0;
                font-size: 32px;
            }

        @keyframes pulse {
            0% { box-shadow: 0 0 12px rgba(255, 165, 94, 0.6);}
            100% { box-shadow: 0 0 25px rgba(255, 165, 94, 1);}
        }

        main {
            max-width: 960px;
            margin: 20px auto 20px;
            background: #fff;
            padding: 45px 50px;
            border-radius: 22px;
            box-shadow: 0 20px 60px rgba(77, 76, 76, 0.4);
            animation: fadeInUp 1.3s ease forwards;
            opacity: 0;
        }

        p.intro {
            font-size: 19px;
            line-height: 1.9;
            margin-bottom: 40px;
            color: #404040;
        }

        .info-box {
            background: #fff4e6;
            border-left: 7px solid #ff7b43;
            padding: 22px 28px;
            margin-bottom: 45px;
            font-size: 17px;
            color: #d35400;
            font-weight: 600;
            border-radius: 10px;
            box-shadow: 3px 6px 18px rgba(255, 123, 67, 0.15);
        }

        .responsibilities {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
            gap: 32px;
        }

        .card {
            background: #fff7f0;
            border-radius: 24px;
            padding: 30px 34px;
            box-shadow:
            5px 5px 15px rgba(255, 150, 80, 0.25),
            -5px -5px 15px #fff;
            transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.45s ease;
            cursor: default;
            user-select: none;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -60%;
            width: 180%;
            height: 160%;
            background: radial-gradient(circle at center, #ff9b57 0%, transparent 80%);
            opacity: 0.18;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .card:hover::before {
            opacity: 0.35;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow:
            8px 12px 40px rgba(255, 140, 60, 0.5),
            -8px -8px 25px #fff;
            border-color: #ff964f;
        }

        .card h3 {
            margin-top: 0;
            font-weight: 700;
            color: #bf3e00;
            font-size: 24px;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .card p {
            font-size: 17px;
            line-height: 1.75;
            color: #3a3a3a;
            position: relative;
            z-index: 1;
        }

        .more-info {
            margin-top: 55px;
            padding: 22px 28px;
            background: #ffe9d6;
            border-radius: 15px;
            border-left: 8px solid #ff7b43;
            font-size: 17px;
            color: #b24300;
            font-weight: 600;
            box-shadow: 4px 8px 20px rgba(255, 123, 67, 0.2);
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(35px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        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;
            }
        }