body {
    font-family: Arial, sans-serif;
}


p {
    font-size: 14px;
}

li {
    height: 3em;
}

.borderad{
    border-top-left-radius: 0em;
    border-bottom-left-radius: 4em;
    border-top-right-radius: 4em;
    border-bottom-right-radius: 0em;
}

.pinkbg {
    background: linear-gradient(to top, #e91e63, #f9bad0);
}

.underline-bar {
    display: inline-block;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    color: #e91e63; /* Adjust to match your pink color */
}

.underline-bar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust spacing from text */
    width: 50px; /* Adjust length of the bar */
    height: 4px; /* Adjust thickness */
    background: #e91e63; /* Adjust to match color */
}




img.doctor-img {
    width: 100%;
}


/* Hero Section */
.hero {
    /*background: linear-gradient(to right, #e91e63, #ff4081);*/
    color: white;
    padding: 60px 0;
    text-align: center;
}

.logo {
    width: 120px;
}

/* Doctor Image */
.doctor-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services h2 {
    color: #e91e63;
    font-weight: bold;
}

.services h4 {
    color: #e91e63;
    font-weight: bold;
}

/* Contact Section */
.contact {
    /*background: #e91e63;*/
    color: white;
    padding: 50px 0;
}

.contact h3 {
    font-weight: bold;
    font-size: 24px;
}

/* Footer */
.footer {
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        text-align: center;
    }
    
    .doctor-img {
        max-width: 80%;
        margin-top: 20px;
    }
}
