/* 1. Full screen container */
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. The Ken Burns (Zoom) Animation */
.zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('backimages.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* 3. Dark Overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
    z-index: -1;
}

/* 4. Text and Logo Styling */
.hero-content {
    text-align: center;
    color: white;
    font-family: sans-serif;
    z-index: 1;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 12px 30px;
    background: #008000; /* OSCOTECH Green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
