/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 0;
}

.gallery-carousel img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Content with Image Styles */
.content-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.content-with-image img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
footer {
    background: #333;
    color: white;
    padding: 1rem;
}
.carousel-img {
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
}


/* Responsive Design */
@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column;
    }

    .content-with-image img {
        width: 100%;
    }
}
.contact-section {
    background-color: #f8f9fa; /* Light grey background */
    border-top: 3px solid #007bff; /* Blue border for emphasis */
    padding: 3rem 1rem; /* Adequate padding for spacing */
    border-radius: 8px; /* Rounded corners for a soft appearance */
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40; /* Dark grey for better contrast */
    margin-bottom: 1.5rem;
}

.contact-details h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff; /* Primary color for headings */
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.5;
    color: #495057; /* Dark grey for text */
    margin-bottom: 1rem;
}

.contact-link {
    color: #007bff; /* Match email link color to the theme */
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-phone,
.contact-address {
    font-style: italic; /* Subtle emphasis */
    color: #6c757d; /* Muted grey */
}

@media (max-width: 768px) {
    .contact-section {
        text-align: center; /* Center-align text for smaller screens */
    }
    .contact-details {
        margin-bottom: 2rem;
    }
}
