/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    background-color: #ffffff;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    overflow-x: hidden;
    background-color: #8e1717; /* Primary background color */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    overflow-x: hidden;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    color: #fff; /* Light yellow color for text */
    padding: 8px 15px;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
    color: #cc9966; /* Lighter gold hover effect */
    border-bottom: 2px solid #cc9966; /* Underline on hover */
}

/* Sign Up Button */
.sign-up-btn {
    background-color: #cc9966;
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    font-size: 16px;
}

.sign-up-btn:hover {
    background-color: #ffff80;
    color: #8e1717;
}

/* Responsive Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    order: 2;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background-color: #ffff80; /* Light yellow */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    html, body {
        background-color: #ffffff;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        flex-direction: column;
        background-color: #8e1717;
        width: 100%;
        display: none; /* Hide by default */
        justify-content: center;
        align-items: center;
    }

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

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

    .menu-icon {
        display: flex;
    }

    /* Center the menu between the logo and sign-up button */
    .navbar {
        justify-content: space-between;
    }

    .menu-icon {
        order: 2;
        margin: 0 auto;
    }

    .sign-up-btn {
        order: 3;
    }
}



.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #C8A159; /* Matching the gold-brown background color */
    padding: 50px;
    margin-top: -30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contact-header {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 20px 0;
    background-color: #C8A159;
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    color: #7A1315;
    margin-bottom: 10px;
}

.contact-info p a, .call-button, .whatsapp-button {
    color: #5B0C0F;
    text-decoration: none;
}

/* Flex container for call and WhatsApp buttons */
.button-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between buttons */
    margin-top: 10px;
}

.call-button, .whatsapp-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #F4E4CC;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

/* WhatsApp icon styling */
.whatsapp-button::before {
    content: "";
    background: url(../mainImages/whatsapp_3536445\ \(2\).png) no-repeat center center;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.call-button:hover, .whatsapp-button:hover {
    background-color: #F0D9B5;
}
.contact-map {
    width: 100%;
    margin: 20px 0;
}

.social-media {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #C8A159;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .call-button, .whatsapp-button {
        width: 100%;
        margin-top: 5px;
    }
}








/* Footer Container */
.footer {
    background-color: #862828;
    color: #f4d488;
    padding: 50px 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 80px 80px 0 0;
    text-align: center;
}

/* Left Section */
.footer-sec {
    max-width: 250px;
    text-align: left;
    color: #f4d488;
}

.footer-sec img.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}


.footer-sec p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    
   
}

/* Contact Info and Dots Wrapper */
.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 20px;
}

/* Adding white border on each side of contact-wrapper */
.contact-wrapper::before,
.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #ffffff;
    border-radius: 2px;
}

.contact-wrapper::before {
    left: -15px;
}

.contact-wrapper::after {
    right: -15px;
}

/* Dot Sections */
.dots {
    display: flex;
    gap: 0px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.yellow {
    background-color: #f4d488;
    border: 1px solid;
}

.orange {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.white {
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

/* Contact Info */
.contact-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}

.contact-infos p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #f4d488;
}

/* Right Section - Certifications */
.certification-info {
    max-width: 250px;
    text-align: center;
    color: #f4d488;
}

.certification-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: bolder;
}

.certification-info p {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
   
}

.certification-images {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.certification-images img {
    width: 90px;
    height: auto;
}

.footer-bottom {
background-color: #D2B260; /* Beige background */
color: #7C111E;
text-align: center;
padding: 10px 0;
margin-top: 0px;
font-size: 14px;
bottom: 0px;

}

.footer-bottom ul {
list-style: none;
padding: 0;
margin: 10px 0 0;
display: flex;
justify-content: center;
gap: 10px;
}

.footer-bottom ul li a {
color: #7C111E;
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-wrapper::before,
    .contact-wrapper::after {
        display: none;
    }

    .footer-sec, .contact-info, .certification-info {
        max-width: 100%;
        margin: 10px 0;
    }

    .certification-images img {
        width: 50px;
    }
}
