body, header, nav, main, footer, img, h1, ul, p {
    margin: 0;
    padding: 0;
    border: 0;
}
body{
    background-color: #fbfaf8;
    font-family: 'Ivyora Text', sans-serif;
    font-weight: normal !important;
}

@font-face {
    font-family: 'Ivyora Text';
    src: url('fonts/IvyOraText-Light.ttf') format('truetype');
    font-weight: normal !important;

}

* {
    box-sizing: border-box;
}

header {
    text-align: center;
    font-size: 0.4em;
    color: #AE8E71;
    height: 4.5vh;
    background-color: #F6ECDD; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    font-weight: bold;
    
}
header h1 {
    font-family: 'Lato', Arial, sans-serif;

    margin: 0;
    letter-spacing: 0.8PX;
    font-weight: bold;
}
/*----------------------------------------------------------------------Navigation-----------------------------------------------------*/
/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 5%;
    background-color: white;
    color: #555;

    position: relative; /* Ensure positioning for dropdown adjustments */
    z-index: 10;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease; /* Smooth transition for resizing */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #403e3e;
    font-weight: 510;
    padding: 8px 15px;
    text-transform: uppercase; /* Convert text to uppercase */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 15; /* Ensure hamburger stays above dropdown */
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #555;
    margin: 3px 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Positioned just below the hamburger menu */
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        z-index: 5; /* Ensures dropdown stays below hamburger */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for aesthetics */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 30px; /* Smaller size for mobile view */
        width: auto;
    }
}



  
/*-----------------------------------------------------------------------Index----------------------------------------------------------------------------------*/
/* Main container */
.container {
    font-weight: normal !important;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Content wrapper for side-by-side layout */
.content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    width: 100%;
    height: 100%;
    align-items: stretch; /* Ensures equal height of columns */
}

/* Left content section */
.content {
    flex: 1 1 45%; /* Takes 45% width, shrinks when necessary */
    background-color: #f0dac5;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    box-sizing: border-box; 
}

/* Divider styling */
.divider {
    height: 20px;
    width: 100%;
    position: relative;
}
/* Divider styling */
.divider {
    height: 20px;
    width: 100%;
    position: absolute; 
}

.content .divider:first-of-type {
    position: absolute; 
    top: 0; 
    left: 0;
}
.divider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f0dac5 25%, white 25%, white 50%, #f0dac5 50%, #f0dac5 75%, white 75%);
    background-size: 30px 30px;
}

/* Bottom divider styling */
.content .divider:last-of-type {
    margin-top: auto; /* Ensures it stays at the bottom */
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Right image section */
.image {
    flex: 1 1 55%; /* Takes 55% width, shrinks when necessary */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

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

/* Styling for text on the left side */
.inner-container {
    padding: 20px;
}

/* Heading style */
.engravers-heading {
    font-family: 'Ivyora Text', sans-serif;
    font-size: 2.5rem;
    color: grey;
    font-weight: normal !important;
}

/* Subtext style */
.priority-text {
    font-family: 'Ivyora Text', sans-serif;
    font-size: 1.5rem;
    color: #666;
}

/* Button style */
.shop-now-btn {
    margin: 10px;
    font-family: "Arial", sans-serif;
    background-color: #ae8e71cf;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; 
    }

    .content {
        flex: 1 1 100%; 
        padding: 15px;
    }

    .image {
        flex: 1 1 100%; 
    }

    .inner-container {
        padding: 15px; 
    }

    .engravers-heading {
        font-size: 2rem; 
    }

    .priority-text {
        font-size: 1.2rem;
    }

    .shop-now-btn {
        padding: 8px 16px; /* Adjust button size */
    }
}

@media (max-width: 480px) {
    .inner-container {
        padding: 10px; /* Further reduce padding */
    }

    .engravers-heading {
        font-size: 1.8rem;
    }

    .priority-text {
        font-size: 1rem;
    }

    .shop-now-btn {
        padding: 6px 12px;
    }
}


/* Container 2 Styles */
.container2 {
    display: flex; 
    flex-wrap: nowrap; 
    align-items: center; 
    justify-content: space-between; 
    height: 80vh; 
    padding: 20px;
}

/* Image Section */
.container2 {
    font-family: 'Ivyora Text', sans-serif;
    font-weight: normal !important;
    display: flex; 
    flex-wrap: nowrap; 
    align-items: center; 
    justify-content: space-between; 
    height: 70vh; 
    margin-top: 100px; 
    padding: 0; 
    font-weight: normal !important;
}

/* Image Section */
.container2 .image {
    flex: 0 0 55%; /* Take half the screen width */
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Text Section */
/* Text Section */
.container2 .content {
    flex: 0 0 45%; /* 45% width for the text section */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    padding: 20px; 
    box-sizing: border-box; 
    text-align: center; 
    background-color: white; 
}

.container2 .section-heading {
    font-size: 2.5rem; /* Adjust font size */
    color: #2c3e50; 
    margin-bottom: 20px;

}

.container2 .section-text {
    font-size: 1.2rem; /* Adjust font size */
    color: #7f8c8d; 
    margin-bottom: 20px;
    text-align: center; /* Center align text */
}
.container2 .shop-now-btn {
    padding: 10px 20px;
    background-color: #5dade2; /* Blue */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container2 .shop-now-btn:hover {
    background-color: #3498db; /* Darker blue */
}

/* Third Section Styling */
        /* Special Navigation Section */
        .container3 {
            font-family: 'Ivyora Text', sans-serif;
            font-weight: normal !important;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh; /* Full viewport height */
            padding: 20px;
            text-align: center;
            background-color: white; /* White background for the container */
        }

        .container3 h1 {
            font-size: 3em;
            color: #4D4BA8; /* Rich purple for heading */
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .container3 p {
            font-size: 1.2em;
            color: #6B6B6B;
            margin-bottom: 40px;
            max-width: 700px;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns for 3 images */
            gap: 40px; /* Spacing between items */
            width: 100%;
            max-width: 1200px;
        }

        .nav-item {
            position: relative;
            background-size: cover; /* Set image as background */
            background-position: center;
            height: 500px;
            cursor: pointer;
        }

        .nav-item .text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white; /* White background for the text */
            padding: 15px;
            text-align: center;
        }

        .nav-item h3 {
            font-size: 2em;
            color: #333; /* Dark text color */
            margin-bottom: 5px;
            font-weight: normal !important;
        }

        .nav-item p {
            font-size: 1em;
            color: #666; /* Gray text for description */
        }

/*--------------------------------------------------------------Media---------------------------------------------------------------*/
body{
    background-color: #fbfaf8;
    font-family: 'Ivyora Text', sans-serif;
    font-weight: normal !important;
}

/* Media page main content */
#media-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro Section */
#media-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: rgba(103, 102, 102, 0.715);
    background-color: white;
}

#media-intro p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

/* Product Gallery */
#product-gallery {
    margin-bottom: 40px;
}

#product-gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-item {
    width: 48%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.gallery-item p {
    padding: 10px;
    background-color: #f4f4f4;
    color: #333;
    font-size: 1.1rem;
}

/* Product Video Section */
#product-video h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#product-video video {
    width: 100%;
    height: auto;
}

/* Testimonials Section */
#testimonials {
    margin-bottom: 40px;
}

#testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#testimonials blockquote {
    background-color: #ead8c8 !important;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-left: 5px solid #AE8E71;
}

#testimonials footer {
    font-size: 1rem;
    color: #666;
    background-color:  #ead8c8 !important;
}

/* Social Media Links Section */
#social-media h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#social-media ul {
    list-style-type: none;
}

#social-media li {
    display: inline-block;
    margin: 0 10px;
}

#social-media a {
    color: #AE8E71;
    font-size: 1.2rem;
    text-decoration: none;
}

#social-media a:hover {
    text-decoration: underline;
}

/* Divider styling */
#custom-header-divider {
    position: relative;
    height: 20px; /* Height of the divider */
}

#custom-header-divider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f0dac5 25%, white 25%, white 50%, #f0dac5 50%, #f0dac5 75%, white 75%);
    background-size: 30px 30px;
    z-index: -1; /* Ensure the gradient stays behind content */
}

        /* Specific header styling */
#custom-header {
    height: 35vh; /* Height is 30% of the viewport height */
    background-color: #f0dac5;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: 'Ivyora Text', sans-serif;
    font-weight: normal !important;
}

#custom-header h1 {
    font-weight: normal !important;
    margin: 0;
    font-family: 'Ivyora Text', sans-serif;
    font-size: 2.5rem; /* Adjust size as needed */
    color: rgb(85, 84, 84); /* Change color to fit design */
}


#custom-header p {
    margin: 10px 0 0;
    font-size: 1rem; /* Adjust size as needed */
    color: rgb(85, 84, 84); /* Change color to fit design */
}

/*-----------------------------------------------------------------Specials-----------------------------------------------------------------*/
/* General Reset */
/*body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f6f6f6;
    color: #333;
    padding: 20px;
}*/



/* Product of the Week */
#specials-product-of-week {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f8f2ed;
    border-left: 5px solid #AE8E71;
}
#product-week-header {
    font-size: 2.5rem;
    font-weight: normal !important;
    text-align: center;
    color: #5e5c5b;
    margin-bottom: 20px;
    font-family: 'Ivyora Text', sans-serif;

}
.product {
    display: flex;
    gap: 100px;
    align-items: center;
}
.product img {
    width: 400px;
    border-radius: 8px;
    padding-left: 40px;
}
.product-info p {
    font-size: 1rem;
    text-align: center;
    
}

/* Weekly Sales */
#specials-weekly-sales {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    background:  #f8f2ed;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #AE8E71;
}
#sales-header {
    text-align: center;
    color: #5e5c5b;
    font-size: 2rem;
    font-weight: normal !important;
    margin-bottom: 20px;
}
.sales-items {
    
    display: flex;
    gap: 20px;
    justify-content: center;
}
.sales-item {
    text-align: center;
}
.sales-item img {
    width: 250px;
    border-radius: 8px;
}
.sales-item p {
    margin-top: 10px;
    font-size: 1rem;
}

/* Guarantee */
#specials-guarantee {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    background: #f8f2ed;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #AE8E71;
}
#guarantee-header {
    color: #5e5c5b;
    font-size: 2rem;
    text-align: center;
    font-weight: normal !important;
    margin-bottom: 20px;
}
.guarantee-content {
    display: flex;
    gap: 20px;
    align-items: center;
}
.guarantee-content img {
    width: 400px;
    border-radius: 8px;
}
.guarantee-content p {
    font-size: 1rem;
}

/* Why Choose Us */
#specials-why-choose-us {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    background: #f8f2ed;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #AE8E71;
}
#why-choose-header {
    color: #5e5c5b;
    font-size: 2rem;
    font-weight: normal !important;
    text-align: center;
    margin-bottom: 20px;
}
.why-choose-us ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.why-choose-us li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.why-choose-us img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.product-info {
    text-align: center; /* This will center text and inline elements like the button */
    margin-top: 20px;
}

.shop-now-btn {
    display: inline-block; /* Makes the button an inline element so it can be centered */
    background-color: #ae8e71; /* Button color */
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
    /* Ensure button is centered using margins */
    margin-left: auto;
    margin-right: auto;

}

.shop-now-btn:hover {
    background-color: #ae8e71; /* Hover color */
    transform: scale(1.05);
}

.shop-now-btn:active {
    transform: scale(1);
}
.parent-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */

}

.shop-now-btn {
    padding: 12px 24px; /* Adjust button padding */
    background-color: #ae8e71; /* Button color */
    color: white; /* Text color */
    border-radius: 8px; /* Rounded corners */
    font-size: 1.2rem; /* Font size */
    text-decoration: none; /* Remove underline */
}
/*-------------------------------------------------------------------Training---------------------------------------------------------------*/
.training-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table caption {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #4D4BA8;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #4D4BA8;
    color: white;
}

tr:nth-child(even) {
    background-color: #F2F2F2;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Additional Info */
.additional-info h3 {
    font-size: 1.5em;
    margin-top: 20px;
}

.additional-info p {
    font-size: 1.2em;
    margin-top: 10px;
}

/*-------------------------------------------------------------------About------------------------------------------------------------------*/

/* Main Content Styling */
.about-content {
    padding: 40px;
}

section {
    background: #f8f2ed;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: normal !important;
    border-left: 5px solid #AE8E71;

}

section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-style: normal !important;
    color: rgb(85, 84, 84);
}

section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
    font-style: normal !important;
}

.reasons-section ol {
    margin-left: 20px;
    padding-left: 20px;
}

.reasons-section li {
    margin-bottom: 10px;
}

.guarantee-section strong {
    color: rgb(85, 84, 84);
}

/* Testimonials Styling */
.testimonials-section {
    background-color: #f8f2ed;
    padding: 30px;
    border-radius: 10px;
}

.testimonial {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
}

/* Call to Action Section */
.cta-section {
    background-color: #f8f2ed;
    color: white;
    padding: 40px;
    text-align: center;
}

.cta-button {
    text-decoration: none;
    color: white;
    background-color: #ad8d71;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #664c34;
}


/* Responsive Design */

/* Mobile View */
@media (max-width: 768px) {
    .about-header .header-content h1 {
        font-size: 2.5em;
    }

    .about-header .header-content p {
        font-size: 1.1em;
    }

    .about-content {
        padding: 20px;
    }

    section h2 {
        font-size: 1.8em;
    }

    section p {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 8px 15px;
    }
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
    .about-header .header-content h1 {
        font-size: 2.8em;
    }

    .about-header .header-content p {
        font-size: 1.2em;
    }

    .about-content {
        padding: 30px;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1.2em;
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    .about-content {
        padding: 50px;
    }

    section {
        padding: 40px;
    }

    section h2 {
        font-size: 2.2em;
    }

    section p {
        font-size: 1.
    }
}

/*-------------------------------------------------------------------Teams------------------------------------------------------------------*/

/* Main Section Styles */
#teams-main-content {
    padding: 40px;
}

/* Our Teams Section Styling */
#teams-section {
    background: #f8f2ed;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#teams-section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #555454;
}

#teams-section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
}

#team-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    max-width: 180px;
    max-height: 180px;
}

.team-member h3 {
    font-size: 1.8em;
    color: #555454;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.team-member p strong {
    color: #ad8d71;
}

/* Call to Action Section */
#cta-section {
    background-color: #f8f2ed;
    color: white;
    padding: 40px;
    text-align: center;
}

.cta-button {
    text-decoration: none;
    color: white;
    background-color: #ae8e71;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #785a41;
}

/* Responsive Design */

/* Mobile View */
@media (max-width: 768px) {
    #teams-section h2 {
        font-size: 1.8em;
    }

    #teams-section p {
        font-size: 1.1em;
    }

    #team-list {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1em;
        padding: 8px 15px;
    }
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
    #teams-section h2 {
        font-size: 2em;
    }

    #teams-section p {
        font-size: 1.2em;
    }

    #team-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    #teams-section {
        padding: 40px;
    }

    #teams-section h2 {
        font-size: 2.2em;
    }

    #teams-section p {
        font-size: 1.3em;
    }

    #team-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*------------------------------------------------------------------Contact Us--------------------------------------------------------------*/

/* Main Section */
.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-header h1 {
    color: #4d4ba8;
    font-size: 2.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #5c5c5c;
}

/* Form Container */
.form-container {
    margin-bottom: 30px;
}

.contact-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form fieldset {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.contact-form legend {
    font-size: 1.2rem;
    color: #555454;
    font-weight: bold;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: normal !important;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #ae8e71;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background-color: #70563e;
}

/* Stylish Get in Touch Section */
.contact-info {
    background-color: #f6ecdd;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: normal !important;
    color: #333;
}

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: normal !important;
    color: #444;
}

.contact-item span:first-child {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Social Media Links */
.social-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.social-links p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.social-link img {
    margin: 0 10px;
    transition: transform 0.3s, filter 0.3s;
}

.social-link img:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}



/* Map Container */
.map-container {
    text-align: center;
}

.map-container h2 {
    color: #555454;
    font-weight: normal !important;
    margin-bottom: 10px;
}

.map-box {
    border: 2px solid #555454;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 0.9rem;
    }
}
/*--------------------------------------------------------------------FAQs------------------------------------------------------------------*/

/* FAQ Page Styling */
.faq-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #f8f2ed
}

.faq-heading {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.faq-question {
    font-size: 1.5rem;
    color: #444;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
}

.faq-question::after {
    content: "▼";
    font-size: 1rem;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 1.1rem;
    color: #555;
    display: none;
    margin-left: 10px;
}

/* Add interactivity */
.faq-item.open .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 10px;
    }

    .faq-heading {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/*-------------------------------------------------------------------footer-----------------------------------------------------------------*/

        /* Divider styling */
        /* Divider styling */
#footer-divider {
    position: relative;
    height: 20px; /* Height of the divider */
}

#footer-divider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ae8e71cf 25%, white 25%, white 50%, #ae8e71cf 50%, #ae8e71cf 75%, white 75%);
    background-size: 30px 30px;
    z-index: -1; /* Ensure the gradient stays behind content */
}

        /* Footer styling */
footer {
    background-color: #ae8e71cf; /* Dark footer background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 20px;
}

footer a {
    color: white; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white; /* Highlight links on hover */
}

footer p {
    margin: 5px 0;
    font-size: 1em;
}