/* 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;
}

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;
}


.banner {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block;
    max-height: 80vh; /* Adjusts height dynamically without cropping */
    margin: 0 auto; /* Centers the image */
}

.heading {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
}
.subtext {
    font-size: 20px;
    margin-top: 20px;
    color: #555;
}


/* 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;
}


