/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav ul li a.active {
    color: green;
}

/* Breadcrumb */
.breadcrumb {
    margin: 20px;
    font-size: 16px;
}

.breadcrumb .highlight {
    color: green;
    font-weight: bold;
}

/* Footer Styling */
.footer {
    background-color: #f8f8f8;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    width: 22%;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.footer-section p {
    font-size: 14px;
    color: #555;
}

/* Input Box */
.footer-section input {
    width: 100%; /* Make input fields full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit Button */
.footer-section button {
    width: 100%; /* Full width button */
    background: black;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

/* QR Code Image Styling */
.footer-section img {
    width: 100px; /* Adjust width */
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

/* Enquire Section */
.enquire-section {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 0;
    background-color: #f8f8f8;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp-icon img {
    width: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .enquire-section {
        font-size: 24px;
        padding: 15px 0;
    }

    .chat-widget {
        bottom: 60px;
        right: 10px;
    }

    .whatsapp-icon {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-icon img {
        width: 40px;
    }
}
