body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #000001;
}
/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #000001;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Navigation Menu */
.sticky-header nav ul {
    display: flex;
    gap: 1rem;
    margin: 0;
}
.sticky-header nav ul li {
    position: relative; /* For positioning the dropdown */
}
.sticky-header nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.sticky-header nav ul li a:hover {
    color: #68AADD;
}
/* Dropdown Styles */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 60;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.dropdown-menu.show {
    display: block; /* Show when toggled on mobile */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-menu li a:hover {
    background-color: #68AADD;
    color: white;
}
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block; /* Show on hover for desktop */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .sticky-header nav ul li a {
        font-size: 0.9rem;
    }
    .sticky-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .sticky-header nav {
        margin-top: 0.5rem;
    }
    .contact-buttons {
        align-items: center;
        margin-top: 0.5rem;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        background-color: #444;
    }
}
/* Contact Buttons Container */
.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 60; /* Ensure buttons are above other elements */
}
/* Ensure buttons are visible on all screen sizes */
.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #5a94c8;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    min-width: fit-content; /* Prevent collapsing */
}
.contact-button:hover {
    background-color: #7bb5e4;
}
.contact-button i {
    margin-right: 6px;
}
/* Smooth Fade-In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #68AADD;
}
/* Hero Section */
.hero {
    background-color: #68AADD;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero p.main-text {
    font-size: 1.25rem;
    font-weight: 500;
}
.hero p.sub-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}
@media (min-width: 768px) {
    .hero p.main-text {
        font-size: 1.5rem;
    }
    .hero p.sub-text {
        font-size: 1.125rem;
    }
}
/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
}
.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
/* Speech Bubble */
.speech-bubble {
    position: relative;
    background-color: white;
    color: #000001;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.speech-bubble.hidden {
    opacity: 0;
    pointer-events: none;
}
.speech-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
/* Custom Colors */
.bg-dark-black {
    background-color: #000001;
}
.text-dark-black {
    color: #000001;
}
.bg-soft-blue {
    background-color: #68AADD;
}
.text-soft-blue {
    color: #68AADD;
}
.hover\:text-soft-blue:hover {
    color: #68AADD;
}
.hover\:bg-soft-blue:hover {
    background-color: #68AADD;
}
/* Before/After Images */
.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
/* Service Cards */
.service-card {
    background-color: #333 !important; /* Ensure background is applied */
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service-card * {
    color: white !important; /* Ensure all text is white */
}
.service-card i {
    margin-right: 0.5rem;
}
.service-card p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}
.service-card a {
    color: #68AADD !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.service-card a:hover {
    color: white !important;
}
/* Banner Photos */
.banner-placeholder {
    width: 100%;
    height: 300px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    margin: 1rem 0;
}