/* Join Us Section */
.join-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    min-height: 70vh;
    gap: 60px;
}

.join-us-content {
    flex: 1;
    max-width: 500px;
}

.join-us-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.join-us-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.join-us-image {
    flex: 1;
    text-align: center;
}

.join-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Job Listings Section */
.apply-job {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.apply-job h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.apply-job>p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.job-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-listing {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.job-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-listing h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.job-listing p {
    margin-bottom: 15px;
    color: #666;
    text-align: left;
}

.job-listing strong {
    color: #333;
}

.apply-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 1rem;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

#modalTitle {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-cancel {
    background: #6c757d;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.success-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-content h3 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Error Message */
.error-message {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.error-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.error-content h3 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 60px 20px;
    margin: 0;
}

.benefits-header {
    background: #3b4cb8;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 auto 50px;
    max-width: 400px;
    position: relative;
}

.benefits-header::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 20px;
    background: #3b4cb8;
    transform: skewX(-15deg);
}

.benefits-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    background: #3b4cb8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 8px 8px 0px #dc3545;
}

.benefit-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
    stroke: white;
    stroke-width: 1;
}

.benefit-text {
    color: #3b4cb8;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4;
}

.benefit-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-text li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.benefit-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b4cb8;
    font-weight: bold;
}

/* Application Process Steps Section */
.application-process {
    background: #f8f9fa;
    padding: 80px 20px;
    margin: 0;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    background: #3b4cb8;
    color: white;
    display: inline-block;
    padding: 20px 60px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: 20px;
}

.process-title::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 30px;
    background: #3b4cb8;
    transform: skewX(-15deg);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    background: #e8f2ff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #3b4cb8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(59, 76, 184, 0.3);
    border: 4px solid white;
}

.step-content {
    margin-left: 60px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-date {
    font-size: 1.1rem;
    color: #3b4cb8;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.step-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
}

/* Timeline connector */
.steps-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(to bottom, #3b4cb8, #667eea);
    border-radius: 2px;
}

.steps-container {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
	.logo-img {
		height: 60px !important;
	}
    .join-us-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 20px;
    }

    .join-us-content h1 {
        font-size: 2.5rem;
    }

    .job-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        width: 95%;
    }

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

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-title {
        font-size: 1.5rem;
        padding: 15px 40px;
        letter-spacing: 2px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -10px;
    }

    .step-content {
        margin-left: 10px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .steps-container::before {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .join-us-content h1 {
        font-size: 2rem;
    }

    .apply-job h1 {
        font-size: 2rem;
    }

    .process-title {
        font-size: 1.3rem;
        padding: 12px 30px;
        letter-spacing: 1px;
    }

    .step-item {
        padding: 25px 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: -8px;
    }

    .step-content {
        margin-left: 5px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-date {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}


.image-slide {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.image-slide img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 300px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-slide img:hover {
    transform: scale(1.02);
}

.slider {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
    /* translate: -200px 0; */
    /* overflow-x: auto; */
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

.chev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dot-container button {
    background: none;
    border: none;
    cursor: pointer;
}

.dot-container svg {
    height: 12px;
    width: 12px;
}

.dot-container circle {
    cx: 6px;
    cy: 6px;
    r: 6px;
}

.blue {
    background-color: #abe6ff !important;
    fill: #2dbffd !important;
}


.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.overlay .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

