/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(-45deg, #f3f3f3, #e0e0e0);
    background-size: 400% 400%;
    animation: bgAnimation 10s infinite alternate;
    margin: 0;
    padding: 0;
}

@keyframes bgAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px;
}

h1, h2 {
    margin: 0;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 1.5em;
    }
    .btn-primary, .btn-secondary {
        padding: 8px 15px;
        font-size: 1em;
    }
    .service-page img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.2em;
    }
    .btn-primary, .btn-secondary {
        font-size: 0.9em;
    }
}

/* Offer Banner */
.offer {
    font-size: 1.2em;
    color: #ff0000;
    font-weight: bold;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: #007BFF;
    padding: 10px;
    z-index: 1000;
}
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}
nav a:hover {
    background: white;
    color: #007BFF;
    border-radius: 5px;
}

/* Service Pages */
.service-page {
    padding: 20px;
}
.service-page img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    display: block;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Pricing Styles */
.discount {
    color: #ff0000;
    font-weight: bold;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.btn-primary:hover, .btn-secondary:hover {
    transform: scale(1.05);
    background-color: #0056b3;
}

/* Back to Home Button */
.back-home {
    display: inline-block;
    margin-top: 20px;
    background: #28a745;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.back-home:hover {
    background: #218838;
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Payment Page */
.payment-section {
    padding: 20px;
}
.payment-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 20px auto;
    width: 80%;
    max-width: 400px;
}

/* Footer */
footer {
    background-color: #007BFF;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
