/* Custom Variables for Branding */
:root {
    --primary-blue: #003366;
    --accent-gold: #ffcc00;
    --whatsapp-green: #25d366;
    --text-dark: #2d3748;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
}
/* Modern Blue Navbar */
.custom-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

/* Ensure brand and links are white */
.custom-nav .navbar-brand, 
.custom-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.custom-nav .nav-link:hover {
    color: #ffffff !important;
}

/* Underline effect in white */
.custom-nav .nav-link::after {
    background-color: #ffc107; /* Yellow underline for contrast */
}

/* White logo box for blue background */
.logo-icon {
    background: white;
    color: #0d6efd; /* Blue icon in white box */
    border-radius: 8px;
    padding: 5px 8px;
}

/* Scrolled state */
.custom-nav.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.85)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

/* Modern Service Cards */
.service-card {
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Checklist Styling */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
}

/* Featured Service Styling */
.featured-card {
    border: 2px solid var(--primary-blue) !important;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
}

.icon-box.medical {
    color: #e53e3e; /* Medical Red */
    background: #fff5f5;
}

.list-group-item-action:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    font-weight: 600;
}

/* --- FLOATING WHATSAPP BUTTON --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            background-color: #128c7e;
            color: white;
            transform: scale(1.1);
        }
        
/* Compact Inline Banner */
.renewal-banner {
    border: 2px solid #ffc107;
    max-width: 800px; /* Limits width so it stays centered and neat */
    margin: 0 auto;
}

.pulse-icon-sm {
    width: 35px;
    height: 35px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    animation: pulse-yellow-sm 2s infinite;
}

@keyframes pulse-yellow-sm {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 193, 7, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}