body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between; /* Spread logo and nav menu */
    align-items: center;
    background-color: var(--header-background-color);
    width: 100%;
    box-sizing: border-box; /* Include padding in width calculation */
}

footer {
    background-color: var(--footer-background-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

header nav ul li a,
footer a {
    color: var(--link-hover-color);
    text-decoration: none; /* Remove underlines from links */
}

header nav ul li a:hover,
footer a:hover {
    text-decoration: underline; /* Optional underline on hover */
}

.header-left {
    flex: 1; /* Align the logo to the far left */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-left a img {
    height: 60px;
    width: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-background-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    flex: 1; /* Allows main to expand and push footer down */
}

.main-nav {
    flex: 2; /* Center the navigation menu */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Navigation Menu Styling */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem; /* Space between navigation items */
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--main-nav-hover-color);
}

.header-cta {
    flex: 1; /* Reserve space for future right-aligned content */
    display: flex;
    justify-content: flex-end;
}

/* Call-to-Action Button */
.header-cta .cta-button {
    text-decoration: none;
    background-color: var(--cta-background-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.header-cta .cta-button:hover {
    background-color: var(--cta-hover-background-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav ul {
        display: none; /* Hide menu on smaller screens */
    }
    .header-cta {
        margin-left: auto;
    }
}


/* Footer Styling */
footer {
    background-color: var(--footer-background-color); /* Dark Purple Background */
    color: var(--footer-text-color); /* White Text */
    display: flex;
    justify-content: space-between; /* Spread left, center, and right sections */
    align-items: center;
    flex-wrap: wrap; /* Prevent wrapping for alignment sections */
    padding: 0.5rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
}

.footer-left {
    flex: 1; /* Align to the far left */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-center {
    flex: 1; /* Center terms and privacy links */
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-right {
    flex: 1; /* Align social media icons and text to the far right */
    display: flex;
    justify-content: flex-end;
    gap: 1rem; /* Add spacing between social media items */
}

.footer-left img {
    padding: 10px; /* Adjust padding value as needed */
    height: 50px; /* Maintain consistent image height */
    width: auto; /* Ensure aspect ratio is preserved */
}

.footer-center {
    justify-content: center; /* Center-align terms and privacy links */
}

.footer-center a {
    color: var(--footer-link-color);
    text-decoration: none;
    margin: 0 0.5rem; /* Add spacing between links */
}

.footer-center a:hover {
    text-decoration: underline;
}

.footer-right a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--footer-link-color);
    gap: 0.5rem; /* Add spacing between icon and text */
}

.footer-right a i {
    font-size: 44px; /* Set icon size */
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right a:hover i {
    color: var(--footer-link-hover-color);
}

@media (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack footer sections on smaller screens */
        text-align: center;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center; /* Center all sections */
        margin: 0.5rem 0; /* Add spacing between stacked sections */
    }
}


.contact-content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: var(--cta-background-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: var(--cta-hover-background-color);
}


/* Carousel Section Styling */
.carousel {
    position: relative;
    width: 100%;
    height: 76vh; /* Set the maximum height of the carousel */
    overflow: hidden;
}

.carousel-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%; /* Each slide takes up full screen width */
    position: relative;
}

.carousel-slide img {
    width: 100%; /* Ensure images scale to full width */
    height: 100%; /* Adjust height to fit the container */
    object-fit: cover; /* Ensure images cover the available space without distortion */
    max-height: 76vh; /* Limit height to 80% of the viewport */
}

.carousel-caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 15px;
    height: 15px;
    background-color: var(--carousel-dot-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--carousel-dot-active-color);
}

/* About Page Styles */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    gap: 2rem; /* Space between text and image */
}

.about-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image {
    flex: 1; /* Occupy half the space */
    max-width: 50%; /* Limit the width to 50% of the container */
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
}

.about-image img {
    max-width: 70%; /* Ensure the image scales within the container */
    height: auto; /* Maintain the aspect ratio */
}



/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel {
        height: 50vh; /* Reduce height for smaller screens */
    }

    .carousel-caption {
        font-size: 1rem; /* Reduce font size for captions */
        padding: 0.5rem;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%; /* Allow full width for each section */
    }

    .about-image img {
        max-width: 80%; /* Reduce image size on smaller screens */
    }
}

/* Responsive Navigation Menu */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column; /* Stack menu items vertically */
        gap: 1rem;
        display: block; /* Ensure the menu is visible */
        background-color: var(--background-color);
        padding: 1rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack sections vertically */
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        justify-content: center; /* Center all sections */
        margin: 0.5rem 0; /* Add spacing between stacked sections */
    }
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        width: 100%; /* Full width for input fields */
    }

    .contact-content {
        padding: 1rem; /* Reduce padding for smaller screens */
    }
}

