/* SECTION */
.medical-section{
    padding:80px 0;
}

/* HEADER */
.section-label{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:46px;
    font-weight:700;
    color:#0f172a;
    margin-top:20px;
}

.section-subtitle{
    color:#64748b;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* MENU TAB */
.medical-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.medical-menu{
    border:none;
    background:#fff;
    width:180px;
    border-radius:24px;
    padding:28px 18px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.medical-menu:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(37,99,235,.12);
}

.medical-menu.active{
    background:linear-gradient(
        135deg,
        #2563eb,
        #38bdf8
    );
}

.medical-menu.active h6,
.medical-menu.active i{
    color:white;
}

.icon-box{
    width:75px;
    height:75px;
    background:#eff6ff;
    border-radius:20px;
    margin:auto auto 18px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.icon-box i{
    color:#2563eb;
    font-size:34px;
}

.medical-menu.active .icon-box{
    background:rgba(255,255,255,.15);
}

.medical-menu h6{
    margin:0;
    color:#1e293b;
    font-weight:600;
    font-size:15px;
}

/* CARD CONTENT */
.premium-card{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.content-wrapper{
    padding:65px;
}

.badge-premium{
    display:inline-block;
    background:#e0f2fe;
    color:#0284c7;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.content-title{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

.content-text{
    color:#64748b;
    line-height:2;
    font-size:16px;
}

/* BUTTON */
.btn-premium{
    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );
    border:none;
    color:white;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
}

.btn-premium:hover{
    color:white;
}

/* IMAGE */
.service-image{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
}

/* ANIMATION */
.tab-pane{
    animation:fadeIn .5s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .content-wrapper{
        padding:35px;
    }

    .content-title{
        font-size:30px;
    }

    .service-image{
        min-height:320px;
    }

    .medical-menu{
        width:150px;
    }
}