/* Global styles for the holding page */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    background-color: #004085;
    padding: 10px;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    font-size: 18px;
}

.banner-container {
    position: relative;
    max-width: 100%;
    /* margin: 20px auto; */
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 1s ease-in-out; /* Fade transition */
    z-index: 0; /* Make sure it's behind */
}

.banner-slide.active {
    opacity: 1; /* Make active slide visible */
    z-index: 1; /* Bring it in front */
}

/* Add these changes below the .banner-slide rules */
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container without distortion */
    object-position: center; /* Centers the image in the container */
}

.banner-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.banner-text h2 {
    margin: 0;
    font-size: 24px;
}

.banner-text p {
    font-size: 16px;
}

.services {
    margin: 40px 0;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.services p {
    font-size: 16px;
    color: #666;
}

.enquiry-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.enquiry-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.enquiry-section form input,
.enquiry-section form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.enquiry-section form button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.enquiry-section form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #004085;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}
