/* join-us.css */
/* Base Styles */
/* Hero Section */
.career-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    background: url('../assets/MAFINA/mafina-images-pack/img4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 85, 0.8) 0%, rgba(0, 20, 60, 0.9) 100%);
}

.hero-conten {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero-conten  h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-conten  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff5722;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ff5722;
    font-size: 1rem;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .career-hero {
        height: 80vh;
        min-height: 500px;
    }
    
}

@media (max-width: 768px) {
    .career-hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-conten {
        padding: 0 1.5rem;
    }
    
   
    
   
    
    
    
}

@media (max-width: 576px) {
    .career-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-conten h1 {
        font-size: 2.2rem;
    }

    .hero-conten .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    
    
    
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
/* Career Intro */
.career-intro {
    padding: 5rem 0;
    background: #f9fafc;
}

.career-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #002855;
}

.career-intro p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

/* Opportunities Section */
.opportunities-section {
    padding: 5rem 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.opportunity-card {
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1.5rem;
    background: #f5f7fa;
    border-bottom: 1px solid #e1e5eb;
}

.card-header h3 {
    margin: 0;
    color: #002855;
}

.job-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #e6f0fa;
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    margin: 0.5rem 0;
    color: #555;
}

.card-body i {
    color: #0066cc;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e1e5eb;
}

.general-interest {
    text-align: center;
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials */
/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff5722;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0 1rem;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: rgba(255, 87, 34, 0.1);
    font-family: serif;
    line-height: 1;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid rgba(255, 87, 34, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    margin: 0 0 0.3rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-title {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff5722;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover, .slider-next:hover {
    color: white;
    background-color: #ff5722;
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    margin: 0 1.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #ff5722;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .career-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .testimonial-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .career-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .slider-controls {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .career-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #002855;
    margin-bottom: 1rem;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* Application Form */
.application-section {
    padding: 5rem 0;
    background: #f9fafc;
}

.application-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.application-info {
    padding-right: 2rem;
}

.application-info h2 {
    color: #002855;
    margin-bottom: 1.5rem;
}

.application-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-alternative {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-alternative h3 {
    color: #002855;
    margin-bottom: 1rem;
}

.contact-alternative p {
    margin: 0.8rem 0;
}

.contact-alternative i {
    color: #0066cc;
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #002855;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 120px;
}

.submit-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #0052a3;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #002855;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0052a3;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #0066cc;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #0066cc;
    color: white;
}

.apply-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.apply-button:hover {
    background: #0052a3;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .application-container {
        grid-template-columns: 1fr;
    }
    
    .application-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-conten h1 {
        font-size: 2.5rem;
    }
    
   .hero-conten .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 90%;
    }
}