/* flexibleStaffing.css */

/* Hero Section */
.hero-section {
    background: #F4F8FF;
    height: 900px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content.reverse {
    flex-direction: row-reverse;
}

.hero-image img {
    max-width: 550px;
    mask-image:linear-gradient(to bottom, rgba(70, 70, 70, 70) 77%, transparent 94%);
    z-index: 1;
    height: 80%;
}

.hero-image {
    z-index: 0;
    width: 900px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #0D2C54;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 1.75rem;
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 150;
}

.hero-text p {
    font-size: 1rem;
    color: #4A4A4A;
    max-width: 480px;
    line-height: 1.5;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 67px;
    left: -61px;
    width: 900px;
    height: 900px;
    background: url('../images/Orange Curve Shape copy.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
}

/* Content Blocks */
.content-block {
    padding: 3rem 0;
}

.block-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.block-inner.reverse {
    flex-direction: row-reverse;
}

.img-wrapper img {
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text-wrapper h3 {
    font-size: 1.5rem;
    color: #0D2C54;
    margin-bottom: 1rem;
    font-weight: 150;
}

.text-wrapper p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.5;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .hero-content, .block-inner, .explore-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img, .img-wrapper img {
        margin: 0 auto;
    }
    .explore-grid {
        gap: 1rem;
    }
}
