/* --- SPLIT SCREEN HERO STYLES --- */

/* Ensure the hero column gets the gradient, NOT the whole page background */
.hero-section {
    background: linear-gradient(135deg, #1a4a34 0%, #0d251a 100%);
    position: relative;
    /* Remove padding: 100px 0; as we are now using flexbox centering */
}

/* Optional pattern overlay for the green side */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 25%);
    pointer-events: none;
}

/* Button override for the Green background */
.btn-hero-primary {
    /* We used btn-light in HTML, so this is just extra safety */
    transition: transform 0.2s;
}

/* --- TECH BOX STYLES --- */
.tech-box {
    transition: all 0.2s ease;
    cursor: default;
}

.tech-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff !important; /* White highlight on hover */
    border-color: #1a4a34 !important; /* Green border on hover */
}

/* Ensure the main container takes full height minus navbar if needed */
.min-vh-100 {
    min-height: calc(100vh - 76px) !important; /* 76px is approx Navbar height */
}