body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}
.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* --- Navbar & Logo --- */
.navbar {
    background-color: rgba(20, 20, 22, 0.85); /* Semi-transparent dark background */
    backdrop-filter: saturate(180%) blur(10px); /* Modern frosted glass effect */
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 55px !important; 
    filter: brightness(0) invert(1);
}

/* Styles for Navbar Links */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85); /* Makes the text a soft white */
    font-weight: 400; /* Normal font weight */
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff; /* Makes the text pure white when you hover over it */
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff; /* Makes the active page link pure white */
    font-weight: 700; /* Makes the active page link BOLD */
}
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../images/hero-wallpaper.webp');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.testimonials-section {
    background-color: #f8f9fa;
    padding-top: 80px; /* Add space for overlapping images */
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    margin-top: 45px;
}
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: -90px auto 20px auto;
    border: 4px solid #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
}
.service-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.service-section h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.service-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-gallery-img:hover {
    transform: scale(1.05);
}
/* UPDATED: Client logo styling for uniform size */
.client-logo-box {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: box-shadow 0.3s ease;
}
.client-logo-box:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.client-logo-box img {
    max-width: 90%;
    height: 80px;
    object-fit: contain;
    /* The grayscale filter has been removed to keep them in full color */
}
.owner-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 3rem 0;
}
.footer h5 {
    color: #fff;
    margin-bottom: 1rem;
}
.footer-social-icons a {
    display: inline-block;
    margin: 0 10px;
}
.footer-social-icons img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}
.footer-social-icons a:hover img {
    opacity: 0.8;
}
.footer-bottom {
    background-color: #1c1f23;
    padding: 1rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #adb5bd;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #fff;
}
/* UPDATED: WhatsApp icon styling */
.whatsapp-fl {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999; /* Increased z-index */
    transition: transform 0.3s ease;
}
.whatsapp-fl:hover {
    transform: scale(1.1);
}
.whatsapp-fl img {
    width: 100%;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
}