/* Modern Applicant Form Styles */
:root {
    --primary-blue: #334D88;
    --accent-green: #00B38F;
    --soft-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
}

.applicant-container {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #f4f7f6;
}

.modern-card {
    background: #ffffff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.modern-card-header {
    background-color: var(--primary-blue);
    padding: 25px;
    text-align: center;
}

.modern-card-header h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.modern-card-body {
    padding: 40px;
}

/* Avatar Styling */
.avatar-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.avatar-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(51, 77, 136, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.modern-avatar {
    max-height: 200px;
    width: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.modern-avatar:hover {
    transform: scale(1.05);
}

/* Requirements Section */
.requirements-box {
    background-color: var(--soft-gray);
    border-left: 5px solid var(--primary-blue);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.requirements-box h4 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.requirements-list li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 14px;
}

/* Form Styling */
.form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.form-control-modern {
    height: 48px;
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control-modern:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(51, 77, 136, 0.1);
    outline: none;
}

textarea.form-control-modern {
    height: auto;
    min-height: 120px;
}

/* Custom File Upload Styling */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.custom-file-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px dashed var(--border-color);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-file-btn:hover {
    background-color: #f0f4ff;
    border-color: var(--primary-blue);
}

.custom-file-btn i {
    font-size: 20px;
    color: var(--primary-blue);
    margin-right: 15px;
}

.file-info {
    flex: 1;
}

.file-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: none;
}

.file-status {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: none;
}

.file-status.selected {
    color: var(--accent-green);
    font-weight: 700;
}

.file-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

/* Submit Button */
.btn-submit-modern {
    background-color: var(--accent-green);
    color: #ffffff !important;
    height: 55px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 179, 143, 0.2);
}

.btn-submit-modern:hover {
    background-color: #00997a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 179, 143, 0.3);
}

/* AOS Tweaks */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .modern-card-body {
        padding: 20px;
    }

    .applicant-container {
        padding-top: 100px;
    }
}