/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Section */
.header-banner {
    background-image: url('images/banner.jpg');  /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.header-banner .banner-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.header-banner h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.header-banner p {
    font-size: 20px;
}

/* Main Title and Description */
.container {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    margin-top: -40px;  /* To bring content closer to the banner */
}

.container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.container p {
    font-size: 18px;
    color: #555;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-us strong {
    color: #007bff;
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.service {
    width: 30%;
    margin-bottom: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service h2 {
    font-size: 24px;
    margin: 15px 0;
}

.service .description {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.service .price {
    font-size: 20px;
    color: #007bff;
    font-weight: bold;
}

/* WhatsApp and Call Now Buttons inside each service */
.service-buttons {
    margin-top: 15px;
}

.whatsapp-link,
.call-link {
    display: inline-block;
    margin: 5px 8px 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.whatsapp-link {
    background-color: #25d366;
}

.whatsapp-link:hover {
    background-color: #128c7e;
}

.call-link {
    background-color: #007bff;
}

.call-link:hover {
    background-color: #0056b3;
}

/* FAQ Section */
.faq {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    color: #007bff;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

/* Booking Section */
.booking {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.booking h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.booking p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.booking .whatsapp-link {
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.booking .whatsapp-link:hover {
    background-color: #0056b3;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 14px;
}

footer p {
    margin: 0;
}

/* Floating WhatsApp and Call Now buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.floating-buttons a.whatsapp-floating {
    background-color: #25d366;
}

.floating-buttons a.whatsapp-floating:hover {
    background-color: #128c7e;
}

.floating-buttons a.call-floating {
    background-color: #007bff;
}

.floating-buttons a.call-floating:hover {
    background-color: #0056b3;
}

.floating-buttons a img {
    width: 28px;
    height: 28px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-banner h2 {
        font-size: 36px;
    }

    .header-banner p {
        font-size: 18px;
    }

    .container h1 {
        font-size: 28px;
    }

    .container p {
        font-size: 16px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 80%;
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 14px;
    }
}

/* Smaller Screens (Mobile) */
@media (max-width: 480px) {
    .service {
        width: 100%;
    }

    .service img {
        height: 150px;
    }

    .service h2 {
        font-size: 20px;
    }

    .service .price {
        font-size: 18px;
    }

    .whatsapp-link,
    .call-link,
    .booking .whatsapp-link {
        font-size: 16px;
        padding: 10px 12px;
        display: inline-block;
        margin-top: 8px;
    }

    .footer-keywords {
        font-size: 14px;
        color: #777;
        text-align: center;
        margin-top: 20px;
    }

    .floating-buttons a img {
        width: 45px;
        height: 45px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }
}
/* Special Offer Section */
.special-offer {
    background-color: #f0c14b; /* Gold background color for highlighting */
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.special-offer .offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.special-offer h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.special-offer p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.special-offer .offer-link {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.special-offer .offer-link:hover {
    background-color: #f05a28;
}

