﻿:root {
    --primary: #0A192F;
    --background: #FFFFFF;
    --action: #10B981;
    --action-hover: #059669;
    --alert: #EF4444;
    --notice-bg: #FEF3C7;
    --notice-border: #EF4444;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.lang-ur { font-family: 'Noto Nastaliq Urdu', 'Inter', sans-serif; }
body.lang-ur .hero-title, body.lang-ur .hero-subtitle, body.lang-ur .job-categories-title,
body.lang-ur .job-category-name, body.lang-ur .modal-header h3, body.lang-ur .modal-body,
body.lang-ur .btn-cancel, body.lang-ur .btn-primary, body.lang-ur .btn-submit,
body.lang-ur .btn-requirement, body.lang-ur .btn-apply-small, body.lang-ur .btn-upload,
body.lang-ur .req-label, body.lang-ur .req-value, body.lang-ur .detail-label,
body.lang-ur .detail-value, body.lang-ur .upload-zone p, body.lang-ur .upload-or,
body.lang-ur .success-modal h3, body.lang-ur .success-urdu, body.lang-ur .redirect-text {
    font-family: 'Noto Nastaliq Urdu', serif;
}



/* Desktop Only Message */
.desktop-only-message { display: none; }
@media (min-width: 1025px) {
    .desktop-only-message {
        display: flex;
        position: fixed;
        inset: 0;
        background: linear-gradient(135deg, #0A192F 0%, #1a365d 100%);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    .mobile-content { display: none !important; }
    .desktop-message-content { text-align: center; color: white; max-width: 480px; }
    .desktop-message-icon { font-size: 5rem; margin-bottom: 1.5rem; }
    .desktop-message-content h2 { font-size: 2rem; margin-bottom: 1rem; color: #10B981; }
    .desktop-message-content p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 0.75rem; }
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 100%);
    color: white;
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}
.ticker-wrapper { overflow: hidden; white-space: nowrap; }
.ticker-content { display: inline-block; animation: ticker-scroll 30s linear infinite; }
.ticker-item { display: inline-block; padding: 0 2rem; font-size: 0.85rem; font-weight: 500; }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scrolling Articles Hero */
.articles-hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 100%);
    border-radius: 0;
    padding: 1.5rem 0;
    margin: 0 0 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 2px solid var(--action);
}
.articles-hero::before,
.articles-hero::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.articles-hero::before {
    left: 0;
    background: linear-gradient(90deg, #0A192F 0%, transparent 100%);
}
.articles-hero::after {
    right: 0;
    background: linear-gradient(-90deg, #0A192F 0%, transparent 100%);
}



/* Navbar */
.navbar {
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 50%, #0A192F 100%);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid rgba(16, 185, 129, 0.4);
}
.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #10B981 50%, transparent 100%);
    opacity: 0.6;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.logo-icon {
    font-size: 1.7rem;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}
.logo-text span { color: #10B981; }
.nav-menu { display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; }
.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #10B981;
    transition: var(--transition);
}
.nav-link:hover { color: white; background: rgba(16, 185, 129, 0.1); }
.nav-link:hover::before, .nav-link.active::before { width: 60%; }
.nav-link.active { color: #10B981; background: rgba(16, 185, 129, 0.12); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.lang-switch {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    min-width: 56px;
}
.lang-switch:hover { background: rgba(16, 185, 129, 0.2); border-color: rgba(16, 185, 129, 0.5); color: #10B981; }
body.lang-ur .lang-switch { font-family: 'Noto Nastaliq Urdu', serif; }
.nav-apply-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}
.nav-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5); }
body.lang-ur .nav-apply-btn, body.lang-ur .nav-link { font-family: 'Noto Nastaliq Urdu', serif; }



/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 1rem; }

/* Scrolling Articles Hero */
.articles-track {
    display: flex;
    gap: 0.75rem;
    animation: articles-scroll 25s linear infinite;
    width: max-content;
    padding: 0 0.5rem;
}
.articles-track:hover {
    animation-play-state: paused;
}
@keyframes articles-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.article-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1.15rem;
    min-width: 220px;
    flex-shrink: 0;
    transition: var(--transition);
    cursor: pointer;
}
.article-card:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}
.article-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.4);
}
.article-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.article-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}
.article-sub {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

/* Hero / Landing */
#landing { padding: 1.5rem 0; min-height: auto; }
.hero-content {
    text-align: center;
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 100%);
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}
.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Notice Card */
.notice-card {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 2px solid var(--notice-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}
.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--notice-border) 0%, #F59E0B 50%, var(--notice-border) 100%);
}
.notice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed rgba(239, 68, 68, 0.3);
}
.notice-icon {
    font-size: 1.5rem;
    color: var(--notice-border);
    animation: noticePulse 2s ease-in-out infinite;
}
@keyframes noticePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.notice-heading {
    font-size: 1.25rem;
    color: var(--notice-border);
    text-align: center;
    font-weight: 700;
    font-family: 'Noto Nastaliq Urdu', serif;
    margin: 0;
    text-shadow: 0 1px 2px rgba(239, 68, 68, 0.1);
}
.notice-intro {
    font-size: 1rem;
    color: #78350F;
    margin-bottom: 0.85rem;
    text-align: center;
    font-family: 'Noto Nastaliq Urdu', serif;
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-right: 3px solid var(--notice-border);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #78350F;
    font-family: 'Noto Nastaliq Urdu', serif;
    transition: var(--transition);
}
.notice-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}
.notice-bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--notice-border) 0%, #DC2626 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Noto Nastaliq Urdu', serif;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

/* Job Categories Title */
.job-categories-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}
.job-categories-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--action);
    border-radius: 2px;
}

/* Job Categories Grid */
.job-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.job-category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    aspect-ratio: 1;
    border: 2px solid transparent;
}
.job-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--action);
}
.job-category-card:hover .job-category-image { box-shadow: inset 0 0 0 3px rgba(16, 185, 129, 0.6); }
.job-category-image { width: 100%; height: 100%; }
.job-category-image img { width: 100%; height: 100%; object-fit: cover; }
.job-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.15) 0%, rgba(10, 25, 47, 0.6) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.75rem;
}
.job-category-name {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 3;
}
.job-category-name-urdu {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FEF3C7;
    direction: rtl;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 3;
}
.job-category-actions {
    display: none;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 3;
}
.job-category-card:hover .job-category-actions { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }



/* Buttons */
.btn-requirement, .btn-apply-small {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-requirement { background: #ffffff; color: var(--primary); }
.btn-requirement:hover { background: #f0f0f0; }
.btn-apply-small { background: var(--action); color: white; border-color: var(--action); }
.btn-apply-small:hover { background: var(--action-hover); border-color: var(--action-hover); }

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.active { display: flex; animation: fadeIn 0.3s ease; }
.modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 360px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header { background: var(--primary); color: white; padding: 0.9rem 1rem; }
.modal-header h3 { font-size: 1rem; font-weight: 600; font-family: 'Noto Nastaliq Urdu', serif; }
.modal-body { padding: 0.75rem; font-family: 'Noto Nastaliq Urdu', serif; direction: rtl; text-align: right; }
.modal-footer {
    padding: 0.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.btn-cancel, .btn-primary, .btn-submit {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    border: none;
}
.btn-cancel { background: var(--border); color: var(--text-primary); }
.btn-cancel:hover { background: #d1d5db; }
.btn-primary { background: var(--action); color: white; }
.btn-primary:hover { background: var(--action-hover); }
.btn-submit { background: var(--action); color: white; }
.btn-submit:hover { background: var(--action-hover); }
.btn-submit:disabled { background: #9CA3AF; cursor: not-allowed; }

/* Requirements Modal */
.requirements-list { display: flex; flex-direction: column; gap: 0.5rem; }
.requirement-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.requirement-item:last-child { border-bottom: none; }
.req-label { font-weight: 600; color: var(--text-primary); }
.req-value { color: var(--text-secondary); font-weight: 500; }

/* Fee Modal */
.fee-urdu { font-size: 0.9rem; line-height: 1.7; color: var(--text-primary); margin-bottom: 1rem; }
.fee-amount { font-size: 2.5rem; font-weight: 800; color: var(--action); text-align: center; padding: 1rem; background: rgba(16, 185, 129, 0.08); border-radius: 8px; }

/* Payment Modal */
.payment-details { display: flex; flex-direction: column; gap: 0.75rem; }
.detail-row { display: flex; justify-content: space-between; padding: 0.6rem 0.8rem; background: #F3F4F6; border-radius: 6px; }
.detail-label { font-weight: 600; color: var(--text-primary); }
.detail-value { color: var(--text-secondary); font-family: monospace; font-size: 0.85rem; }

/* Upload Modal */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.upload-zone.dragover { border-color: var(--action); background: #ECFDF5; transform: scale(1.02); }
.upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.upload-zone p { margin: 0.25rem 0; color: var(--text-secondary); font-size: 0.9rem; }
.upload-or { color: var(--text-light); font-size: 0.8rem !important; }
.upload-zone input[type='file'] { display: none; }
.btn-upload {
    display: inline-block;
    background: var(--action);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-upload:hover { background: var(--action-hover); }
.upload-preview { margin-top: 1rem; text-align: center; }
.upload-preview img { max-width: 100%; max-height: 200px; border-radius: 8px; margin: 0 auto; }

/* Success Modal */
.success-modal { text-align: center; padding: 1rem; }
.success-icon {
    font-size: 4rem;
    color: var(--action);
    background: rgba(16, 185, 129, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-modal h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.success-urdu { font-size: 0.95rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 1rem; }
.redirect-text { color: var(--text-secondary); font-size: 0.85rem; }
#countdown { font-weight: 700; color: var(--action); }


/* Apply Modal Form */
#modal-apply .modal-content { max-width: 320px; }
#modal-apply .modal-body { padding: 0.75rem; }
#modal-apply .form-group { margin-bottom: 0.6rem; }
#modal-apply label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    font-family: 'Noto Nastaliq Urdu', serif;
}
#modal-apply input, #modal-apply select {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
}
#modal-apply input { direction: rtl; text-align: right; }
#modal-apply select {
    direction: ltr;
    text-align: left;
    max-height: 100px;
    overflow-y: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A192F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
#modal-apply input:focus, #modal-apply select:focus {
    outline: none;
    border-color: var(--action);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 50%, #0A192F 100%);
    color: #f2f2f2;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981 0%, #34d399 50%, #10B981 100%);
    z-index: 2;
}
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
                      radial-gradient(circle at 85% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
    pointer-events: none;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 27px 28px;
    position: relative;
    z-index: 1;
}
.footer-brand {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}
.brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.brand-icon {
    font-size: 38px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}
.brand h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0;
}
.brand h2 span { color: #10B981; }
.tagline { color: #cbd5e1; font-size: 16px; line-height: 1.6; margin: 0; max-width: 600px; }
.footer-section { margin-bottom: 30px; }
.footer-section h3 {
    font-size: 17px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 10px;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #10B981;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-nav a::before { content: '>'; color: #10B981; font-weight: bold; opacity: 0.7; }
.footer-nav a:hover { color: white; transform: translateX(4px); }
.subscribe-section p { color: #cbd5e1; font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
.subscribe-form {
    display: flex;
    width: 100%;
    max-width: 320px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}
.subscribe-form:focus-within { border-color: #10B981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15); }
.subscribe-form input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: white;
    padding: 0 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}
.subscribe-form input::placeholder { color: #94a3b8; }
.subscribe-form button {
    width: 48px;
    border: 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 20px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}
.subscribe-form button:hover { background: linear-gradient(135deg, #34d399 0%, #10B981 100%); }
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 14px;
    transition: var(--transition);
    padding: 6px 0;
}
.contact-item:hover { color: white; transform: translateX(3px); }
.contact-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    transition: var(--transition);
}
.contact-item:hover .contact-icon { background: #10B981; color: white; transform: scale(1.1); }
.footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding-top: 22px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-bottom > p { color: #94a3b8; font-size: 14px; margin: 0; }
.social-icons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}
.social-icons a:hover { background: #10B981; color: white; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4); }

/* Responsive - Tablet */
@media (max-width: 768px) {
    .navbar { padding: 0.6rem 0; }
    .navbar .container { padding: 0 0.75rem; gap: 0.5rem; }
    .nav-menu { display: none; }
    .logo-icon { width: 36px; height: 36px; font-size: 1.4rem; border-radius: 10px; }
    .logo-text { font-size: 1.1rem; }
    .lang-switch { padding: 0.4rem 0.7rem; font-size: 0.75rem; }
    .nav-apply-btn { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
    #landing { padding: 1.5rem 0; min-height: auto; }
    .articles-hero { margin: 0.75rem 0 1rem; padding: 1.15rem 0; }
    .article-card { min-width: 200px; padding: 0.75rem 1rem; gap: 0.7rem; }
    .article-icon { width: 44px; height: 44px; font-size: 1.6rem; }
    .article-title { font-size: 0.92rem; }
    .article-sub { font-size: 0.75rem; }
    .hero-content { margin: 0 -0.75rem; padding: 1.25rem 0.75rem; }
    .hero-title { font-size: 1.3rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .notice-card { padding: 1rem; }
    .notice-heading { font-size: 1.1rem; }
    .notice-list li { font-size: 0.85rem; padding: 0.55rem 0.65rem; }
    .notice-bullet { width: 26px; height: 26px; font-size: 0.8rem; }
    .job-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .job-category-name { font-size: 0.85rem; }
    .job-category-name-urdu { font-size: 0.9rem; }
    .btn-requirement, .btn-apply-small { font-size: 0.9rem; padding: 0.7rem 1.25rem; }
    .modal-content { max-width: 320px; }
    .modal-body { padding: 0.75rem; }
    .modal-footer { padding: 0.75rem; gap: 0.5rem; }
    .btn-cancel, .btn-primary { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
    #modal-apply .form-group { margin-bottom: 0.6rem; }
    #modal-apply label { font-size: 0.8rem; margin-bottom: 0.25rem; }
    #modal-apply input, #modal-apply select { padding: 0.5rem 0.65rem; font-size: 0.85rem; }
    .job-category-actions { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: auto; }
    .footer-container { padding: 40px 24px 24px; }
    .brand-icon { width: 56px; height: 56px; font-size: 32px; }
    .brand h2 { font-size: 24px; }
    .tagline { font-size: 15px; }
    .footer-section h3 { font-size: 15px; }
    .footer-nav a { font-size: 14px; }
    .subscribe-section p { font-size: 13px; }
    .contact-item { font-size: 14px; }
    .footer-bottom > p { font-size: 13px; }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .top-banner { padding: 0; }
    .ticker-item { font-size: 0.75rem; padding: 0 1rem; }
    .navbar .container { padding: 0 0.4rem; }
    .logo-text { font-size: 0.95rem; }
    .logo-icon { width: 32px; height: 32px; font-size: 1.2rem; }
    .lang-switch { padding: 0.35rem 0.6rem; font-size: 0.7rem; min-width: 50px; }
    .nav-apply-btn { padding: 0.4rem 0.7rem; font-size: 0.75rem; }
    .container { padding: 0.4rem; }
    .articles-hero { margin: 0.5rem 0 0.75rem; padding: 1rem 0; }
    .article-card { min-width: 180px; padding: 0.65rem 0.85rem; gap: 0.6rem; border-radius: 10px; }
    .article-icon { width: 40px; height: 40px; font-size: 1.4rem; border-radius: 10px; }
    .article-title { font-size: 0.85rem; }
    .article-sub { font-size: 0.7rem; }
    .hero-content { margin: 0 -0.4rem; padding: 1rem 0.4rem; }
    .hero-title { font-size: 1.15rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .notice-card { padding: 0.85rem; }
    .notice-heading { font-size: 0.95rem; }
    .notice-intro { font-size: 0.85rem; padding: 0.4rem 0.6rem; }
    .notice-list li { font-size: 0.8rem; padding: 0.5rem 0.6rem; gap: 0.6rem; }
    .notice-bullet { width: 24px; height: 24px; font-size: 0.75rem; }
    .job-categories-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .job-category-name { font-size: 0.75rem; }
    .job-category-name-urdu { font-size: 0.8rem; }
    .btn-requirement, .btn-apply-small { font-size: 0.8rem; padding: 0.6rem 1.1rem; }
    .modal { padding: 0.5rem; }
    .modal-content { max-width: 100%; }
    .modal-header { padding: 0.75rem; }
    .modal-header h3 { font-size: 0.95rem; }
    .modal-body { padding: 0.6rem; }
    .modal-footer { padding: 0.6rem; flex-direction: column; }
    .btn-cancel, .btn-primary, .btn-submit { width: 100%; padding: 0.65rem; font-size: 0.85rem; }
    #modal-apply input, #modal-apply select { padding: 0.3rem 0.45rem; font-size: 0.75rem; }
    #modal-apply select { max-height: 90px; overflow-y: auto; }
    .footer-container { padding: 35px 20px 22px; }
    .brand h2 { font-size: 22px; }
    .brand-icon { width: 50px; height: 50px; font-size: 28px; border-radius: 14px; }
    .tagline { font-size: 14px; }
    .footer-nav a { font-size: 14px; }
    .subscribe-form { max-width: 100%; }
    .subscribe-form input { font-size: 13px; }
    .contact-item { font-size: 13px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-bottom > p { font-size: 12px; }
    .social-icons { gap: 10px; }
    .social-icons a { width: 36px; height: 36px; font-size: 15px; }
    .footer-section h3 { font-size: 14px; }
    .site-footer { margin-top: 2rem; }
}
