/* --- General Layout --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.banner {
    width: 100%;
}

.responsive-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.image-container {
    margin-bottom: 15px;
}

.feature-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

/* --- Horizontal Scroll Gallery --- */
.scroll-gallery {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-title {
    text-align: center;
    margin-bottom: 20px;
}

.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.scroll-container img {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scroll-container img:hover {
    transform: scale(1.05);
}

/* --- About Section --- */
.about-us-container {
    background: #fff;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
/* Add this to the bottom of your style.css */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Optional: Smooth scrolling when clicking sitemap links */
html {
    scroll-behavior: smooth;
}
