/* Modern Color Variables */
:root {
    --medical-navy: #0e4179;
    --medical-teal: #0d9488;
    --medical-teal-light: #ccfbf1;
    --medical-blue-light: #e0e7ff;
    --text-muted: #64748b;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: #334155;
}
.footer-link{
    list-style: none;
    padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

/* Custom Colors & Utilities */
.text-navy {
    color: var(--medical-navy) !important;
}

.text-teal {
    color: var(--medical-teal) !important;
}

.bg-navy {
    background-color: var(--medical-navy) !important;
}

.bg-soft-blue {
    background-color: #f8fafc !important;
}

section {
    scroll-margin-top: 80px;
}

.doctors-section {
    background-color: #ecfdf5;
    ;
}

footer a {
    color: var(--medical-teal);
    text-decoration: none;
}

/* Buttons */
.btn-custom {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-teal {
    background-color: var(--medical-navy);
    color: white;
    border: none;
}

.btn-teal:hover {
    background-color: #0f766e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-outline-light:hover {
    color: var(--medical-navy);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(13, 148, 136, 0.8) 100%), url('../images/backgound.jpg') center/cover fixed;
    color: white;
    padding: 140px 0;
    position: relative;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.icon-navy {
    background-color: var(--medical-blue-light);
    color: var(--medical-navy);
}

.icon-teal {
    background-color: var(--medical-teal-light);
    color: var(--medical-teal);
}

/* Image Accent Box */
.image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Accordion Customization */
.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: var(--medical-blue-light);
    color: var(--medical-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}