.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 70%, var(--color-a) 100%), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    /* Removed align-items: center; justify-content: center; text-align: center; */
    color: var(--color-c); /* Changed from var(--white) */
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}



.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.btn-hero {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-c);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.hero-text-bottom-left {
    position: absolute;
    bottom: 100px; /* Moved more upper */
    left: 50px; /* Adjust as needed for padding from left */
    color: var(--color-c); /* White text for contrast */
    font-size: 3rem; /* Increased size */
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2; /* Ensure it's above the overlay */
    font-family: 'Poppins', sans-serif; /* Professional font */
    animation: fadeInUp 1s ease 0.5s both; /* Added animation */
}

.scroll-animation-green {
    color: var(--color-a); /* Solid dark green */
    font-size: 4.5rem; /* Further increased size */
    font-weight: 700;
    display: inline-block; /* Allows for transform effects */
    font-family: 'Poppins', sans-serif; /* Professional font */
    text-shadow: 0 0 10px rgba(212, 227, 138, 0.9), /* More prominent light glow from --color-b */
                 0 0 20px rgba(212, 227, 138, 0.7); /* Even stronger light glow from --color-b */
}
