/* Home Section Specific Styles */
.home-section {
    position: relative;
    min-height: 768px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.home-section .container {
    position: relative;
    z-index: 2;
}

.home-section h1 {
    font-size: 3rem; /* Large, eye-catching title */
    color: white; /* Ensure text is white */
}

.home-section p {
    font-size: 1.5rem; /* Subtitle size */
    color: white; /* Ensure text is white */
}

.btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Ensure the image covers the container */
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.background-carousel.active {
    opacity: 1;
}
