<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero {
    height: 80vh;
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: white;

    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
}

.benefits {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card h3 {

    margin-bottom: 1rem;
}

.positions {
    padding: 1rem 2rem;
    background-color: white;
}

.positions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
}





.job-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .benefits,
    .positions {
        padding: 3rem 1rem;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }
}


     /* Animations */
     @keyframes slideIn {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Modal Styling */
        .modal-content {
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: slideIn 0.5s ease-out;
            background: #ffffff;
        }
        
        .gradient-background {
            background: linear-gradient(135deg, #8441d0, #C850C0);
        }
        
        .highlight-text {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        
        /* Form Controls */
        .custom-input {
            height: 60px;
            border-radius: 12px;
            border: 2px solid #e1e1e1;
            transition: all 0.3s ease;
            font-size: 1rem;
            background-color: #ffffff;
        }
        
        .custom-input:focus {
            border-color: #4158D0;
            box-shadow: 0 0 0 4px rgba(65, 88, 208, 0.1);
        }
        
        .form-floating label {
            padding-left: 1rem;
            color: #666;
        }
        
        /* Upload Area */
        .upload-container {
            border: 2px dashed #e1e1e1;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            background-color: #ffffff;
            cursor: pointer;
        }
        
        .upload-container:hover {
            border-color: #4158D0;
            background-color: rgba(65, 88, 208, 0.02);
        }
        
        .upload-icon {
            color: #4158D0;
            margin-bottom: 1rem;
        }
        
        .upload-text {
            display: block;
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .upload-subtext {
            display: block;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Submit Button */
        .submit-button {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #8441d0, #C850C0);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(65, 88, 208, 0.2);
        }
        
        .submit-button:active {
            transform: translateY(0);
        }
        
        .button-icon {
            transition: transform 0.3s ease;
        }
        
        .submit-button:hover .button-icon {
            transform: translateX(5px);
        }
        
        /* Close Button */
        .close-button {
            transition: transform 0.3s ease;
        }
        
        .close-button:hover {
            transform: rotate(90deg);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 1rem;
            }
            
            .custom-input {
                height: 50px;
            }
            
            .upload-container {
                padding: 1.5rem;
            }
        }
        
        /* Form Validation Styles */
        .was-validated .custom-input:invalid {
            border-color: #dc3545;
            background-image: none;
        }
        
        .was-validated .custom-input:valid {
            border-color: #198754;
            background-image: none;
        }
        
        .invalid-feedback {
            font-size: 0.875rem;
            margin-top: 0.5rem;
            color: #dc3545;
        }


        .selected-file {
            padding: 8px 12px;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            margin-top: 10px;
        }
        
        #removeFile {
            padding: 0;
            font-size: 0.8rem;
            opacity: 0.5;
        }
        
        #removeFile:hover {
            opacity: 1;
        }</pre></body></html>