/* Page Hero Section */
.career-hero-section {
    position: relative;
    height: 400px;
    background-image: url('./assets/career.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.career-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(26 26 26 / 70%);
    z-index: 1;
}


.career-hero-section .container {
    position: relative;
    z-index: 2;
}

.career-hero-content {
    text-align: left;
}

.career-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: #3bb4e5;
}

.breadcrumb-nav .separator {
    color: white;
    font-weight: 600;
}

.breadcrumb-nav .current {
    color: #3bb4e5;
    font-weight: 600;
}

.content-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 0px 20px;
}

.content-wrapper {
    text-align: center;
    width: 100%;
}

.top-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.main-title {
    color: #004B87;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    color: #004B87;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.details-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFD700;
}

.home-btn {
    display: inline-block;
    background: #004B87;
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 75, 135, 0.4);
}

.home-btn:hover {
    background: #003666;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 75, 135, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 30px 15px;
    }

    .top-section {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .details-section h2 {
        font-size: 1.6rem;
    }

    .contact-info {
        font-size: 1rem;
    }

    .home-btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .top-section {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .details-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-info {
        font-size: 0.95rem;
    }

    .home-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-section,
.details-section {
    animation: fadeInUp 0.8s ease-out;
}

.details-section {
    animation-delay: 0.2s;
}

@media (max-width: 1200px) {
    .career-hero-title {
        font-size: 3.5rem;
    }

}

@media (max-width: 992px) {
    .career-hero-section {
        height: 350px;
    }

    .career-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .career-hero-section {
        height: 300px;
    }

    .career-hero-title {
        font-size: 2.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.95rem;
    }

    .about-content-section {
        padding: 50px 0;
    }

}

@media (max-width: 576px) {
    .career-hero-section {
        height: 250px;
    }

    .career-hero-title {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .career-hero-title {
        font-size: 1.8rem;
    }
}