:root{
    --primary-color:#81224a;
    --secondary-color:#1D9E75;
    --card-bg:#ffffff;
    --badge-text:#ffffff;
    --border-color:#eeeeee;
    --star-color:#d4af37;
    --shadow:0 6px 16px rgba(0,0,0,0.08);
}

/* VIDEO */
.video-box{
    margin-bottom:15px;
}

/* CARD */
.doc-card{
    background:var(--card-bg);
    border-radius:12px;
    padding:15px;
    box-shadow:var(--shadow);
    font-size:16px !important;
}

/* GRID */
.doc-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

/* COLUMN */
.doc-col{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* ITEM */
.doc-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--border-color);
    padding-bottom:6px;
    font-size:15px;
    font-weight:bold;
}

/* TEXT */
.green{
    color:var(--secondary-color);
}

.highlight-text{
    color:var(--primary-color);
    font-weight:700;
}

.highlight{
    color:var(--secondary-color);
    font-weight:600;
    border-bottom:none;
}

/* BADGE */
.badge{
    background:var(--primary-color);
    color:var(--badge-text);
    padding:3px 8px;
    border-radius:20px;
    font-size:12px;
}

/* RATING */
.rating-box{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--star-color);
    white-space:nowrap;
}

.rating-box span{
    white-space:nowrap;
}

/* DESKTOP */
@media (min-width:769px){

    .doc-item{
        justify-content:flex-start;
        gap:6px;
    }

    .doc-item span{
        white-space:nowrap;
    }

}

/* MOBILE */
@media (max-width:768px){

    .doc-grid{
        grid-template-columns:1fr;
    }

    .doc-item{
        gap:6px;
    }

    .doc-item.rating-item{
        justify-content:space-between;
        flex-wrap:nowrap;
    }

    .doc-item.rating-item > span{
        white-space:nowrap;
        margin-right:6px;
    }

    .doc-item.rating-item .rating-box span{
        font-size:13px;
    }

}

/* WHY BOX */
.why-dr-box{
    background:transparent;
    border:none;
    border-radius:0;
    padding:0;
    margin:20px 0;
    font-size:14px;
    line-height:1.7;
    color:var(--primary-color);
}

.why-dr-box h2,
.why-dr-box h3,
.why-dr-box h4{
    margin:15px 0 10px;
    font-size:22px;
    font-weight:700;
    color:var(--primary-color);
}

.why-dr-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.why-dr-box ul li {
    list-style: none !important;
    background: none !important;        /* kills bullet.png */
    position: relative;                 /* needed for ::before to position */
    padding-left: 28px;
    margin-bottom: 12px;
}

.why-dr-box ul li::before {
    content: "";
    display: block;                     /* ADD THIS - makes it render */
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("https://www.spineandneurosurgeryhospitalindia.com/images/star.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
}