/* GLOBAL */
body {
    background-color: #F5F4F0;
    color: #000000;
    margin-top: 56px;
}

/* ================= HERO ================= */

.hero-section{
    margin-top: 32px !important;
}

.hero-title {
    font-size: 72px;
    line-height: 1.2;
    font-family: f1;
}

.hero-title span {
    color: #ff7a00;
}

.hero-text {
    margin: 20px 0;
    color: black;
    max-width: 500px;
    font-family: f2;
    font-size: 16px;
}

.btn-brand {
    background-color: #ff7a00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: #ff9333;
}

.hero-img {
    /* max-height: 420px; */
    height: 100% !important;
}


/* Section Title */
.section-title h4 {
    font-weight: 600;
    letter-spacing: 1px;
}

.title-line {
    width: 40px;
    height: 2px;
    background-color: #2c4a6b;
}

/* Card */
.career-card {
    transition: all 0.3s ease;
}

/* Image */
.card-img {
    overflow: hidden;
    border-radius: 6px;
}

.card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.career-card:hover img {
    transform: scale(1.05);
}

/* Content */
.card-body {
    padding-top: 15px;
}

.card-body h5 {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Link */
.know-more {
    text-decoration: none;
    color: #CE5407;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.know-more span {
    transition: transform 0.3s ease;
}

/* Arrow Animation */
.know-more:hover span {
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .hero-title  {
        font-size: 56px;
    }
}