:root {
    /* Colors */
    --primary-burgundy: #630727;
    --headings-black: #50061F;
    --text-dark: #313517;
    --neutral-color-700: #A43A3F;
    --neutral-color-600: #B35A5E;
    --neutral-color-300: #EDBBBA;
    --neutral-color-200: #EDD8D9;
    --neutral-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Other Variables */
    --spacing: 16px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--neutral-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--headings-black);
    margin: 0 0 var(--spacing) 0;
}

p {
    margin: 0 0 var(--spacing) 0;
}

a {
    text-decoration: none;
    color: var(--primary-burgundy);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--neutral-color-700);
}

button {
    font-family: var(--font-body);
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

button:hover {
    background-color: var(--neutral-color-700);
}


/* Headings */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Paragraph */
p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Buttons */
button {
    font-size: 1rem;
    font-weight: 600;
}

/* Colors */
.text-primary {
    color: var(--primary-burgundy);
}

.text-dark {
    color: var(--text-dark);
}

.bg-primary {
    background-color: var(--primary-burgundy);
}

.bg-light {
    background-color: var(--neutral-color-200);
}

/* Spacing */
.mt-1 { margin-top: var(--spacing); }
.mb-1 { margin-bottom: var(--spacing); }
.pt-1 { padding-top: var(--spacing); }
.pb-1 { padding-bottom: var(--spacing); }

/* Buttons */
.btn {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: background-color var(--transition-speed);
}

.btn:hover {
    background-color: var(--neutral-color-700);
}

/* Header */
header {
    background-color: var(--neutral-white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navbar Layout */
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto; /* Logo (left), Center (links), Button (right) */
    align-items: center;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    justify-content: right; /* Center-align the navigation links */
    padding-right: 55px; /* Add spacing on the left for the logo */
}

.nav-links li a {
    font-family: var(--font-body);
    color: var(--headings-black);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed);
}

.nav-links li a:hover {
    color: var(--neutral-color-700);
}

/* Logo */
.logo {
    justify-self: start; /* Align the logo to the far left */
    padding-left: 55px; /* Add spacing on the left for the logo */
}

.logo img {
    height: 50px;
    max-width: 100%;
}


.menu-btn .btn {
    color: var(--neutral-white); /* Ensure the text is white */
    background-color: var(--primary-burgundy);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    font-size: 0.9rem;
    text-align: center;
}

.menu-btn .btn:hover {
    background-color: var(--neutral-color-700); /* Adjust background on hover */
    color: var(--neutral-white); /* Keep text white on hover */
}


/* Call-to-Action Button */
.cta {
    justify-self: end; /* Align the button to the far right */
    padding-right: 15px;
}

.cta .btn {
    font-family: var(--font-body);
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color var(--transition-speed);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta .btn:hover {
    background-color: var(--neutral-color-700);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        grid-template-columns: auto auto; /* Logo and Menu icon */
        padding: 0 15px;
    }

    .menu-icon {
        display: block; /* Show the menu icon on mobile */
        justify-self: end;
        padding-right: 15px; /* Add spacing on the left for the logo */
    }

    .nav-links {
        display: none; /* Hide the navigation links by default */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--neutral-white);
        padding: 20px;
        gap: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
    }

    .nav-links.active {
        display: flex; /* Show the navigation links when active */
    }

    .nav-links li {
        text-align: center; /* Center-align dropdown links */
    }

    .logo {
        justify-self: start; /* Keep the logo aligned left */
        padding-left: 15px; /* Add spacing on the left for the logo */
    }

    .cta {
        display: none; /* Hide the button on mobile */
    }

    .menu-btn .btn {
        display: block; /* Ensure the button is visible in the dropdown */
        text-align: center;
        margin-top: 10px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw 4vw; /* Adjust spacing with viewport units */
    background-color: var(--neutral-white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns: text and image */
    gap: 2rem; /* Use relative spacing */
    max-width: 90vw; /* Adjust width to viewport */
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 1.5rem; /* Adjust gap between text elements */
}

.hero-text h1 {
    font-size: 4.2rem; /* Adjust font size */
    font-weight: 700;
    color: var(--primary-burgundy);
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-text .btn {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    padding: 0.8rem 1.5rem; /* Padding adjusts the button size */
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block; /* Ensure the button size is based on content */
    width: fit-content; /* Dynamically adjust button size */
    text-align: center; /* Align button text to the center */
    transition: background-color var(--transition-speed);
    margin-top: 1rem;
}

.hero-text .btn:hover {
    background-color: var(--neutral-color-700);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45vw; /* Adjust based on viewport width */
    max-width: 90%; /* Ensure the image doesn't exceed parent container */
    aspect-ratio: 382 / 389.67; /* Maintain the original aspect ratio */
    background-color: var(--neutral-color-200); /* Optional: Frame background color */
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.hero-image img {
    height: 100%; /* Scale image to match the height */
    width: auto; /* Maintain aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr; /* Stack text and image vertically */
        text-align: center; /* Center-align the text and button */
        gap: 2rem;
    }

    .hero-text {
        margin: 0 auto;
        width: 90%; /* Adjust width for smaller screens */
        text-align: center;
        gap: 0.1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 0px;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }

    .hero-text .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .hero-image {
        width: 80vw; /* Use viewport width for the image */
        max-width: 100%; /* Ensure it doesn't exceed the parent container */
        aspect-ratio: 382 / 389.67; /* Maintain the aspect ratio */
        margin: 0 auto;
    }

    
}

/* Offer Section */
.offer-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--neutral-white);
}

.offer-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.offer-section p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem; /* Reduce bottom margin for tighter layout */
}

.offer-cards {
    display: inline-flex;
    gap: 2rem; /* Reduce spacing between cards */
    justify-items: center;
    align-items: start;
    padding: 0; /* Remove extra padding around the cards */
    margin: 0 auto; /* Center the cards in the container */
}

.offer-card {
    background-color: var(--neutral-white);
    border: 1px solid var(--neutral-color-300);
    border-radius: 10px;
    padding: 1.5rem; /* Reduce padding inside the card */
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full-width for the card within the grid */
    max-width: 320px; /* Ensure consistent card width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem; /* Reduce space between card elements */
}

.card-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--primary-burgundy);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card h3 {
    font-size: 1.25rem;
    color: var(--headings-black);
    margin: 0.5rem 0; /* Reduce margin for tighter spacing */
}

.offer-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem; /* Adjust spacing below the text */
}

.btn-outline {
    display: inline-block;
    color: var(--primary-burgundy);
    border: 2px solid var(--primary-burgundy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 auto; /* Center the button */
}

.btn-outline:hover {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-cards {
        display: grid;
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 1rem; /* Reduce space between cards */
    }

    .offer-card {
        max-width: 90%; /* Adjust card width for mobile */
        padding: 1rem; /* Reduce padding for smaller screens */
    }

    .card-image {
        width: 100px;
        height: 100px;
    }
}

/* Gallery Section */
.gallery-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--neutral-white);
}

.gallery-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.gallery-section p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-areas:
        "small-1 large small-2"
        "small-3 large small-4";
    grid-template-columns: 284px 596px 284px; /* Adjust based on dimensions */
    grid-template-rows: 284px 596px;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    height: 600px;
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--neutral-color-200); /* Optional background for containers */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fits within the container */
}

.gallery-item.small {
    width: 284px;
    height: 284px;
}

.gallery-item.large {
    width: 596px;
    height: 596px;
    grid-area: large;
}

.gallery-item.small:nth-child(1) {
    grid-area: small-1;
}

.gallery-item.small:nth-child(2) {
    grid-area: small-2;
}

.gallery-item.small:nth-child(3) {
    grid-area: small-3;
}

.gallery-item.small:nth-child(4) {
    grid-area: small-4;
}

.btn {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--neutral-color-700);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-areas:
            "small-1"
            "small-2"
            "large"
            "small-3"
            "small-4";
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        height: fit-content;
    }

    .gallery-item.small {
        width: 100%;
        height: 284px;
    }

    .gallery-item.large {
        width: 100%;
        height: auto;
    }
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--neutral-white);
    position: relative;
}

.testimonials-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.testimonials-section p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem); /* Show 3 items per slide */
    background-color: var(--neutral-white);
    border: 1px solid var(--neutral-color-300);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.stars {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--neutral-color-700);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 1rem); /* Show 1 item per slide on mobile */
    }
}

/* Footer Styles */
.footer {
    background-color: var(--neutral-white);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--neutral-color-300);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack logo and text vertically */
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}



.about-content {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Keep image and text side by side on desktop */
    justify-content: space-between; /* Space out image and text */
    align-items: center; /* Center-align items vertically */
    gap: 2rem; /* Add spacing between the image and text */
    max-width: 1200px; /* Limit the width of the content */
    margin: 0 auto; /* Center the container */
    padding: 2rem; /* Add padding for spacing */
}

.about-image {
    flex: 1; /* Allow the image container to take proportional space */
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-start; /* Align the image to the left */
    align-items: center; /* Center-align the image vertically */
}

.desktop-image img {
    width: auto; /* Make the image responsive */
    max-width: 500px; /* Limit the maximum width of the image */
    height: 26rem; /* Maintain aspect ratio */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
}

.about-text {
    flex: 1; /* Allow the text container to take proportional space */
    text-align: left; /* Align the text to the left */
    font-size: 1.2rem; /* Increase font size for better readability */
    color: var(--text-dark);
    line-height: 1.8; /* Add line spacing for better readability */
    max-width: 500px; /* Limit the width of the text */
}

.about-text h1 {
    font-size: 2.5rem; /* Make the heading more prominent */
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem; /* Add spacing below the heading */
}

/* Default Hidden Mobile Image */
.mobile-image {
    display: none; /* Hide the mobile image by default */
}

/* Mobile Specific Design */
/* Mobile Specific Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stack the content vertically */
        text-align: center; /* Center-align text */
        padding: 1rem; /* Add padding for spacing */
    }

    .desktop-image {
        display: none; /* Hide the desktop image on mobile */
    }

    .mobile-image {
        display: block; /* Show the mobile image container */
        margin: 1rem auto; /* Add spacing above and center-align */
    }

    .mobile-image img {
        max-width: 90%; /* Ensure the image fits within the container */
        height: auto; /* Maintain aspect ratio */
        border-radius: 8px; /* Add rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for aesthetics */
    }

    .about-text {
        text-align: center; /* Center-align text for mobile */
        max-width: 90%; /* Allow text to expand more on mobile */
    }

    .about-text h1 {
        font-size: 2rem; /* Scale down the heading size for mobile */
    }

    .about-text p {
        font-size: 1rem; /* Adjust text size for better readability */
        line-height: 1.6; /* Slightly reduce line spacing for smaller screens */
    }
}


/* Mission and Vision Section */
.mission-vision-section {
    padding: 4rem 2rem; /* Add spacing around the section */
}

.mission-vision-content {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Arrange text and image side by side */
    justify-content: space-between; /* Space out text and image */
    align-items: center; /* Align text and image vertically */
    max-width: 1200px; /* Limit the content width */
    margin: 0 auto; /* Center the content */
    gap: 2rem; /* Add spacing between text and image */
}

.text-content {
    flex: 1; /* Allow text to take proportional space */
    max-width: 50%; /* Limit the width of the text section */
}

.text-content h3 {
    font-size: 2rem; /* Larger font size for headings */
    color: var(--primary-burgundy); /* Burgundy color for headings */
    margin-bottom: 1rem; /* Add spacing below headings */
}

.text-content p {
    font-size: 1.2rem; /* Slightly larger text for readability */
    color: var(--text-dark); /* Dark text color */
    line-height: 1.8; /* Add line spacing for readability */
    margin-bottom: 2rem; /* Add spacing below paragraphs */
}

.image-content {
    flex: 1; /* Allow image to take proportional space */
    text-align: center; /* Center-align the image */
}

.image-content img {
    width: auto;
    height: 27rem; /* Make the image responsive */
    max-width: 500px; /* Limit the maximum width of the image */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for aesthetics */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mission-vision-content {
        flex-direction: column; /* Stack the text and image vertically */
        text-align: center; /* Center-align the content */
    }

    .text-content {
        max-width: 100%; /* Allow text to expand on mobile */
        text-align: center; /* Center-align text for mobile */
    }

    .image-content {
        margin-top: 2rem; /* Add spacing above the image */
    }

    .image-content img {
        max-width: 90%; /* Make the image fit within the container */
        height: auto; /* Make the image responsive */
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 4rem 2rem; /* Add spacing around the section */
    text-align: center; /* Center-align the title */
}

.section-title {
    font-size: 2.5rem; /* Large font size for the section title */
    color: var(--primary-burgundy); /* Burgundy color for the title */
    margin-bottom: 2rem; /* Add space below the title */
}

.features-grid {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(2, 1fr); /* 2 columns for consistency */
    gap: 2rem; /* Add spacing between grid items */
    max-width: 900px; /* Limit the grid width for smaller cards */
    margin: 0 auto; /* Center the grid */
}

.feature {
    background-color: var(--neutral-white); /* White background for each feature */
    padding: 2rem; /* Add padding inside each feature */
    border-radius: 8px; /* Rounded corners */
    border: 2px solid var(--primary-burgundy); /* Add primary color outline */
    width: 350px; /* Set a smaller width */
    height: 250px; /* Adjust height to make it more square-like */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center-align content */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Hover effect */
    margin: 0 auto; /* Center the card horizontally */
}

.feature:hover {
    transform: translateY(-5px); /* Lift the feature on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Slightly more intense shadow */
}

.feature-icon {
    width: 50px; /* Set a consistent size for the icons */
    height: 50px; /* Set a consistent size for the icons */
    margin-bottom: 1rem; /* Add spacing below the icon */
    fill: #8A3135; /* Set the SVG icon color */
}

.feature h3 {
    font-size: 1.2rem; /* Slightly smaller font size for headings */
    color: var(--primary-burgundy); /* Burgundy color for headings */
    margin-bottom: 0.5rem; /* Add space below headings */
}

.feature p {
    font-size: 0.9rem; /* Smaller font size for feature descriptions */
    color: var(--text-dark); /* Dark text color */
    line-height: 1.4; /* Add spacing between lines */
}

/* Mobile Specific Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* Stack features vertically on small screens */
    }

    .feature {
        width: 90%; /* Expand width slightly for mobile */
        height: auto; /* Adjust height automatically */
        margin-bottom: 1rem; /* Add spacing below each feature */
    }

    .feature-icon {
        width: 40px; /* Slightly smaller icons for mobile */
        height: 40px; /* Slightly smaller icons for mobile */
    }
}


/* Results Section */
.results-section {
    padding: 4rem 2rem; /* Add spacing around the section */
    text-align: center; /* Center-align the title */
}

.results-title {
    font-size: 2.5rem; /* Large font size for the section title */
    color: var(--primary-burgundy); /* Burgundy color for the title */
    margin-bottom: 2rem; /* Add space below the title */
}

.results-grid {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 2rem; /* Add spacing between grid items */
    max-width: 1200px; /* Limit the grid width */
    margin: 0 auto; /* Center the grid */
}

.result {
    text-align: center; /* Center-align each result block */
}

.result-icon {
    width: 50px; /* Set a consistent size for the icons */
    height: 50px; /* Set a consistent size for the icons */
    margin-bottom: 1rem; /* Add spacing below the icon */
    fill: #8A3135; /* Set the SVG icon color */
}

.result h3 {
    font-size: 2rem; /* Larger font size for the numbers */
    color: var(--primary-burgundy); /* Burgundy color for the numbers */
    margin-bottom: 0.5rem; /* Add spacing below the numbers */
}

.result p {
    font-size: 1rem; /* Font size for the descriptions */
    color: var(--text-dark); /* Dark text color */
    line-height: 1.6; /* Add spacing between lines */
}

/* Mobile Specific Design */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr; /* Stack results vertically on small screens */
    }

    .result-icon {
        width: 40px; /* Slightly smaller icons for mobile */
        height: 40px; /* Slightly smaller icons for mobile */
    }

    .result h3 {
        font-size: 1.5rem; /* Scale down the numbers */
    }

    .result p {
        font-size: 0.9rem; /* Adjust text size for better readability */
    }
}

/* Our Process Section */
.process-section {
    padding: 4rem 2rem; /* Add spacing around the section */
    text-align: center; /* Center-align the title and description */
}

.process-title {
    font-size: 2.5rem; /* Large font size for the section title */
    color: var(--primary-burgundy); /* Burgundy color */
    margin-bottom: 1rem; /* Add spacing below the title */
}

.process-description {
    font-size: 1rem; /* Standard font size for the description */
    color: var(--text-dark); /* Neutral dark color */
    margin-bottom: 2rem; /* Add spacing below the description */
    line-height: 1.6; /* Improve readability */
}

.process-grid {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 2rem; /* Add spacing between items */
    max-width: 1200px; /* Limit grid width */
    margin: 0 auto; /* Center the grid */
}

.process-step {
    background-color: var(--neutral-white); /* White background for each step */
    padding: 1.5rem; /* Add padding inside each step */
    border-radius: 8px; /* Rounded corners */
    border: 2px solid var(--primary-burgundy); /* Add a burgundy border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center-align content */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Add hover effect */
}

.process-step:hover {
    transform: translateY(-5px); /* Lift step on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}

.process-icon {
    width: 50px; /* Consistent icon size */
    height: 50px; /* Consistent icon size */
    margin-bottom: 1rem; /* Add spacing below the icon */
    fill: #8A3135; /* Burgundy color for icons */
}

.process-step h3 {
    font-size: 1.5rem; /* Medium font size for step titles */
    color: var(--primary-burgundy); /* Burgundy color */
    margin-bottom: 0.5rem; /* Add spacing below the title */
}

.process-step p {
    font-size: 1rem; /* Font size for step descriptions */
    color: var(--text-dark); /* Neutral dark color */
    line-height: 1.6; /* Add spacing between lines */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr; /* Stack steps vertically on small screens */
    }

    .process-icon {
        width: 40px; /* Smaller icons for mobile */
        height: 40px; /* Smaller icons for mobile */
    }

    .process-step {
        margin-bottom: 1rem; /* Add spacing below each step */
    }
}


/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: #D9A8AC;
    padding: 2rem;
    border-radius: 10px; /* Rounded corners for the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--neutral-white);
}

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

/* Form Items Styling */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-item {
    flex: 1; /* Ensure equal width for items */
    min-width: calc(50% - 0.5rem); /* Adjust width for two fields per row */
}

/* Labels */
label {
    font-size: 0.9rem;
    color: var(--primary-burgundy);
    font-weight: bold;
}

/* Input, Textarea, Select */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 10px; /* Rounded corners for fields */
    border: none;
    background-color: var(--neutral-white);
    color: var(--primary-burgundy);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Placeholder Text */
input::placeholder,
textarea::placeholder {
    color: #aaa;
}

/* Dropdown Styling */
select {
    appearance: none;
    background-color: var(--neutral-white);
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 10px; /* Rounded corners for dropdown */
    border: none;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* File Input Styling */
input[type="file"] {
    background-color: var(--neutral-white);
    padding: 0.8rem;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    border-radius: 10px; /* Rounded corners */
    border: none;
}

/* File List Styling */
#file-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

#file-list li {
    color: var(--primary-burgundy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Larger Textarea for Comments */
textarea {
    resize: vertical;
    height: 150px;
    border-radius: 10px; /* Rounded corners */
}

/* Submit Button */
button {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 10px; /* Rounded corners */
    padding: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #7a2731;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .form-group.row {
        flex-direction: column;
    }

    .form-item {
        min-width: 100%; /* Full width for smaller screens */
    }

    textarea {
        height: 150px; /* Increase height for mobile */
    }
}


/* Fix for Gallery Button */
.gallery-section .btn {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    padding: 10px 16px; /* Adjusted padding for better spacing */
    border-radius: 50px;
    font-size: 0.9rem; /* Slightly smaller font size */
    text-transform: uppercase;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    width: auto; /* Ensures button resizes properly */
    max-width: 90%; /* Prevents it from stretching too wide */
}

/* Keep text color white on hover */
.gallery-section .btn:hover {
    background-color: var(--neutral-color-700);
    color: var(--neutral-white);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .gallery-section .btn {
        font-size: 0.85rem; /* Adjusted font size for small screens */
        padding: 8px 14px; /* Reducing padding so it doesn't cut off */
        max-width: 85%; /* Prevents overflow */
    }
}

/* File Upload Section Styling */
#file-upload-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* File List Styling */
#file-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

#file-list li {
    background-color: var(--neutral-white);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

/* Remove Button */
.remove-file {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background-color: #7a2731;
}


/* Date Input Styling */
.form-item input[type="date"] {
    width: 100%; /* Ensure the input takes the full width */
    padding: 0.8rem; /* Add padding for spacing */
    font-size: 1rem; /* Adjust font size for readability */
    border-radius: 10px; /* Match the rounded corners */
    border: none; /* Remove default border */
    background-color: var(--neutral-white); /* Background color */
    color: var(--text-dark); /* Text color */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for a subtle effect */
}

/* Placeholder Text */
.form-item input[type="date"]::placeholder {
    color: #aaa; /* Placeholder text color */
}

/* Hover and Focus States */
.form-item input[type="date"]:hover {
    background-color: #f2f2f2; /* Slightly lighter background on hover */
}

.form-item input[type="date"]:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 4px rgba(138, 49, 53, 0.5); /* Add a focus effect with primary color */
}
/* Uploaded File List Styling */
#file-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

#file-list li {
    color: var(--primary-burgundy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-item {
    background-color: var(--neutral-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.delete-btn {
    background-color: var(--primary-burgundy);
    color: var(--neutral-white);
    border: none;
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background-color: #7a2731;
}
/* File Input Styling */
input[type="file"] {
    width: 100%; /* Match the width of other input fields */
    padding: 0.8rem; /* Add padding for consistency */
    font-size: 1rem; /* Match font size */
    color: #555; /* Adjust text color */
    background-color: var(--neutral-white); /* Background color */
    border-radius: 8px; /* Rounded corners */
    border: none; /* Remove border */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Inner shadow */
    cursor: pointer;
}


#our-services {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.services-container h2 {
  font-size: 2.5em;
  color: #800020; /* Primary burgundy color */
  margin-bottom: 10px;
  font-weight: 700;
}

.services-container p {
  font-size: 1.2em;
  color: #800020; /* Primary burgundy color */
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
}

.service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #fce8e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  width: 40%;
  height: auto;
}

.service-item h3 {
  font-size: 1.5em;
  color: #800020; /* Primary burgundy color */
  margin-bottom: 10px;
  font-weight: 600;
}

.service-item p {
  font-size: 1em;
  color: #800020; /* Primary burgundy color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }

  .service-item {
    margin-bottom: 20px;
  }

  .services-container h2 {
    font-size: 2em;
  }

  .services-container p {
    font-size: 1em;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-item h3 {
    font-size: 1.2em;
  }

  .service-item p {
    font-size: 0.9em;
  }
}
#our-services {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .services-container h2 {
    font-size: 2.5em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .services-container p {
    font-size: 1.2em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 40px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    justify-content: center;
  }
  
  .service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #800020; /* Outline for each card */
    width: 90%; /* Make the card width smaller */
    margin: 0 auto; /* Center cards in their grid */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #fce8e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .service-icon img {
    width: 40%;
    height: auto;
  }
  
  .service-item h3 {
    font-size: 1.5em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .service-item p {
    font-size: 1em;
    color: #800020; /* Primary burgundy color */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-grid {
      grid-template-columns: 1fr; /* Single column for smaller screens */
    }
  
    .service-item {
      width: 100%; /* Full width on smaller screens */
      margin-bottom: 20px;
    }
  
    .services-container h2 {
      font-size: 2em;
    }
  
    .services-container p {
      font-size: 1em;
    }
  
    .service-icon {
      width: 60px;
      height: 60px;
    }
  
    .service-item h3 {
      font-size: 1.2em;
    }
  
    .service-item p {
      font-size: 0.9em;
    }
  }
  #our-services {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .services-container h2 {
    font-size: 2.5em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .services-container p {
    font-size: 1.2em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 40px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    justify-content: center;
  }
  
  .service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #800020; /* Outline for each card */
    width: 90%; /* Make the card width smaller */
    margin: 0 auto; /* Center cards in their grid */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
  }
  
  /* Icon Background */
  .service-icon {
    width: 72px;
    height: 72px; /* Background circle height */
    margin: 0 auto 20px;
    background-color: #fce8e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* SVG Icon Style */
  .service-icon img {
    width: auto;
    height: 50px; /* Set SVG height */
  }
  
  .service-item h3 {
    font-size: 1.5em;
    color: #800020; /* Primary burgundy color */
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .service-item p {
    font-size: 1em;
    color: #800020; /* Primary burgundy color */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-grid {
      grid-template-columns: 1fr; /* Single column for smaller screens */
    }
  
    .service-item {
      width: 100%; /* Full width on smaller screens */
      margin-bottom: 20px;
    }
  
    .services-container h2 {
      font-size: 2em;
    }
  
    .services-container p {
      font-size: 1em;
    }
  
    .service-icon {
      width: 60px;
      height: 60px; /* Adjust icon background size for smaller screens */
    }
  
    .service-icon img {
      height: 40px; /* Adjust SVG size for smaller screens */
    }
  
    .service-item h3 {
      font-size: 1.2em;
    }
  
    .service-item p {
      font-size: 0.9em;
    }
  }
    

  .instagram-section {
    text-align: center;
    padding: 40px;
    background-color: #fff;
  }
  
  .instagram-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .instagram-section h2 span {
    color: #c0392b; /* Instagram red color */
  }
  
  .instagram-section p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image-box {
    width: 100%;
    padding-top: 100%; /* Makes the container a perfect square */
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5; /* Fallback background */
  }
  
  .image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits within the square without distortion */
  }

  .gallery-section {
    padding: 40px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .gallery-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding-top: 100%; /* Creates square dimensions */
  }

  .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image scaling */
    cursor: pointer;
  }

  /* Lightbox Styling */
  .lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .lightbox:target {
    display: flex; /* Show the lightbox when active */
  }

  /* Close Button */
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    z-index: 1001;
  }

  .lightbox-close:hover {
    color: #c0392b;
  }