/* Premium home styles: modern hero, service cards, buttons */
:root {
    --brand-green: #00b050;
    --brand-accent: #ea6b14;
    --brand-dark: #0b0b0b;
}

.premium-hero {
    position: relative;
    height: 70vh;
    display: block;
    background: linear-gradient(180deg, rgba(3,9,23,0.6), rgba(3,9,23,0.4)), url('/Images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
}

    .premium-hero .hero-overlay {
        width: 100%;
        height: 100%;
    }

.badge-level {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 30px;
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 12px
}

.brand-title {
    font-size: 2.6rem;
    margin: 0.2rem 0 0.5rem;
    font-weight: 800
}

    .brand-title .brand-green {
        color: var(--brand-green)
    }

    .brand-title .brand-accent {
        color: var(--brand-accent)
    }

    .brand-title .brand-black {
        color: #fff
    }

.hero-subtitles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px
}

    .hero-subtitles span {
        background: rgba(255,255,255,0.06);
        padding: 6px 10px;
        border-radius: 6px;
        font-weight: 600
    }

.hero-cta .btn {
    background: var(--brand-green);
    border-color: var(--brand-green);
    padding: 12px 28px;
    font-weight: 700
}

    .hero-cta .btn:hover {
        background: #0f8f44
    }

/* Services cards improvements: make icons stand out */
.service_icons {
    background: linear-gradient(180deg,#0b0b0b,rgba(0,0,0,0.6));
    color: #fff;
    padding: 22px;
    border-radius: 10px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom:15px;
        
}

    .service_icons img {       
        margin-bottom: 12px
    }

    .service_icons h3 {
        font-size: 1rem;
        margin: 8px 0
    }

/* About section tweaks */
.about-content {
    padding: 18px
}

    .about-content .top-header {
        font-size: 1rem;
        color: var(--brand-dark);
        font-weight: 700
    }

/* Why us cards */
.whyus_image .service_icons {
    background: transparent;
    color: #222;
    padding: 10px
}

@media (max-width:767px) {
    .brand-title {
        font-size: 1.6rem
    }

    .premium-hero {
        height: 56vh
    }
}

/* Fallback if hero image is missing */
.premium-hero {
    background-color: #071427
}

/* Ensure existing small page banners use premium look */
.home-landing-image {
    position: relative;
    display: block;
    background: linear-gradient(180deg, rgba(3,9,23,0.03), rgba(3,9,23,0.02));
    padding: 36px 0;
}

.home-landing-image #title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-align: center;
}

.override-height50 {
    min-height: 18vh;
}

.override-height70 {
    min-height: 28vh;
}

/* Small hero variant used on internal pages */
.premium-hero.small {
    height: 36vh;
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover;
    background-position: center;
}

/* Slide background helper (applies to premium-hero) */
.premium-hero.slide-fade {
    transition: background-image 1s ease-in-out;
}

/* Slideshow controls */
.premium-hero .hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 40;
}
.premium-hero .hero-controls .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all .2s;
}
.premium-hero .hero-controls .dot.active {
    background: var(--brand-green);
    transform: scale(1.2);
}
.premium-hero .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 45;
}
.premium-hero .hero-arrow.left { left: 22px; }
.premium-hero .hero-arrow.right { right: 22px; }
.premium-hero .hero-arrow:hover { background: rgba(0,0,0,0.6); }

/* Pause overlay when hovering - for pointer affordance */
.premium-hero.pause-on-hover { cursor: default; }

/* Accessibility focus ring */
.premium-hero .hero-arrow:focus,
.premium-hero .hero-controls .dot:focus {
    outline: 2px solid rgba(255,255,255,0.12);
    outline-offset: 2px;
}
