/* Hero Section */
.hero-section {
    background: url('https://www.fortray.com//assets/img/about-us-banners/about-us-page-image-2-1x.webp');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}



.hero-content .highlight {
    color: #df451d;
    font-weight: 500;
}

.scroll-down {
    background-color: #df451d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.scroll-down:hover {
    transform: translateY(5px);
}





.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
}

.intro-text .dot {
    color: var(--secondary-color);
    font-weight: bold;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    position: relative;
    padding-left: 40px;
    display: inline-block;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    transform: translateY(-50%);
}

.mission-text {
    font-size: 28px;
    line-height: 1.6;
    color: #222;
    font-weight: 500;
}

.mission-text .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}