/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Ensure the background covers the entire page */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2; /* 60% Background */
    color: #333; /* Neutral text color for readability */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navigation Bar */
.navbar {
    background-color: #A41034; /* 10% Accent */
    color: #fff; /* White text for contrast */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar a {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    .navbar a {
        font-size: 0.9rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 2rem; /* Space between logo and text */
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px; /* Proportional height */
    width: auto; /* Maintains aspect ratio */
}

/* Navigation Links */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #fff; /* White for consistency */
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #004a99; /* 30% Accent */
    border-radius: 5px;
}

/* Banner Section */
.banner {
    text-align: center;
    padding: 8rem 3rem;
    color: #fff;
    background-image: url('../image/BannerBG.png'); /* Adjust the path as needed */
    background-size: cover; /* Cover the entire banner area */
    background-position: center 66%; /* Adjust to show more of the lower part */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;

}

.cta-button {
    text-decoration: none;
    color: #fff;
    background-color: #A41034; /* 30% Accent */
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #800020; /* 10% Accent */
}

/* Content Section */
.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8); /* Slight transparency for readability */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-column {
    margin-bottom: 2rem;
}

.text-column h2 {
    color: #A41034; /* 10% Accent */
    margin-bottom: 1rem;
}

.text-column p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333; /* Neutral text color */
}

.text-column ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: #333; /* Neutral text color */
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
.footer {
    background-color: #A41034; /* 10% Accent */
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #004a99; /* 30% Accent */
}

.social-media a {
    display: inline-block;
    margin: 0 0.5rem;
}

.social-media img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-media img:hover {
    transform: scale(1.2);
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Adjust size as needed */
    gap: 1rem; /* Space between items */
    padding: 1rem; /* Padding around the grid */
}

.image-grid a {
    text-decoration: none; /* Removes underline from links */
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

.image-grid img:hover {
    transform: scale(1.1) rotate(5deg); /* Zoom and rotate */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-container {
        padding: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
