                .custom-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* Mobile View */
@media (max-width: 576px) {
    .custom-btn-group {
        justify-content: center; /* center align mobile me */
    }
}
                    /* Custom Blinking Button */
                .blink-btn {
                    display: inline-block;
                    padding: 16px 28px;
                    font-size: 15px;
                    font-weight: 600;
                    color: #fff;
                    background: linear-gradient(135deg, #142959, #01bdb2);
                    border-radius: 50px;
                    text-decoration: none;
                    position: relative;
                    overflow: hidden;
                    transition: 0.3s ease-in-out;
                    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                    animation: pulseBlink 1.5s infinite;
                }
                
                /* Hover Effect */
                .blink-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
                    color: #fff;
                }
                
                /* Smooth Blinking Animation */
                @keyframes pulseBlink {
                    0% {
                       box-shadow: 0 0 0 0 rgba(13, 43, 151, 0.7);
                    }
                    70% {
                        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
                    }
                    100% {
                        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
                    }
                }
                
.slider .slide-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .banner-img {
    width: 100%;
    max-width: 1920px;
    height: auto;
}
    @media(max-width: 576px){
        .slider .banner-img{
            height: 165px;
        }
    }
    .hospital-card {
    border-radius: 20px;
    border: none;
    background: #fff;
    position: relative;
    border: 1px solid silver;
    padding-bottom: 10px;
    transition: 0.3s ease;
}

/* Soft Card Shadow */
.hospital-card {
    box-shadow:
        0px 6px 0px #DDE2E2
}

/* Bottom Curved Base Shadow (Same Image Style) */
.hospital-card::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -18px;
    height: 28px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.hospital-card:hover {
    transform: translateY(-6px);
}

.hospital-img {
    /*height: 220px;*/
    /*object-fit: cover;*/
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.book-btn {
    background: #eef1f6;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s;
}

.book-btn:hover {
    background: #2563eb;
    color: #fff;
}

/* Section Styling */
.why-doctor {
    padding: 100px 0;
    background: #edfbfa;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.section-heading {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
}

.section-heading .sub-title {
    color: #051a39;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-heading h2,
.services-heading-title,
.section-title,
.testimonial-heading h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 15px 0;
    text-align: justify;
    background: linear-gradient(90deg, #1f3566, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    color: #3f454e;
    font-size: 16px;
    line-height: 28px;
}

/* Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Design */
.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 6px 0px #DDE2E2;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid silver;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 0px #DDE2E2;
}

/* Icon Circle */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01bdb2, #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: 0.3s;
}

.why-card:hover .icon-box {
    transform: rotateY(180deg);
}

/* Text */
.why-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.why-card p {
    color: #5c6165;
    font-size: 16px;
    line-height: 24px;
}
.premium-testimonial-slider {
    padding: 50px 20px;
    background: #f5f7fb;
    font-family: 'Poppins', sans-serif;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-heading span {
    color: #0fb9a8;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
}

.testimonial-heading h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
}

.testimonial-slider-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 20px;
    box-sizing: border-box;
}

/* Speech Bubble */
.testimonial-box {
    background: #1f3566;
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    position: relative;
    text-align: center;
}

.testimonial-box p {
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-box::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #1f3566 transparent transparent transparent;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-user {
    text-align: center;
    margin-top: 40px;
}

.testimonial-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-user h4 {
    color: #0fb9a8;
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-user span {
    font-size: 13px;
    color: #1f3566;
}

/* Dots */
.slider-dots {
    text-align: center;
    margin-top: 40px;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background: #0fb9a8;
}

/* Responsive */
@media(max-width:992px) {
    .testimonial-item {
        flex: 0 0 50%;
    }
}

@media(max-width:576px) {
    .testimonial-item {
        flex: 0 0 100%;
    }

    .testimonial-heading h2,
    .section-heading h2,
    .services-heading-title, .section-title {
        font-size: 30px;
    }

}

.text-muted {
    font-size: 16px;
    color: #303336 !important;
}
.section-title-2{
    font-size: 23px;
}

@media(ma-width: 576px){
    .section-title-2{
    font-size: 20px;
}
}

@media (max-width: 768px) {

    .feature-card {
        text-align: left !important;
    }

    .feature-list {
        padding-left: 0;
        margin-bottom: 0;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* Left align */
        text-align: left;
    }

}

.benefits-section {
    background: linear-gradient(135deg, #ffff, #edfbfa);
}

.benefits-title {
    color: #0d3b66;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #333;
    transition: 0.3s;
}

.benefits-list li i {
    color: #01bdb2;
    margin-right: 12px;
    font-size: 20px;
}

.benefits-list li:hover {
    transform: translateX(8px);
    color: #0d3b66;
}

.benefits-image img {
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {


    .benefits-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .benefits-section {
        text-align: left !important;
    }

    .benefits-list {
        padding-left: 0;
        text-align: left;
    }

    .benefits-list li {
        justify-content: flex-start;
        text-align: left;
    }

}

.laparo-section {
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.laparo-title {
    color: #0d3b66;
}

.feature-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
}

.feature-list i {
    color: #01bdb2;
    margin-right: 12px;
    font-size: 18px;
}

.robotic-box {
    background: #ffffff;
    padding: 20px;
    border-left: 4px solid #01bdb2;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .laparo-section {
        text-align: center;
    }



    .robotic-box {
        text-align: left;
    }
}

.treatment-section {
    background: #edfbfa;
}

.treatment-title {
    color: #0d3b66;
}

.treatment-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    position: relative;
}

.treatment-card p {
    color: #303336;
    font-size: 16px;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.treatment-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: linear-gradient(135deg, #142959, #01bdb2);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card {
    background: linear-gradient(135deg, #142959, #01bdb2);
    color: #fff;
}

.highlight-card p {
    color: #f1f1f1;
}

.highlight-card .treatment-icon {
    background: #ffffff;
    color: #01bdb2;
}

.best-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffc107;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.diagnosis-card {
    border-radius: 15px;
    transition: 0.3s ease;
}

.diagnosis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #142959, #01bdb2);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.symptoms-section {
    padding: 80px 20px;
    background: #f8fbff;
    font-family: 'Inter', sans-serif;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    color: #46494c;
    font-size: 16px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.symptom-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.symptom-box i {
    font-size: 22px;
    color: #01bdb2;
    background: rgba(13, 110, 253, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.symptom-box p {
    margin: 0;
    font-size: 16px;
    color: #46494c;
    font-weight: 500;
}

.symptom-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-note {
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
    color: #dc3545;
}

@media(max-width: 576px) {
    .section-heading h2 {
        font-size: 25px;
    }
}


.premium-emergency-section {
    position: relative;
    padding: 60px 20px;
    background: url('../css/images/hospital-7.jpg') center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Dark + Blue Overlay */
.premium-emergency-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 41, 89, 0.8),
            rgba(1, 189, 178, 9));
    z-index: 1;
}

/* Content */
.emergency-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.emergency-content h1 {
    font-size: 39px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}


.emergency-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fff;
    color: #0d6efd;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 14px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
    .emergency-content h1 {
        font-size: 32px;
    }

    .emergency-content p {
        font-size: 16px;
    }
}


.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-item {
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
}



.slide-item .container {
    position: relative;
    z-index: 2;
}

/* 🔹 Tablet */
@media (max-width: 992px) {
    .slide-item {
        height: 70vh;
    }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
    .slide-item {
        height: 5vh;
    }
}

.about-section {
    background: #f8fafc;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #0f172a;
}

.about-content p {
    color: #3f454e;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.about-btn {
    background: #2563eb;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
    background: #1e40af;
    color: #fff;
}

.signature-img {
    height: 40px;
}

/* Image Styling */
.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

.premium-medical-section {
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: url('../images/banners/3.jpg') center/cover no-repeat;
}

/* Overlay */
.premium-medical-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #142959, rgba(0, 180, 216, 0.85));
    z-index: 1;
}

.premium-medical-section .container {
    position: relative;
    z-index: 2;
}

/* Layout */
.medical-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Left Content */
.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.display-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.doctor-bio {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Trust Grid Desktop */
.trust-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    flex: 1 1 30%;
}

.trust-item h4 {
    font-size: 18px;
    margin: 0;
}

.trust-icon {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Form Card */
.booking-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.card-header p {
    font-size: 14px;
    margin-bottom: 25px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.submit-btn {
    background: #fff;
    color: #0d6efd;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

.form-footer {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

    .medical-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .display-title {
        font-size: 36px;
    }

    .trust-item {
        flex: 1 1 45%;
    }

    .input-row {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

    .premium-medical-section {
        padding: 70px 15px;
    }

    .display-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .doctor-bio {
        font-size: 15px;
    }

    .trust-grid {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }

    .booking-card {
        padding: 25px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

.recovery-section {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #142959, #01bdb2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 25px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #142959, #01bdb2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.timeline-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 0 !important;
        right: auto;
    }
}

.floating-contact {
    position: fixed;
    bottom: 10px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease-in-out;
}

.whatsapp-btn {
    background: #25D366;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    color: #fff;
}
.phone-btn {
    background: #42c874;
    animation: pulsePhone 1.5s infinite;
}

/* Updated Pulse Effect Matching Color */
@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 200, 116, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(66, 200, 116, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(66, 200, 116, 0);
    }
}

/* Mobile Responsive Slightly Smaller */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}