

.video-box {
    margin-bottom: 15px;
}

/* CARD */
.doc-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    font-size: 16px !important;
}

/* GRID */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    color: #b43b26
}

/* 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 #eee;
    padding-bottom: 6px;
    font-size: 15px;
    font-weight: bold;
}

/* TEXT */
.green {
    color: #b43b26;
}

.highlight-text {
    color: #b43b26
;
    font-weight: 700;
}

.highlight {
    color: #b43b26;
    font-weight: 600;
    border-bottom: none;
}

/* BADGE */
.badge {
    background: #b43b26
;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
}

/* RATING FIX */
.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d4af37;
    white-space: nowrap; /* keeps stars + text in one line */
}

.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; /* prevents wrapping on small screens */
    }
}









.why-dr-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #b43b26
;
    
}

.why-dr-box h4 {
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #81224a;
}

.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.indiacancersurgerysite.com/images/star.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
}