/* Jobs Section */
.jobs-section {
padding: 80px 20px;
background: white;
}

.section-header {
text-align: center;
margin-bottom: 70px;
}

.section-title {
font-size: 2.2em;
font-weight: 700;
margin-bottom: 20px;
color: #1a1a1a;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: linear-gradient(90deg, #1e3c72, #2a5298);
border-radius: 2px;
}

.subtitle-text {
font-size: 1.1em;
color: #666;
margin-top: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Jobs Grid */
.jobs-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 25px;
margin-bottom: 50px;
}

.job-card {
background: white;
border: 1px solid #e0e0e0;
border-radius: 12px;
padding: 30px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.job-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FFC107, #FF9800);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}

.job-card:hover {
border-color: #FFC107;
box-shadow: 0 10px 30px rgba(42, 82, 152, 0.15);
transform: translateY(-5px);
}

.job-card:hover::before {
transform: scaleX(1);
}

.job-title {
font-size: 1.3em;
font-weight: 700;
margin-bottom: 12px;
color: #1a1a1a;
}

.job-description {
font-size: 0.95em;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
min-height: 50px;
}

.job-status {
display: inline-block;
background: #e8f4f8;
color: #FFC107;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.85em;
font-weight: 600;
margin-bottom: 20px;
}

.job-link {
display: inline-block;
color: #2a5298;
text-decoration: none;
font-weight: 600;
padding: 10px 0;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
font-size: 0.95em;
}

.job-link:hover {
border-bottom-color: #2a5298;
padding-left: 5px;
}

/* Stats Section */
.stats-banner {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 60px 20px;
margin: 80px 0;
border-radius: 15px;
text-align: center;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
max-width: 1000px;
margin: 0 auto;
}

.stat-item h3 {
font-size: 2.2em;
font-weight: 700;
margin-bottom: 10px;
}

.stat-item p {
font-size: 0.95em;
opacity: 0.9;
}

/* Footer */
.footer-cta {
background: #f8f9fa;
padding: 60px 20px;
text-align: center;
border-top: 1px solid #e0e0e0;
margin-top: 80px;
}

.footer-cta h2 {
font-size: 2em;
margin-bottom: 30px;
color: #1a1a1a;
}

.footer-cta .cta-button {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
}

.footer-cta .cta-button:hover {
background: linear-gradient(135deg, #162951, #1e3f6b);
}

/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 2.2em;
}

.tagline {
font-size: 1.1em;
}

.features {
flex-direction: column;
gap: 15px;
align-items: center;
}

.jobs-grid {
grid-template-columns: 1fr;
}

.section-title {
font-size: 1.8em;
}

.stats-grid {
grid-template-columns: 1fr;
gap: 30px;
}
}

/* Animations */
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(20px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

.main-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;

padding: 60px 0px;
align-items: start;
}

/* Left Side - Job Details */
.job-details {
background: white;
padding: 50px;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
position: sticky;
top: 40px;
}

.job-header {
margin-bottom: 40px;
border-bottom: 3px solid #FF9800;
padding-bottom: 25px;
}

.job-title {
font-size: 2em;
font-weight: 700;
color: #1e3c72;
margin-bottom: 15px;
}

.job-intro {
font-size: 0.95em;
color: #555;
line-height: 1.8;
margin-bottom: 20px;
}

.job-status-badge {
display: inline-block;
background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
color: white;
padding: 8px 18px;
border-radius: 25px;
font-size: 0.85em;
font-weight: 600;
}

.section-title {
font-size: 1.3em;
font-weight: 700;
color: #1e3c72;
margin-top: 35px;
margin-bottom: 18px;
position: relative;
padding-bottom: 12px;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 20px;
width: 40px;
height: 3px;
background: linear-gradient(90deg, #FFC107, #FF9800);
border-radius: 2px;
}

.responsibilities-list {
list-style: none;
margin-bottom: 30px;
}

.responsibilities-list li {
padding-left: 28px;
margin-bottom: 12px;
position: relative;
font-size: 0.95em;
color: #555;
line-height: 1.7;
}

.responsibilities-list li::before {
content: '✓';
position: absolute;
left: 0;
color: #FF9800;
font-weight: bold;
font-size: 1.1em;
}

.qualifications-list {
list-style: none;
margin-bottom: 30px;
}

.qualifications-list li {
padding-left: 28px;
margin-bottom: 12px;
position: relative;
font-size: 0.95em;
color: #555;
line-height: 1.7;
}

.qualifications-list li::before {
content: '●';
position: absolute;
left: 0;
color: #FF9800;
font-size: 1.2em;
}

.salary-section {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
padding: 20px;
border-radius: 10px;
margin-bottom: 30px;
border-left: 4px solid #FFC107;
}

.salary-label {
font-size: 0.9em;
color: #999;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
font-weight: 600;
}

.salary-text {
font-size: 1em;
color: #1e3c72;
font-weight: 600;
}

/* Right Side - Form */
.application-form-container {
background: white;
padding: 50px;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
position: sticky;
top: 40px;
}

.form-header {
text-align: center;
margin-bottom: 40px;
}

.form-title {
font-size: 1.8em;
font-weight: 700;
color: #1e3c72;
margin-bottom: 12px;
}

.form-subtitle {
font-size: 0.95em;
color: #888;
}

.form-group {
margin-bottom: 25px;
}

label {
display: block;
font-weight: 600;
color: #1e3c72;
margin-bottom: 8px;
font-size: 0.95em;
}

.required {
color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="date"],
select,
textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-family: 'Poppins', sans-serif;
font-size: 0.95em;
transition: all 0.3s ease;
background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
resize: vertical;
min-height: 100px;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.form-row.full {
grid-template-columns: 1fr;
}

.checkbox-group {
margin-bottom: 20px;
}

.checkbox-label {
display: flex;
align-items: center;
font-weight: 500;
color: #555;
cursor: pointer;
margin-bottom: 10px;
}

input[type="checkbox"] {
width: 18px;
height: 18px;
margin-right: 10px;
cursor: pointer;
accent-color: #667eea;
}

.submit-btn {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, #FFC107 0%, #FF5722 100%);
color: white;
border: none;
border-radius: 8px;
font-size: 1em;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
transform: translateY(-1px);
}

.form-note {
font-size: 0.85em;
color: #999;
margin-top: 20px;
text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
.main-container {
grid-template-columns: 1fr;
gap: 30px;
padding: 40px 20px;
}

.job-details,
.application-form-container {
position: static;
padding: 40px;
}

.form-row {
grid-template-columns: 1fr;
gap: 20px;
}

.job-title {
font-size: 1.6em;
}

.section-title {
font-size: 1.1em;
}
}

@media (max-width: 768px) {
.main-container {
padding: 20px 15px;
}

.job-details,
.application-form-container {
padding: 25px;
}

.job-title {
font-size: 1.4em;
}

.form-title {
font-size: 1.4em;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="date"],
select,
textarea {
padding: 10px 12px;
font-size: 0.9em;
}
}