  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        background-color: #f8f9fa;
        color: #333;
    }
    
    .careers-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }
    
    .careers-header {
        margin-bottom: 50px;
    }
    
    .company-name {
        font-size: 18px;
        color: #000000ff;
        margin-bottom: 8px;
        font-weight: normal;
    }
    
    .main-heading {
        color: #00048B;
        font-size: 42px;
        font-weight: bold;
    }
    
    .jobs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        align-items: start;
    }
    
    .job-card {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        height: auto;
        min-height: 300px;
    }
    
    .job-title {
        color: #000000ff;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .job-description {
        color: #00048B;
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .apply-btn {
        background-color: #dc2626;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .apply-btn:hover {
        background-color: #b91c1c;
    }
    
    /* Job Application Form Styles */
    .application-section {
        margin: 80px auto 0;
        display: flex;
        max-width: 1200px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .form-left {
        background-color: #3b2c85;
        color: white;
        padding: 60px 50px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .form-title {
        font-size: 48px;
        font-weight: bold;
        line-height: 1.1;
        margin-bottom: 30px;
    }
    
    .form-divider {
        width: 80px;
        height: 4px;
        background-color: white;
        margin-bottom: 30px;
    }
    
    .form-subtitle {
        font-size: 16px;
        line-height: 1.4;
        color: white;
    }
    
    .form-right {
        background: white;
        padding: 60px 50px;
        flex: 1.2;
    }
    
    .application-form {
        width: 100%;
    }
    
    .form-row {
        display: flex;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .form-group.full-width {
        width: 100%;
    }
    
    .form-group label {
        font-size: 14px;
        color: #333;
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 8px 0;
        font-size: 14px;
        background: transparent;
        outline: none;
        font-family: Arial, sans-serif;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-bottom-color: #00048B;
    }
    
    .form-group textarea {
        resize: none;
        height: 80px;
        background-color: #f5f5f5;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .submit-btn {
        background-color: #dc2626;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        margin-top: 20px;
    }
    .navbar-brand{
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .submit-btn:hover {
        background-color: #b91c1c;
    }
    
    /* Fix footer white gaps */
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure full width for footer */
    footer, .footer-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding-left: 15px;
        padding-right: 15px;
    }
    
    @media (max-width: 1024px) {
        .jobs-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .application-section {
            flex-direction: column;
        }
        
        .form-left {
            padding: 40px 30px;
        }
        
        .form-right {
            padding: 40px 30px;
        }
    }
    
    @media (max-width: 768px) {
        .jobs-grid {
            grid-template-columns: 1fr;
        }
        
        .main-heading {
            font-size: 36px;
        }
        
        .form-row {
            flex-direction: column;
            gap: 15px;
        }
        
        .form-title {
            font-size: 28px;
        }
        
        .job-title {
            font-size: 20px;
        }
        
        .job-description {
            font-size: 15px;
        }
    }

    .mantech-bg {
    background-image: url('../img/mantechbg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 1.2rem;
    height: 100%;
    position: relative;
    width: 260px;
    margin: 0;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-number {
    background: #D62523;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 auto 1rem auto;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-title {
    color: #D62523;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.8rem;
}

.feature-category {
    color: #00048B;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    margin-top: 0.6rem;
}

.feature-category:first-of-type {
    margin-top: 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.8rem;
}

.feature-list li {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.3;
}

.feature-list li:before {
    content: "•";
    color: #D62523;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 3rem 2rem;
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .cards-container {
        gap: 0;
        padding: 2rem 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .service-card {
        max-width: 100%;
    }
    .cards-container {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

.contact-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .contact-title {
            color: #dc2626;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .contact-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 40px;
            white-space: nowrap;
        }
        
        .form-control {
            background-color: #e9ecef;
            border: none;
            border-radius: 4px;
            padding: 12px 15px;
            margin-bottom: 20px;
            height: auto;
        }
        
        .form-control:focus {
            background-color: #e9ecef;
            border-color: #dc2626;
            box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
        }
        
        .form-select {
            background-color: #e9ecef;
            border: none;
            border-radius: 4px;
            padding: 12px 15px;
            margin-bottom: 20px;
            height: auto;
        }
        
        .form-select:focus {
            background-color: #e9ecef;
            border-color: #dc2626;
            box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
        }
        
        .submit-btn {
            background-color: #dc2626;
            border: none;
            color: white;
            padding: 12px 40px;
            font-size: 1rem;
            border-radius: 4px;
            width: 100%;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            background-color: #b91c1c;
        }
        
        .contact-image {
            width: 100%;
            height: 85%;
            object-fit: cover;
            border-radius: 8px;
            margin-top: 160px;
        }
        
        .image-container {
            height: 100%;
            min-height: 600px;
            display: flex;
            align-items: stretch;
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        