
















/* IMAGE */
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-image {
        margin-top: 30px;
    }
}

/* PAGE TITLE SECTION */
.career-hero {
    height: 60vh;
    background: url("../documents/mainbg.jpg") center/cover no-repeat;
    position: relative;
    margin-bottom: 60px;
}

.career-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.career-hero-content {
    color: #fff;
    padding: 0 60px;
    max-width: 800px;
}

.career-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.career-hero-content p {
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        height: 240px;
        padding-left: 5%;
    }

    .page-title-content h1 {
        font-size: 32px;
    }
}

/* MAIN ABOUT SECTION */
.about-section {
    padding: 80px 60px;
     padding-top: 60px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    align-items: flex-start;
}

/* IMAGES */
.about-images img {
    width: 75%;
    border-radius: 10px;
    margin-bottom: 25px;
    margin-left: 25px;
    object-fit: cover;
}

/* CONTENT */
.badge {
    display: inline-block;
    background: #f1f1f1;
    color: #555;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.about-content h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-content h3 {
    margin: 25px 0 10px;
    font-size: 20px;
}

.about-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.info-section {
    padding: 50px 0 80px;
}

.info-container {
    max-width: 900px;
    margin: auto;
}

.info-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.info-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}