.pageBanner {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.pageBanner-layover {
    /*background-color: rgba(0, 0, 0, 0.4);*/
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageBanner-h1 {
    font-size: 45px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.mainContentBox {
    width: 70%;
    margin: 50px auto 50px auto;
}

.content-h1 {
    font-size: 40px;
    text-align: center;
}

.resultsContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.specialityGrid{
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}
.specialityCard{
    background-color: var(--gchLiteGray);
    padding: 20px;
    width: fit-content;
    border-radius: 90px 90px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.specialityCard h3 {text-align: center;}

/* Maintags */
.docProfileMan {
    padding: 50px 10% 50px 10%;
}

.doctorCard {
    height: fit-content;
    width: 100%;
    background-color: var(--gchLiteGray);
    border-radius: 22px;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 15px;
    box-sizing: border-box;
    align-items: center;
    gap: 20px;
}

.doctorImage {
    height: 140px;
    width: 140px;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.hospitalImage {
    height: 140px;
    width: 230px;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.doctorInfoBox {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.doctorName {
    font-size: 26px;
}

.doctorLocation {
    color: var(--gchTextGray);
}

.doctorMetricBadgeBox {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    align-items: end;
}

.doctorMetricBadge {
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    padding: 3px 10px 3px 10px;
    border-radius: 13px;
    color: white;
    width: fit-content;
    font-size: 17px;
    height: fit-content;
}

.doctorCardAnchor {
    color: black;
    display: contents;
}

.doctorActionBox {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-left: auto; chutya
}

.actionBtnIcon {
    height: 20px;
    width: 20px;
}

.doctorActionBtn {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 4px 10px 4px 10px;
    border-radius: 30px;
    color: var(--gchDarkBlue);
    text-decoration: none;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
    font-size: 14px;
}

.listBox {
    display: flex;
    gap: 20px;
    margin: 20px 0 20px 0;

}

.listCard {
    padding: 15px;
    box-sizing: border-box;
    background-color: var(--gchLiteGray);
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);


}

.listCardIconBox {
    border-radius: 50% 22px 22px 50%;
    display: flex;
    height: fit-content;
}

.listCardTextBox {
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.listCard-Img {
    height: 90px;
    width: 90px;
}

.listCard-h1 {}

.listCard-p {
    color: var(--gchTextGray);
}

.doctorInfoGraphBox {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.doctorInfoGraphBox-img {
    height: 200px;
    width: 200px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
}

.doctorInfoGraphBox-docDet-h1 {
    margin-bottom: 4px;
}

.doctorDesigMetric {
    margin-bottom: 15px;
}

.doctorInfoGraphBox-docDet {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctorInfoGraphBox-docList {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--gchTextGray);
    margin-bottom: 8px;
    font-size: 17px;
}

.doctorInfoGraphBox-docList-span {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    background-color: var(--gchStrokeGray);
}

.doctorDescriptorPara {
    font-size: 17px;
    color: var(--gchTextGray);
    line-height: 33px;
    margin-bottom: 30px;
    text-align: justify;
}

.hospitalPhotoBox {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: aliceblue;
    border-radius: 22px;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.hospitalPhotoBox-image{
    min-height: 100%; min-width: 100%;
    object-fit: cover;
    object-position: center;
    display: inline-block;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.indicatorBox {
    display: flex;
    gap: 5px;
    width: fit-content;
    margin: 15px auto 0 auto;
}

.indicator {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--gchStrokeGray);
}

.indicator.active {
    background-color: var(--gchDarkBlue);
}





@media screen and (max-width: 1287px) {
    .specialityGrid{
        grid-template-columns: auto auto auto;
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .specialityGrid{
        grid-template-columns: auto;
    }
    
    .doctorActionBtn {
        font-size: 11px;
    }
    
    .doctorActionBox {
        margin: 0;
    }
    .filterForm {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .filterFormBox{height: auto;padding: 20px;box-sizing: border-box;}

    .formInputs {
        width: 100%;
        margin-bottom: 10px;
        border: 2px solid var(--gchStrokeGray);
        border-radius: 12px;
    }
    .filterBtn {
        width: 100%;
        margin: 0;
    }
    .mainContentBox{
        width: 80%;
    }
    .content-h1{
        font-size: 30px;
    }
    .listCardIconBox{display: none;}
    .pageBanner-h1{padding: 0 50px 0 50px;}


    .doctorMetricBadgeBox {
        flex-direction: column;
        align-items: center;
    }
    .doctorImage{
        height: 80px; width: 80px;
    }
    /*.doctorActionBox, .drAge, .drHospital{*/
    /*    display: none;*/
    /*}*/
    .doctorMetricBadge{font-size: 11px;}
    .doctorName{font-size: 17px;}
    .doctorLocation {font-size: 14px;}

    .doctorInfoGraphBox{
        flex-direction: column;
    }
    .doctorInfoGraphBox-docDet{
        align-items: center;
    }
    /* .docProfileMan{
        padding: 20px;
    } */
    h1{
        font-size: 20px;
    }
    .doctorDescriptorPara, .doctorInfoGraphBox-docList{
        font-size: 14px;
        line-height: 27px;
    }
    .hospitalImage{
        height: 90px;
        width: 150px;
    }
    .hptlEstBdge, .hptlBds{display: none;}
}