 .header_logo {
            padding: 5px 0;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-img img {
            height: 70px;
            /* control logo size */
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .hindi-title {
            font-size: 24px;
            color: #004a99;
            margin: 0;
            font-weight: 600;
            text-align: center;
        }

        .eng-title {
            font-size: 28px;
            color: #d58002;
            margin: 0;
            font-weight: 700;
            text-align: center;
        }

        .cont-p {
            font-size: 18px;
            color: #004f9c;
            margin: 0;
            text-align: center;
            font-weight: 600;
        }


        /* button3 */
        .lang-switch {
            position: relative;
            width: 75px;
            font-family: Arial, sans-serif;
        }

        /* Button */

        .lang-current {
            background: #076a9c73;
            /* strong blue */
            color: #fff;
            /* white text */
            padding: 2px 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-radius: 3px;
            font-weight: 600;
        }

        /* Dropdown */

        .lang-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #ffffff;
            /* white background */
            list-style: none;
            margin: 0;
            padding: 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            overflow: hidden;

            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;

            transition: all 0.3s ease;
        }

        /* Show dropdown */

        .lang-switch.active .lang-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            z-index: 99999;
        }

        /* Dropdown items */

        .lang-menu li {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
            color: #333333;
            /* dark grey for readability */
            font-size: 1rem;
            user-select: none;
        }

        .lang-menu li:last-child {
            border-bottom: none;
        }

        .lang-menu li:hover {
            background: #00b3d1;
            /* same blue as button */
            color: #ffffff;
            /* white text on hover */
        }

        /* Arrow animation */

        .lang-switch.active .arrow {
            transform: rotate(180deg);
        }

        .arrow {
            transition: transform 0.3s;
        }

        /* incees content  */
        .font-size-controls {
            display: inline-flex;
            gap: 0.5rem;
            font-family: Arial, sans-serif;
        }

        .font-btn {
            background-color: #0d8bbf;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0.4em 0.6em;
            font-weight: 700;
            cursor: pointer;
            font-size: 1.0rem;
            transition: background-color 0.3s, transform 0.2s;
            user-select: none;
        }

        .font-btn:hover {
            background-color: #076a9c;
            transform: scale(1.1);
        }

        .font-btn.active {
            background-color: #045a80;
            box-shadow: 0 0 8px #045a80;
        }

        /* color */
        .theme-toggle {
            display: flex;
        }

        #themeBtn {
            background-color: #0d8bbf;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0.4em 0.8em;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        #themeBtn {
            background: #0d8bbf;
            color: #fff;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
            transition: .3s;
        }

        #themeBtn:hover {
            background: #076a9c;
        }

        /* DARK MODE */

        body.dark-mode {
            background: #121212;
            color: #f5f5f5;
        }

        body.dark-mode .lang-menu {
            background: #1e1e1e;
        }

        body.dark-mode .lang-menu li {
            color: #f5f5f5;
        }

        /* toop heder */
        .top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #0d8bbf;
            color: #fff;
            padding: 0.2rem 2rem;
            font-family: Arial, sans-serif;
        }

        .social-icons a {
            color: #fff;
            margin-right: 1rem;
            font-size: 1.2rem;
            transition: color .3s;
        }

        .social-icons a:hover {
            color: #ffd700;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Language Switcher */
        .lang-switch {
            position: relative;
            width: 70px;
            cursor: pointer;
        }

        .lang-current {
            background: #076a9c;
            color: #fff;
            padding: 2px 5px;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .arrow {
            transition: .3s;
        }

        .lang-switch.active .arrow {
            transform: rotate(180deg);
        }

        .lang-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            color: #0d8bbf;
            list-style: none;
            padding: 0;
            margin: 0;
            border-radius: 4px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all .3s ease;
        }

        .lang-switch.active .lang-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .lang-menu li {
            padding: 10px;
            cursor: pointer;
        }

        .lang-menu li:hover {
            background: #0d8bbf;
            color: #fff;
            transition: .3s;
        }

        /* Accessibility Buttons */
        .font-size-controls {
            display: flex;
            gap: 0.5rem;
        }

        .font-btn {
            background-color: #0d8bbf;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 6px 10px;
            cursor: pointer;
            font-weight: 700;
            transition: .3s;
        }

        .font-btn:hover {
            background-color: #045a80;
            transform: scale(1.1);
        }

        .font-btn.active {
            background-color: #045a80;
            box-shadow: 0 0 6px #045a80;
        }

        /* Theme Toggle */
        

        #blackBtn {
            background: black;
            color: white;
            width: 20px;
            height: 20px;
           border-radius: 10px;
        }

        #whiteBtn {
            background: white;
            color: black;
              width: 20px;
            height: 20px;
           border-radius: 10px;
            /* border: 1px solid #ccc; */
        }

        .themeBtn {
            font-size: 18px;
            padding: 1px 10px;
            margin: 0 5px;
            border: none;
            cursor: pointer;
            background: transparent;
            transition: transform 0.2s;
        }

        .themeBtn.active {
            transform: scale(1.2);
        }

        .themeBtn:hover {
            background-color: #045a80;
            color: white;
        }

        body.dark-mode {
            background: #121212;
            color: #f5f5f5;
        }

        body.dark-mode .header_top {
            background: #121212;
            color: #f5f5f5;
        }

        body.dark-mode .hindi-title {
            color: #f5f5f5;
        }

        body.dark-mode .eng-title {
            color: #fff;
        }

        body.dark-mode .cont-p {
            color: #fff;
        }
       /* body.dark-mode h1, h2, h3, h4, h5, h6 {
        color:#fff;
       } */
        body.dark-mode h2 span{
              color:#fff;
        }
         body.dark-mode .single_service {
            background: #0000008c;
         }
         body.dark-mode .blog_area_text h2 a{
            color:#fff;
         }
         /* news css */
          /* news announcment */
            /* Existing styles + responsive code here */
            .ticker {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
                height: 50px;
                margin: 0 0px;
            }

            .title {
                width: 10%;
                text-align: center;
                background: #0d8bbf;
                position: relative;
                color: #fff;
            }

            .title:after {
                display:none;
                position: absolute;
                content: "";
                right: -15%;
                border-left: 22px solid #0d448d;
                border-top: 30px solid transparent;
                border-right: 21px solid transparent;
                border-bottom: 36px solid transparent;
                top: -8px;
            }

            .title h5 {
                font-size: 18px;
                margin: 10px;
                color: #fff;
            }
            .news-new{
                overflow: hidden;
                position: relative;
                width: 90%;
                background: #03a9f42b;
            }
            
            .news-track-new {
                display: flex;
                width: max-content;
                animation: scroll-left 20s linear infinite;
            }
            
            .news-track-new a {
                white-space: nowrap;
                margin-right: 40px;
                text-decoration: none;
                color: #000;
                font-size: 16px;
            }
            .news-track-new a:hover{
                color:#004a99;
                text-decoration: underline;
            }
            /* Duplicate content for seamless loop */
            .news-track-new .item {
                display: inline-block;
                padding:10px;
            }
            
            /* Animation */
            @keyframes scroll-left {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }
           
            /* ===== Responsive Styles ===== */
            @media (max-width: 767px) {
                .ticker {
                    height: auto;
                }

                .title {
                    width: 30%;
                    padding: 5px 0;
                }

                .title:after {
                    display: none;
                }

                .title h5 {
                    font-size: 16px;
                    margin: 5px 0;
                }

                .g_btn .s_btn2{
                 width:200px;
                }

               
            }
            /* imp link section */
               .achievement-section {
            background: linear-gradient(135deg, #f5f7fa00, #e6f0ff00);
            padding: 40px 0;
        }
        /* BOX */
        .info-box {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* TITLE */

        .box-title {
            background: #072a4b;
            color: #fff;
            padding: 14px 18px;
            font-size: 17px;
            font-weight: 600;
            margin: 0;
        }

        /* IMPORTANT LINKS */

        .important-links {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .important-links a {
            display: block;
            padding: 12px 15px;
            background: #d2edff;
            border-left: 4px solid #002c49;
            border-radius: 6px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: .3s;
        }

        .important-links a:hover {
            background: #e3f5ff;
            transform: translateX(6px);
        }

        /* NEWS MARQUEE */

        .news-marquee {
            height: 415px;
            overflow: hidden;
            padding: 15px;
            position: relative;
        }

        .news-track {
            display: flex;
            flex-direction: column;
            animation: scrollNews 12s linear infinite;
        }

        .news-item {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #f7fbff;
            /* border-left: 4px solid #0083b0; */
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            transition: .3s;
        }

        .news-item:hover {
            background: #e9f5ff;
            transform: translateX(5px);
        }

        /* Pause animation */

        .news-marquee:hover .news-track {
            animation-play-state: paused;
        }

        /* View All Button */

        .view-all {
            padding: 12px;
            text-align: center;
            border-top: 1px solid #eee;
        }

        .view-all a {
            background: #072a4b;
            color: #fff;
            padding: 8px 18px;
            text-decoration: none;
            border-radius: 20px;
            font-size: 14px;
            transition: .3s;
        }

        .view-all a:hover {
            background: #005f82;
        }

        /* Vertical scrolling animation */

        @keyframes scrollNews {

            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }

        }
          .director_img .left-img{
              height: 300px;
              object-fit: cover;
              padding-right: 20px;
          }
           .employee-card {
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: #f3f3f3;
            border: 1px solid #008ebc;
            margin-bottom: 10px;
        }

        .employee-img {
            width: 120px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }

        .employee-info h4 {
            margin-bottom: 5px;
        }

        .employee-info p {
            margin: 2px 0;
            color: #555;
        }

        .employee-intro {
            margin-top: 15px;
            color: #444;
        }
        .notification_table thead{
        background:#1b243e;
        color:#fff;
        }
        
        .notification_table td{
        vertical-align:middle;
        }
        
        .notification_table a{
        font-size:16px;
        /*padding:5px 12px;*/
            text-decoration: none;
            color: #051f46;
        }
        .form-control:focus {
        box-shadow: 0 0 0 .05rem #6092bf !important;
       }
        /*research council page / management page card  css*/
           .council_card{
            background:#fff;
            padding:20px;
            border-radius:6px;
            border-left:4px solid #1b243e;
            box-shadow:0 2px 8px rgba(0,0,0,0.08);
            transition:0.3s;
        }
        
        .council_card:hover{
            transform:translateY(-3px);
        }
        
        .council_card h5{
            font-size:18px;
            font-weight:600;
            margin-bottom:5px;
        }
        
        .designation{
            color:#18a5b8;
            font-weight:500;
            margin-bottom:3px;
        }
        
        .location{
            font-size:14px;
            color:#666;
        }
        /* farmer page card css*/
        .former_director_card {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 6px;
        border-left: 4px solid #1b243e;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .former_director_card:hover {
        transform: translateY(-3px);
    }

    .former_director_img img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: inherit;
        margin-right: 15px;
    }

    .former_director_info h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .former_director_year {
        margin-top: 5px;
        color: #18a5b8;
        font-weight: 500;
    }
        /* Responsive */

        @media(max-width:768px) {

            .news-marquee {
                height: 220px;
            }
                .employee-img {
                    margin-bottom: 10px;
                }

        }