.navbar-logo {
    height: 40px;     /* Set a fixed height */
    max-width: 80px; /* Set a MAXIMUM width */
    width: auto;      /* Allow the width to adjust automatically */
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-background.webp'); /* You need to provide this image */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.hero-section h1 {
    font-weight: 700;
}

/* --- Service Cards --- */
.service-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* --- Floating CTA --- */
/* Remove the old .floating-cta block and replace it with these two */

.call-btn-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffc107; /* Bootstrap Warning */
    color: #000;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.whatsapp-btn-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.call-btn-floating:hover, .whatsapp-btn-floating:hover {
    transform: scale(1.05);
}

.floating-cta-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Hide text on smaller screens */
@media (max-width: 768px) {
    .floating-cta-text {
        display: none;
    }
    .floating-cta-icon {
        margin-right: 0;
        font-size: 1.5rem;
    }
     .call-btn-floating, .whatsapp-btn-floating {
        padding: 15px;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}