/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}

.container-sector {
    display: flex;
    height: 100vh;
}

.option {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s ease;
    position: relative;
    overflow: hidden;
}

.option:hover {
    flex: 1.5;
}

.content {
    text-align: center;
    color: white;
    z-index: 2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Background Images */
#government {
    background-image: url('index/image1.jpeg'); /* Image for Government */
}

#private {
    background-image: url('index/image2.jpeg'); /* Image for Private */
}

#commercial {
    background-image: url('index/image3.jpeg'); /* Image for Commercial */
}

/* Overlay for better readability */
.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}