/* KS Dental Custom Variables & Styles */
:root {
    /* Colors extracted from Logo */
    --bs-primary: #0099ff; /* Bright Blue */
    --bs-primary-rgb: 0, 153, 255;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7fb;
}

/* Custom Brand Colors */
.text-deep-blue {
    color: #0b1c3f !important;
}

.bg-deep-blue {
    background-color: #0b1c3f !important;
}

.text-bright-blue {
    color: var(--bs-primary) !important;
}

.bg-bright-blue {
    background-color: var(--bs-primary) !important;
    color: white;
}

.btn-bright-blue {
    background-color: var(--bs-primary);
    color: white;
    border: none;
}

.btn-bright-blue:hover {
    background-color: #007acc;
    color: white;
}

/* Gradient Utilities for Highlights */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0b1c3f 0%, #1e3c72 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #00c6ff 100%);
}

.text-highlight {
    color: var(--bs-primary);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

/* Soft Blink Animation */
@keyframes blinkSoft {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}
.blink-soft {
    animation: blinkSoft 2s infinite;
}