 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0b3d91;
            --primary-dark: #072a6b;
            --secondary: #f39c12;
            --secondary-dark: #e67e22;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --border: #e0e0e0;
            --success: #27ae60;
            --warning: #f1c40f;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light-bg);
            min-height: 100vh;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        body.hindi {
            font-family: 'Segoe UI', 'Nirmala UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            background: var(--white);
            min-height: 100vh;
            padding-bottom: 80px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding-bottom: 11px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-md);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding:5px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* image बाहर न निकले */
        }
          .logo-img img {
            width: 90%;
            /* image को circle में fit करने के लिए */
            height: 90%;
            object-fit: contain;
            /* proportion safe रहे */
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-text h1 {
            font-size: 18px;
            font-weight: 700;
        }

        .logo-text p {
            font-size: 11px;
            opacity: 0.9;
        }

        .header-icons {
            display: flex;
            gap: 0px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .icon-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .language-selector {
            position: relative;
        }

        .language-btn {
            background: none;
            border: none;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .language-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 10px 0;
            min-width: 120px;
            display: none;
            z-index: 101;
            margin-top: 5px;
        }

        .language-dropdown.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .language-option {
            padding: 8px 15px;
            cursor: pointer;
            transition: 0.3s;
            color: var(--text-dark);
        }

        .language-option:hover {
            background: var(--light-bg);
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 45px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text-dark);
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        /* Marquee */
        .marquee-container {
            background: var(--secondary);
            color: var(--white);
            padding: 10px 0;
            overflow: hidden;
        }

        .marquee-content {
            white-space: nowrap;
            animation: marquee 30s linear infinite;
            font-weight: 500;
            font-size: 14px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* Page Title */
        .page-title {
            padding: 20px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            margin-bottom: 20px;
        }

        .page-title h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .page-title p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Updates Slider */
        .updates-slider {
            padding: 20px;
            overflow: hidden;
        }

        .slider-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider-title-icon {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            width: 100%;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 400%;
        }

        .update-card {
            min-width: 25%;
            width: 25%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 15px;
            padding: 25px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .update-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .update-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .update-card:hover::before {
            top: -60%;
            right: -60%;
        }

        .update-badge {
            display: inline-block;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        .update-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            line-height: 1.4;
        }

        .update-desc {
            font-size: 14px;
            opacity: 0.95;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            line-height: 1.5;
        }

        .update-date {
            font-size: 12px;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 5px;
            position: relative;
            z-index: 1;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Filter Section */
        .filter-section {
            padding: 0 20px 20px;
        }

        .filter-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .filter-chips {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: thin;
            padding-bottom: 10px;
        }

        .filter-chip {
            padding: 10px 18px;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-chip.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-color: var(--primary);
        }

        .filter-search-container {
            margin-top: 15px;
            position: relative;
        }

        .filter-search-input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 2px solid var(--border);
            border-radius: 25px;
            font-size: 14px;
        }

        .filter-search-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .filter-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        /* Job Cards */
        .jobs-section {
            padding: 0 20px 20px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .view-all {
            color: var(--primary);
            font-size: 14px;
            text-decoration: none;
            font-weight: 600;
        }

        .jobs-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .job-card {
            background: var(--white);
            border-radius: 15px;
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .job-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .job-organization {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 600;
        }

        .job-badge {
            background: var(--secondary);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
        }

        .job-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 15px;
        }

        .job-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-light);
        }

        .job-detail-icon {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .job-actions {
            display: flex;
            gap: 10px;
        }

        .job-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .job-btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }

        .job-btn-secondary {
            background: var(--light-bg);
            color: var(--primary);
            border: 1px solid var(--border);
        }

        .job-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Coming Soon */
        .coming-soon {
            padding: 50px 20px;
            text-align: center;
            background: var(--white);
            border-radius: 20px;
            margin: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }

        .coming-soon-icon {
            font-size: 64px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .coming-soon-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .coming-soon-desc {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 40px 20px 20px;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        /* Bottom Nav */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 10px 20px;
            display: flex;
            justify-content: space-around;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            color: var(--text-light);
            padding: 5px 10px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .nav-item.active {
            color: var(--primary);
            background: rgba(11, 61, 145, 0.1);
        }

        .nav-icon {
            width: 24px;
            height: 24px;
        }

        .nav-label {
            font-size: 11px;
            font-weight: 600;
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            height: 100%;
            background: var(--white);
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .sidebar.open {
            right: 0;
        }

        .sidebar-header {
            padding: 25px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 700;
        }

        .close-sidebar {
            background: none;
            border: none;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-sidebar:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .sidebar-menu {
            padding: 20px 0;
        }

        .menu-item {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--border);
        }

        .menu-item:hover {
            background: var(--light-bg);
        }

        .menu-icon {
            width: 22px;
            height: 22px;
            color: var(--primary);
        }

        .menu-text {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 15px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            display: none;
            backdrop-filter: blur(2px);
        }

        .overlay.show {
            display: block;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .slider-wrapper {
                width: 400%;
            }

            .update-card {
                min-width: 25%;
                width: 25%;
            }

            .update-title {
                font-size: 16px;
            }

            .update-desc {
                font-size: 13px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .page-title h1 {
                font-size: 24px;
            }

            .page-title p {
                font-size: 14px;
            }

            .job-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        * {
            -webkit-tap-highlight-color: transparent;
        }
   