/* HERO LOGO SECTION */
.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 24px;
}
.hero-logo-large {
    width: 220px;
    max-width: 90vw;
    height: auto;
    display: block;
}
.hero-tagline {
    margin-top: 16px;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: var(--font-weight-black);
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: capitalize;
}

/* GET STARTED BUTTON */
.hero-get-started {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 32px;
    background: #d6763f; /* Schar orange */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 118, 63, 0.3);
}

.hero-get-started:hover {
    background: #c15d2a; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 118, 63, 0.4);
    color: white;
}

.hero-get-started:active {
    transform: translateY(0);
}

/* HERO BOXES BACKGROUND AND OVERLAY */
/* Remove section-wide background and overlay */
.hero-boxes-bg {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 24px;
    padding: 48px 0 32px 0;
    background: none;
}
.hero-boxes-overlay { display: none; }

.hero-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.hero-box {
    position: relative;
    background: url('../images/ChatGPT Image Jul 16, 2025, 01_11_44 AM.png') center center/cover no-repeat;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 28px 32px 28px;
    min-width: 220px;
    max-width: 270px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hero-box > * {
    position: relative;
    z-index: 2;
}
.hero-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    border-radius: 24px;
    opacity: 0.7;
}
.hero-box.vision::before,
.hero-box.values::before {
    background: #d6763f;
}
.hero-box.mission::before,
.hero-box.quality::before {
    background: #1a458a;
}

.hero-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 18px 0 10px 0;
    letter-spacing: 0.04em;
    color: #fff;
}
.hero-box p {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-icon {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-accent {
    display: block;
    width: 36px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    margin: 10px auto 16px auto;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .hero-boxes {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-box {
        padding: 28px 10px 24px 10px;
        min-width: 160px;
        max-width: 200px;
        flex: 1 1 calc(50% - 8px); /* 2 boxes per row with gap consideration */
    }
    .hero-logo-large {
        width: 150px;
    }
    .hero-get-started {
        font-size: 1.1rem;
        padding: 14px 28px;
    }
}
@media (max-width: 600px) {
    .hero-boxes {
        flex-direction: column;
        gap: 18px;
        flex-wrap: nowrap;
    }
    .hero-boxes-bg {
        padding: 24px 0 16px 0;
    }
    .hero-box {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        flex: 1 1 auto; /* Reset flex properties for single column */
    }
    .hero-logo-section {
        margin-top: 18px;
        margin-bottom: 10px;
    }
    .hero-get-started {
        font-size: 1rem;
        padding: 12px 24px;
        margin-top: 20px;
    }
} 