
.symptom-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #DB479D;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px auto;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.symptom-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.symptom-card p {
    font-size: 15px;
    color: #6c757d;
}


/* Section Padding */
.service-single{
    padding:70px 0;
}

/* Feature Box Design */
.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 22px;
    background:#f8f9fa;
    border-radius:10px;
    border:1px solid #eee;
    transition:all 0.3s ease;
}

/* Icon */
.feature-box i{
    font-size:18px;
    color:#DB479D;
}

/* Text */
.feature-box span{
    font-size:16px;
    font-weight:500;
    color:#333;
}

/* Hover Effect */
.feature-box:hover{
    background:#DB479D;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.feature-box:hover i{
    color:#fff;
}

.feature-box:hover span{
    color:#fff;
}

/* Section Heading */
.service-single h2{
    font-size:30px;
}

/* Paragraph */
.service-single p{
    font-size:16px;
    line-height:1.7;
}

/* Mobile Responsive */
@media (max-width:768px){

    .service-single{
        padding:50px 0;
    }

    .service-single h2{
        font-size:26px;
    }

    .feature-box{
        padding:15px 18px;
    }

    .feature-box span{
        font-size:15px;
    }

}

/* Section */
.diagnosis-section{
padding:80px 0;
}

/* Card */
.diagnosis-card{
background:#fff;
padding:30px 25px;
border-radius:12px;
text-align:center;
border:1px solid #eee;
transition:all .35s ease;
height:100%;
position:relative;
overflow:hidden;
}

/* Top Border */
.diagnosis-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#3d203f;
}

/* Icon */
.icon-box{
width:65px;
height:65px;
margin:auto;
background:#eef4ff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#DB479D;
margin-bottom:18px;
transition:.3s;
}

/* Title */
.diagnosis-card h5{
font-weight:600;
margin-bottom:10px;
}

/* Text */
.diagnosis-card p{
font-size:14.5px;
color:#666;
line-height:1.6;
}

/* Hover */
.diagnosis-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.diagnosis-card:hover .icon-box{
background:#DB479D;
color:#fff;
}

/* Bottom Note */
.diagnosis-note{
background:#fff;
padding:18px 25px;
border-radius:8px;
border-left:5px solid #3d203f;
font-weight:500;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

/* Responsive */
@media(max-width:768px){

.diagnosis-card{
padding:25px 18px;
}

}

/* Section */
.cancer-stage-section{
padding:80px 0;
}

/* Card */
.stage-card{
background:#fff;
padding:30px 25px;
border-radius:12px;
text-align:center;
border:1px solid #eee;
transition:all .35s ease;
position:relative;
overflow:hidden;
height:100%;
}

/* Top Border */
.stage-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#3d203f;
}

/* Icon Circle */
.stage-icon{
width:65px;
height:65px;
margin:auto;
background:#eef4ff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#DB479D;
margin-bottom:18px;
transition:.3s;
}
.treatment-heading-ser{
    font-size: 30px !important;
}

/* Heading */
.stage-card h5{
font-weight:700;
margin-bottom:8px;
}

/* Text */
.stage-card p{
font-size:14.5px;
color:#666;
line-height:1.6;
}

/* Hover */
.stage-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.stage-card:hover .stage-icon{
background:#DB479D;
color:#fff;
}

/* Bottom Note */
.stage-note{
background:#fff;
padding:18px 25px;
border-radius:8px;
border-left:5px solid #3d203f;
font-weight:500;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

/* Responsive */
@media(max-width:768px){

.stage-card{
padding:25px 18px;
}

}