

:root {
    --primary: #1a6fb0;
    --secondary: #0d4d7a;
    --accent: #d32f2f;
    --light: #e8f4fc;
    --success: #4caf50;
    --warning: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

.service-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 500;
}

/* Announcement Cards */
.announcement-card {
    background-color: var(--light);
    border-left: 5px solid var(--primary);
    border-radius: 10px;
}

/* Anniversary Section */
.anniversary-section {
    background: linear-gradient(135deg, var(--accent), #b71c1c);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    background-color: var(--warning);
    color: #333;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.5rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Health Fair */
.health-fair {
    background-color: var(--success);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.free-service-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    margin: 5px;
    font-weight: 500;
}

/* Service Cards */
.service-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card h3 {
        color: var(--primary);
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 10px;
    }

/* Date Cards */
.date-card {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.date-range {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
    color: white;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--warning);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    border-radius: 15px 15px 0 0;
}

.footer-tagline {
    font-size: 1.3rem;
    font-weight: 500;
}

/* Animations */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.6rem 1rem;
    transition: background 0.3s ease;
}

    .whatsapp-btn:hover {
        background-color: #1da851;
        color: #fff;
    }

    .whatsapp-btn img {
        height: 20px;
        width: 20px;
    }
/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .floating-whatsapp-btn:hover {
        transform: scale(1.1);
        background-color: #1da851;
    }

    .floating-whatsapp-btn img {
        width: 35px;
        height: 35px;
        filter: brightness(0) invert(1);
    }
