.breadcrumb {
    --bs-breadcrumb-divider: "/";
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.25);
}

/* Hover Effect */
.btn-gradient:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 114, 255, 0.35);
    color: #fff;
}

/* Click Effect */
.btn-gradient:active {
    transform: scale(0.97);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
}

/* Focus Effect */
.btn-gradient:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.25);
}

/* Icon animation */
.btn-gradient i {
    transition: transform 0.3s ease;
}

.btn-gradient:hover i {
    transform: translateX(4px);
}

/* Shine animation effect */
.btn-gradient::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.btn-gradient:hover::after {
    left: 130%;
}



/* Faq */

.cs_faq_area .accordion-button {
    background-color: #f8f9fa;
    color: #0d1b2a;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 18px 20px;
    transition: 0.3s ease;
}

.cs_faq_area .accordion-button:focus {
    box-shadow: none;
}

.cs_faq_area .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
}

.cs_faq_area .accordion-body {
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}



/* Contact us */

/* Gradient button */
.btn-gradient {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    transform: scale(1.05);
}

/* Section heading */
.cs_section_title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Cards */
.cs_contact .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cs_contact .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cs_contact .fa {
    color: #0072ff;
}

/* Responsive iframe map */
.cs_contact iframe {
    border-radius: 12px;
}

/* Responsive for smaller screens */
@media (max-width: 767px) {
    .cs_section_title {
        font-size: 2rem;
    }

    .btn-gradient {
        width: 100%;
    }
}


/* Doctors Card  popular */
.popular-card {
    border: 2px solid #0073ffad;
    box-shadow: 0 8px 25px rgba(255, 180, 0, 0.3);
    transform: translateY(-5px);
    position: relative;
    transition: 0.3s ease-in-out;
}

.popular-card::before {
    content: "Popular";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0072ff;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.doctor-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.doctor-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.doctor-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.doctor-card-content {
    padding: 20px;
    text-align: center;
}

.doctor-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-designation,
.doctor-specialization,
.doctor-hospital {
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
}

.doctor-socials {
    margin-top: 10px;
}

.social-btn img {
    width: 24px;
    height: 24px;
}



/* Doctors Card */
.doctor-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.doctor-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* CONTENT */
.doctor-card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* FIX TEXT HEIGHT */
.doctor-name {
    min-height: 48px;
}

.doctor-designation {
    min-height: 20px;
}

.doctor-specialization {
    min-height: 20px;
}

.doctor-hospital {
    min-height: 20px;
}

/* DETAIL FIX */
.doctor-detail {
    min-height: 38px;
    max-height: 60px;
    overflow: hidden;
    font-size: 13px;
    color: #555;
    margin: 8px 0;
}

/* PUSH ICON TO BOTTOM */
.doctor-socials {
    margin-top: auto;
}

/* POPULAR STYLE */
.popular-card {
    border: 2px solid #0073ffad;
    box-shadow: 0 8px 25px rgba(255, 180, 0, 0.3);
    transform: translateY(-5px);
    position: relative;
}

.popular-card::before {
    content: "Popular";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0072ff;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

/* ICON */
.social-btn img {
    width: 24px;
    height: 24px;
}