.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* Common style */
.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* Call button */
.call-btn {
    background: #007bff;
}

/* WhatsApp button */
.whatsapp-btn {
    background: #25D366;
}

/* Hover effect */
.floating-buttons a:hover {
    transform: scale(1.1);
}

.playstore-btn {
    background: black; /* Google green */
}

.page-title
 {
    position: relative;
    padding: 135px 0 75px;
    text-align: center;
    background-size: cover;
    background-position: bottom center;
}
.page-title h1 {
    font-size: 45px;
    color: #fff;
    line-height: 74px;
    margin-bottom: 20px;
    font-weight: 600;
}


.main-menu .navigation>li {
    position: relative;
    padding: 32px 0px;
    margin-right: 40px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Optional: make cards slightly compact */
.service-block .inner-box {
    padding: 15px;
}

.service-img img {
    max-height: 70px;
    object-fit: contain;
}

banner-section .content-box h1 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    margin-bottom: 20px;
}

/* Row spacing (important) */
.doctor-details .row {
    margin-left: -10px;
    margin-right: -10px;
}

/* Column spacing */
.doctor-details .col-lg-6,
.doctor-details .col-md-6,
.doctor-details .col-lg-12 {
    padding: 10px;
}

/* Card Design */
.custom-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px; /* more smooth */
    border: 1px solid #e6e6e6; /* clean border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.3s ease;
    
}

/* Hover effect */
.custom-box:hover {
    transform: translateY(-6px);
    border-color: #00bfa6;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, #f0fbf9, #ffffff);
    border: 1px solid #00bfa6;
}

/* Title */
.custom-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Text */
.custom-box p,
.custom-box ul {
    font-size: 14px;
    line-height: 1.7;
}

.custom-box ul {
    padding-left: 18px;
}

.custom-box li {
    margin-bottom: 6px;
}