.banner {
    background-image: url("../assets/blog-banner.png");
}

/* Careers Page Styles */
.careers__hero__section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.careers__hero__section h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.careers__hero__section p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.careers__hero__image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.careers__hero__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.careers__hero__image:hover img {
    transform: scale(1.05);
}

/* Why Join Wikpolt Section */
.careers__why__section {
    padding: 5rem 2rem;
    background: #fff;
}

.careers__why__section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.why__content__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why__feature {
    width: 350px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why__feature h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why__feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* Recruitment Team Section */
.careers__recruitment__section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.careers__recruitment__section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.careers__recruitment__section p {
    max-width: 800px;
    margin: 0 auto;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Video Section */
.video__container {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.5) 0%,
        rgba(233, 236, 239, 0.5) 100%
    );
    z-index: 1;
}

.video__iframe {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 900px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video__iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Job Openings Section */
.careers__openings__section {
    padding: 5rem 2rem;
    background: #fff;
}

.careers__openings__section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.job__cards__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
}

.job__card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.job__card__header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job__details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job__location,
.job__experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.job__card__content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job__apply__btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.job__apply__btn:hover {
    background: #218838;
}

/* Application Form Section */
.careers__contact__section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.careers__contact__section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers__contact__section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #6c757d;
    line-height: 1.6;
}

.careers__form__container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.careers__form__group {
    margin-bottom: 1.5rem;
}

.careers__form__group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.careers__form__group input,
.careers__form__group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.careers__form__group input:focus,
.careers__form__group select:focus {
    outline: none;
    border-color: #28a745;
}

.careers__form__submit {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.careers__form__submit:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers__hero__section h1 {
        font-size: 2.5rem;
    }

    .careers__why__section h2,
    .careers__recruitment__section h2,
    .careers__openings__section h2,
    .careers__contact__section h2 {
        font-size: 2rem;
    }

    .why__content__container {
        grid-template-columns: 1fr;
    }

    .careers__form__container {
        padding: 2rem;
    }

    .video__iframe {
        width: 90%;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .video__iframe {
        width: 95%;
        height: 250px;
    }
}
