/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --govt-color: #15803d;
    --private-color: #1d4ed8;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

body {
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--dark-text);
    padding: 0.5rem 0;
    color: var(--white);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar {
    padding: 1rem 0;
    background-color: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-primary {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.search-container {
    position: relative;
    width: 250px;
}

.search-container input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-container button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-container button:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .search-container {
        width: 200px;
    }
    
    .logo h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        margin: 1rem 0 0;
        background-color: var(--white);
        border-top: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .search-container {
        width: 100%;
        margin-top: 1rem;
        order: 3;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 0.5rem;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search and Post Job */
.search-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-job-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.post-job-btn:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 1rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01411c 0%, #128807 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Noto Nastaliq Urdu', serif;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #fff;
    color: #01411c;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-search {
    max-width: 900px;
    margin: 0 auto;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.search-input {
    flex: 1;
    position: relative;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.search-input input,
.search-input select {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input input:focus,
.search-input select:focus {
    outline: none;
    border-color: #01411c;
    box-shadow: 0 0 0 3px rgba(1, 65, 28, 0.1);
}

.search-button {
    background-color: #01411c;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background-color: #015f28;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .search-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #01411c;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #4b5563;
    font-size: 16px;
}

.jobs-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #01411c;
    background: transparent;
    color: #01411c;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #01411c;
    color: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.job-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    color: #01411c;
    margin: 0;
    padding-right: 15px;
}

.job-type {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.job-type.government {
    background: #e8f5e9;
    color: #01411c;
    border: 1px solid #01411c;
}

.job-type.private {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #e65100;
}

.job-type.bank {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #0d47a1;
}

.job-type.army {
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #c2185b;
}

.company-name {
    font-size: 16px;
    color: #4b5563;
    margin: 10px 0;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
}

.detail-item i {
    color: #01411c;
    width: 20px;
}

.deadline-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-details-btn,
.apply-now-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.view-details-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.apply-now-btn {
    background: #01411c;
    color: white;
    border: none;
}

.view-details-btn:hover {
    background: #e5e7eb;
}

.apply-now-btn:hover {
    background: #015f2a;
}

.jobs-pagination {
    text-align: center;
    margin-top: 40px;
}

.load-more {
    padding: 12px 24px;
    background: #01411c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more:hover {
    background: #015f2a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-jobs {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-btn {
        width: calc(50% - 5px);
        margin: 0;
    }

    .job-actions {
        flex-direction: column;
    }
}

/* Job Modal */
.job-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 2rem auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 1rem;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
}

.modal-body {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .jobs-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        margin: 5px 0;
    }
}

/* Job Categories Section */
.job-categories {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.job-categories .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.job-categories .section-header h2 {
    color: #01411c;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.job-categories .section-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.category-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.3s ease;
}

.category-card.government::before { background: #01411c; }
.category-card.private::before { background: #e65100; }
.category-card.bank::before { background: #0d47a1; }
.category-card.army::before { background: #c2185b; }

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card.government .category-icon { background: #e8f5e9; color: #01411c; }
.category-card.private .category-icon { background: #fff3e0; color: #e65100; }
.category-card.bank .category-icon { background: #e3f2fd; color: #0d47a1; }
.category-card.army .category-icon { background: #fce4ec; color: #c2185b; }

.category-icon i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    transition: all 0.3s ease;
}

.category-content p {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.job-count {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 15px;
}

.explore-link {
    color: #01411c;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.explore-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-card:hover .explore-link {
    opacity: 1;
    transform: translateX(0);
}

.category-card:hover .explore-link i {
    transform: translateX(5px);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card:hover h3 {
    color: #01411c;
}

@media (max-width: 768px) {
    .job-categories {
        padding: 60px 0;
    }

    .categories-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .categories-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .category-card {
        min-width: 280px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 24px;
    }

    .explore-link {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Latest News & Updates Section */
.latest-updates {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.update-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.update-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.update-content {
    padding: 20px;
}

.update-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.tag-govt {
    background: #e8f5e9;
    color: #01411c;
}

.tag-announcement {
    background: #fff3e0;
    color: #e65100;
}

.tag-deadline {
    background: #fee2e2;
    color: #dc2626;
}

.update-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.update-excerpt {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #01411c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #015f2a;
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all-updates {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #01411c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    background: #015f2a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .latest-updates {
        padding: 40px 0;
    }

    .updates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .update-image {
        height: 180px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #01411c 0%, #128807 100%);
    color: #ffffff;
    padding: 70px 0 30px;
    position: relative;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, #01411c 50%, #ffffff 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info li i {
    width: 20px;
    color: #ffffff;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links ul li a i {
    font-size: 12px;
}

.footer-social {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffffff;
    color: #01411c;
    transform: translateY(-3px);
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.newsletter-form {
    position: relative;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #01411c;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e8f5e9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom .urdu-text {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 18px;
    margin-top: 10px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links h4, 
    .footer-about h3 {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 32px;
    color: #01411c;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #111827;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-container {
    padding: 40px;
}

.form-container h3 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #374151;
    font-size: 15px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01411c;
    box-shadow: 0 0 0 3px rgba(1, 65, 28, 0.1);
}

.submit-btn {
    background: #01411c;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #015f2a;
    transform: translateY(-2px);
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.mission-card i {
    font-size: 40px;
    color: #01411c;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.company-story {
    text-align: center;
    margin: 60px 0;
    padding: 0 20px;
}

.company-story h3 {
    color: #111827;
    font-size: 28px;
    margin-bottom: 20px;
}

.company-story p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 32px;
    color: #01411c;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #111827;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.stats-section {
    background: #01411c;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    text-align: center;
    margin: 60px 0;
}

.team-section h3 {
    color: #111827;
    font-size: 28px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: #111827;
    font-size: 20px;
    margin: 20px 0 5px;
}

.team-member p {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .mission-statement {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 20px;
    }
}

/* Government Jobs Section */
.govt-jobs-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.govt-jobs-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.govt-jobs-section .section-header h2 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Private Jobs Section */
.private-jobs-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.private-jobs-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.private-jobs-section .section-header h2 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Common styles for both sections */
.govt-jobs-section .jobs-filter,
.private-jobs-section .jobs-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.govt-jobs-section .filter-btn,
.private-jobs-section .filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.govt-jobs-section .filter-btn:hover,
.private-jobs-section .filter-btn:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

.govt-jobs-section .filter-btn.active,
.private-jobs-section .filter-btn.active {
    background: #1a237e;
    color: white;
} 