/* ==============================
   HERO SLIDER SECTION
   ============================== */

body {
    margin: 0;
    overflow-x: hidden;
} 

/* FORCE FULL WIDTH – OVERRIDE ANY CONTAINER */
.hero-slider-section {
    padding-top: 170px;               /* header height */
    min-height: calc(100vh - 170px);  /* full visible screen */
    box-sizing: border-box;
}

.hero-slider-section {
    position: relative;
    padding-top: 170px;       /* header height */
    min-height: 100vh;
    overflow: hidden;
}

/* Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slider-track {
    display: flex;
    width: calc(100vw * 8);
    height: 100%;
    animation: slideMove 20s linear infinite;
}

.slide {
    min-width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Slider Animation */
@keyframes slideMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-400vw);
    }
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45); /* DIM LEVEL */ 
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 5;

    max-width: 700px;
    margin-left: 80px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 170px);
}

.hero-content-wrapper h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero-content-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 520px;
}

/* Content Box */
.hero-content-box {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
}

.hero-content-box h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 1600;
    margin-bottom: 20px;
}

.hero-content-box h1 span {
    color: #f0c75e;
}

.hero-content-box .tagline {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content-box p {
    font-size: clamp(1.05rem, 2vw, 1.75rem);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 38px;
    background: #1b5e20;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.hero-cta:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}

/* ==============================
   MOBILE VIEW
   ============================== */

@media (max-width: 768px) {

    .hero-content-wrapper {
        padding: 0 8%;
        text-align: center;
    }

    .hero-content-box h1 {
        font-size: 2.6rem;
    }

    .hero-content-box .tagline {
        font-size: 1.3rem;
    }

    .hero-content-box p {
        font-size: 1.05rem;
    }
}   
    