/* =========================================================
   HERO.CSS — Home, About, Services Hero Sections
   Sixmoons Corporate Theme
========================================================= */


/* ---------------------------------------------------------
   GENERIC HERO BASE STYLE
--------------------------------------------------------- */

.hero-base {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.20);
    z-index: -2;
    filter: saturate(1.05);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0, 30, 96, 0.85), rgba(0, 86, 209, 0.7)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 40%);
    z-index: -1;
    mix-blend-mode: multiply;
}

/* Content */
.hero-content {
    padding-top: 120px;
    text-align: center;
    color: white;
}

.hero-kicker {
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-title .text-blue {
    color: #cde5ff;
}

.hero-desc {
    max-width: 720px;
    margin: 22px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #e5ecff;
}

/* Hero Buttons */
.hero-btns {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ---------------------------------------------------------
   HOME HERO (HERO SECTION)
--------------------------------------------------------- */
.hero-section {
    height: 100vh;
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {

    background-image: url('../images/construction.jpg');


}

/* ---------------------------------------------------------
   ABOUT PAGE HERO
--------------------------------------------------------- */

.about-hero {
    height: 60vh;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/industrial-tech-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.22);
    filter: brightness(0.9);
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,30,96,0.85), rgba(0,86,209,0.7)),
        linear-gradient(180deg, rgba(0,0,0,0.45), transparent 40%);
    z-index: -1;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-hero-content p {
    font-size: 18px;
    color: #e6ecff;
    max-width: 750px;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   SERVICES HERO
--------------------------------------------------------- */

.services-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/industrial-tech-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    z-index: -2;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,30,96,0.85), rgba(0,86,209,0.7));
    z-index: -1;
}

.services-hero .hero-content h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
}

.services-hero .hero-content p {
    color: #e6ecff;
    font-size: 18px;
}


/* ---------------------------------------------------------
   RESPONSIVE HERO ADJUSTMENTS
--------------------------------------------------------- */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .about-hero-content h1 {
        font-size: 38px;
    }
    .services-hero .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-content {
        padding-top: 110px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .services-hero .hero-content h1 {
        font-size: 28px;
    }
    .about-hero-content h1 {
        font-size: 30px;
    }
}
