/* Custom Global Variables Blueprint Definition */
:root {
    --primary-color: #005588;
    --accent-color: #dc3545;
    --dark-surface: #1e293b;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    background-color: #ffffff;
}

.fs-header-sub {
    font-size: 10px;
    letter-spacing: 2px;
}

/* Feature Counter Cards Matrix */
.feature-card-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-counter-box {
    background: #ffffff;
    border-bottom: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.125)!important;
}

/* Section Header Formats */
.section-title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 12px auto 0 auto;
}

/* Service Card Components */
.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e2e8f0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    background: #ffffff;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,.08);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Professional Doctor Card Profile Modals */
.doctor-card img {
    height: 320px;
    object-fit: cover;
    filter: grayscale(20%);
}

.doctor-card {
    border-radius: 16px;
    overflow: hidden;
}

/* Footer Accent Icons UI */
.social-icon-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}