.ph-hero-wrapper {
    background: linear-gradient(135deg, #5f3fab 0%, #06b2e5 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Unique Title Styles */
.ph-main-title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.ph-highlight {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


.ph-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Unique Button Design */
.ph-action-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-btn {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ph-btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ph-btn-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Button Colors */
.ph-btn-call {
    background: #ffffff;
    color: #5f3fab;
}

.ph-btn-call .ph-btn-icon {
    background: rgba(95, 63, 171, 0.1);
}

.ph-btn-wa {
    background: #25D366;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.ph-btn-wa .ph-btn-icon {
    background: rgba(255, 255, 255, 0.2);
}



/* Unique Decorative Backgrounds */
.ph-shape-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 0;
}

.ph-shape-top {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -100px;
}

.ph-shape-bottom {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -50px;
}

.ph-hero-content {
    position: relative;
    z-index: 2;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .ph-main-title {
        font-size: 33px;
    }
}

@media (max-width: 768px) {
    .ph-hero-wrapper {
        padding: 80px 0;
    }

    .ph-main-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .ph-action-group {
        flex-direction: column;
        align-items: center;
    }

    .ph-btn {
        /* width: 100%;
        max-width: 300px; */
        justify-content: center;
    }
}



.contact-section {
    background: #fdfdfe;
    font-family: 'Poppins', sans-serif;
}

/* Heading Design */
.main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.main-heading span {
    color: #06b2e5;
}



.sub-text {
    color: #777;
    font-size: 1.1rem;
}

/* Contact Info Card */
.contact-info {
    background: linear-gradient(145deg, #5f3fab, #06b2e5);
    padding: 40px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(95, 63, 171, 0.2);
}

.contact-info h3 {
    font-weight: 700;
    font-size: 1.5rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateX(10px);
}

.icon-wrapper {
    min-width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-box h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-box p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Form Card Design */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.custom-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #f9f9f9;
    transition: all 0.3s ease;
    outline: none;
}

.custom-input:focus {
    background: #fff;
    border-color: #06b2e5;
    box-shadow: 0 0 0 4px rgba(6, 178, 229, 0.1);
}

/* Button Animation */
.submit-btn {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(to right, #5f3fab, #06b2e5);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(95, 63, 171, 0.3);
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive Fixes */
@media(max-width:768px) {
    .main-heading {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-card {
        padding: 25px;
    }
}

/* --- Global & Variables --- */
:root {
    --p-blue: #0061ff;
    --p-green: #25d366;
    --p-dark: #1e293b;
    --p-bg: #f8faff;
    --p-accent: #0798aa;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--p-bg);
}

/* --- Sticky Form Logic --- */
.sticky-form-container {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 10;
}

/* --- Card Designs --- */
.premium-card {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.appointment-form-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-header {
    background: linear-gradient(135deg, #5f3fab, #06b2e5);
    padding: 25px 20px;
    text-align: center;
}

/* --- Circular Image --- */
.image-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
    border: 2px dashed #e2e8f0;
    border-radius: 50%;
}

.doctor-circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-tag {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--p-dark);
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* --- Info Pills --- */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-pill {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--p-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.info-pill i {
    color: var(--p-blue);
}

/* --- Forms & Buttons --- */
.form-control {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 10px !important;
    padding: 10px;
}

.input-group-text {
    background-color: #fff;
    color: var(--p-blue);
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 10px 0 0 10px !important;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0 !important;
}

.btn-call-premium {
    background: var(--p-accent);
    color: white;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    flex: 1;
    transition: 0.3s;
}

.btn-whatsapp-premium {
    background: white;
    color: var(--p-green);
    border: 2px solid var(--p-green);
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    flex: 1;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-submit-form {
    background: linear-gradient(135deg, #5f3fab, #06b2e5);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    transition: 0.3s;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #5f3fab, #06b2e5);
    transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .sticky-form-container {
        position: relative;
        top: 0;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-call-premium,
    .btn-whatsapp-premium {
        width: 100%;
        margin-bottom: 10px;
    }

    .doctor-circle-img {
        width: 140px;
        height: 140px;
    }
}


                        :root {
                        --primary-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                        --surgery-color: #4834d4;
                        --chemo-color: #22a6b3;
                        --target-color: #f0932b;
                        --hipec-color: #eb4d4b;
                        --glass-bg: rgba(255, 255, 255, 0.95);
                        }
                        .med-treatment-section {
                        font-family: 'Inter', -apple-system, sans-serif;
                        }
                        .med-container {
                        max-width: 1100px;
                        margin: 0 auto;
                        }
                        .med-intro-header {
                        margin-bottom: 50px;
                        }
                        .med-intro-header h2 {
                        font-weight: 700;
                        color: #2d3436;
                        letter-spacing: -0.5px;
                        margin-bottom: 10px;
                        }
                        /* Bento Grid Layout */
                        .med-bento-grid {
                        display: grid;
                        grid-template-columns: repeat(12, 1fr);
                        gap: 20px;
                        }
                        .med-card-premium {
                        background: var(--glass-bg);
                        border-radius: 24px;
                        padding: 30px;
                        position: relative;
                        overflow: hidden;
                        border: 1px solid rgba(255, 255, 255, 0.3);
                        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
                        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                        }
                        .med-card-premium:hover {
                        transform: translateY(-8px);
                        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
                        }
                        /* Span mapping for responsive bento */
                        .span-7 { grid-column: span 7; }
                        .span-5 { grid-column: span 5; }
                        .span-4 { grid-column: span 4; }
                        .span-8 { grid-column: span 8; }
                        .med-icon-wrapper {
                        width: 60px;
                        height: 60px;
                        border-radius: 16px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 24px;
                        margin-bottom: 20px;
                        color: white;
                        }
                        .bg-surgery { background: linear-gradient(135deg, #5f3fab, #06b2e5) }
                        .bg-chemo   { background: linear-gradient(135deg, #5f3fab, #06b2e5)}
                        .bg-target  { background: linear-gradient(135deg, #5f3fab, #06b2e5) }
                        .bg-hipec   { background: linear-gradient(135deg, #5f3fab, #06b2e5) }
                        .med-card-title {
                        font-size: 1.25rem;
                        font-weight: 700;
                        color: #2d3436;
                        margin-bottom: 15px;
                        }
                        .med-feature-list {
                        list-style: none;
                        padding: 0;
                        margin-bottom: 20px;
                        }
                        .med-feature-list li {
                        margin-bottom: 10px;
                        font-size: 0.95rem;
                        color: #636e72;
                        display: flex;
                        align-items: center;
                        }
                        .med-feature-list i {
                        margin-right: 12px;
                        font-size: 12px;
                        color: #a29bfe;
                        }
                        .tech-pill-group {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                        margin-top: 15px;
                        }
                        .tech-pill {
                        background: #f0f2f5;
                        padding: 6px 14px;
                        border-radius: 100px;
                        font-size: 0.75rem;
                        font-weight: 600;
                        color: #2d3436;
                        text-transform: uppercase;
                        }
                        /* Responsive Adjustments */
                        @media (max-width: 992px) {
                        .span-7, .span-5, .span-4, .span-8 { grid-column: span 12; }
                        }
                        @media(max-width: 576px){
                        .med-intro-header h2{
                        font-size: 25px;
                        }
                        }
                     

/* Section */
.tm-faq-section {
    background: #f8fbff;

}

/* Heading */
.tm-faq-heading {
    font-size: 32px;
    font-weight: 700;

}

.tm-faq-sub {
    color: #6c757d;
}

/* Accordion */
.tm-faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Button */
.tm-faq-accordion .accordion-button {
    font-weight: 600;
    color: #03246b;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active */
.tm-faq-accordion .accordion-button:not(.collapsed) {
    background: #5f3fab;
    color: #fff;
}

/* Icon */
.tm-faq-accordion .accordion-button i {
    font-size: 18px;
}

/* Body */
.tm-faq-accordion .accordion-body {
    background: #fff;
    color: #555;
    font-size: 14px;
}

/* Remove default arrow */
.accordion-button::after {
    filter: brightness(0);
}

.tm-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}


            .oc-main-title-1{
            font-size: 27px;
            }
            @media(max-width: 576px){
            .oc-main-title-1{
            font-size: 25px;
            }
            }
            .oc-treatment-container {
            /* background: #ffffff; */
            padding: 10px;
            border-radius: 30px;
            /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); */
            margin: 30px 0;
            overflow: hidden;
            /* border: 1px solid #f0f0f0; */
            }
            /* Text Styles */
            .oc-main-title {
            font-size: 29px;
            font-weight: 700;
            color: #2d3436;
            line-height: 1.2;
            margin-bottom: 20px;
            }
            .oc-accent {
            color: #06b2e5;
            background: linear-gradient(135deg, #5f3fab, #06b2e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            }
            .oc-status-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(95, 63, 171, 0.1);
            color: #5f3fab;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            }
            .oc-description {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
            }
            .oc-description-secondary {
            font-size: 1rem;
            color: #777;
            line-height: 1.6;
            border-left: 4px solid #5f3fab;
            padding-left: 15px;
            font-style: italic;
            }
            /* Feature List */
            .oc-feature-list {
            margin-top: 25px;
            /*display: flex;*/
            gap: 20px;
            flex-wrap: wrap;
            }
            .oc-feature-item {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #444;
            }
            .oc-feature-item i {
            color: #06b2e5;
            margin-right: 8px;
            font-size: 1.2rem;
            }
            /* Image Styles */
            .oc-image-wrapper {
            position: relative;
            padding: 20px;
            z-index: 1;
            }
            .oc-main-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
            }
            .oc-image-wrapper:hover .oc-main-img {
            transform: scale(1.03);
            }
            .oc-img-backdrop {
            position: absolute;
            top: 0;
            right: 0;
            width: 80%;
            height: 80%;
            background: linear-gradient(135deg, #5f3fab, #06b2e5);
            border-radius: 20px;
            opacity: 0.1;
            z-index: 0;
            transform: translate(15px, -15px);
            }
            /* Responsive Fixes */
            @media (max-width: 991px) {
            .oc-main-title {
            font-size: 2rem;
            }
            .oc-content-box {
            margin-bottom: 40px;
            }
            .oc-treatment-container {
            /*padding: 25px;*/
            }
            }
            @media (max-width: 576px) {
            .oc-main-title {
            font-size: 1.75rem;
            }
            }
         

.why-section {
    background: #ffffff;
    /* âœ… pure white */
}

/* HEADING */
.main-heading {
    font-size: 30px;
    font-weight: 700;
}

.main-heading span {
    color: #06b2e5;
}

.sub-text {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD STYLE (same feel as services) */
.why-inline {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #5f3fab;
    gap: 20px;
    transition: 0.3s;
}

/* HOVER */
.why-inline:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #5f3fab, #06b2e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

/* CONTENT */
.why-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.why-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .why-inline {
        flex-direction: column;
        text-align: center;
    }
}

.service-inline {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #5f3fab;
    transition: 0.3s;
    gap: 20px;
}

/* HOVER */
.service-inline:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.service-img img {
    width: 350px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

/* CONTENT */
.service-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    /* padding: 10px 22px; */
    border-radius: 30px;
    /* background: linear-gradient(135deg, #5f3fab, #06b2e5); */
    color: #06b2e5;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .service-inline {
        flex-direction: column;
        text-align: center;
    }

    .service-img img {
        margin-bottom: 10px;
    }
}

.tm-cta-section {
    position: relative;
    background: url('assets/img/banner/7.jpg') center/cover no-repeat;
    padding: 80px 20px;
    overflow: hidden;
}

/* Overlay */
.tm-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(95, 63, 171, 0.9);
    /* #03246b overlay */
    z-index: 1;
}

/* Content */
.tm-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    color: #fff;
}

.tm-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.tm-cta-content p {
    font-size: 16px;
    color: white;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Buttons */
.tm-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tm-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* WhatsApp Button */
.tm-btn-whatsapp {
    background: #06b2e5;
    color: #fff;
    border: 1px solid white;
}

.tm-btn-whatsapp:hover {
    color: white;
    /* border: 1px solid white; */
    background: transparent;
}

/* Call Button */
.tm-btn-call {
    background: #fff;
    color: #03246b;
}

.tm-btn-call:hover {
    background: #e6e6e6;
}

/* Responsive */
@media (max-width: 768px) {
    .tm-cta-content h2 {
        font-size: 24px;
    }
}

.gallery-items .pf-item img {
    width: 100%;
    height: 250px;
    /* ðŸ”¥ same height for all */
    object-fit: cover;
    /* image crop hoga but stretch nahi hoga */
    border-radius: 10px;
}

/* OPTIONAL: spacing improve */
.pf-item {
    padding: 8px;
}

/* HOVER EFFECT (optional premium feel) */
.effect-box {
    overflow: hidden;
    border-radius: 10px;
}

.effect-box img {
    transition: 0.4s;
}

.effect-box:hover img {
    transform: scale(1.08);
}


/* Section */
.tm-faq-section {
    background: #f8fbff;
}

/* Heading */
.tm-faq-heading {
    font-size: 32px;
    font-weight: 700;

}

.tm-faq-sub {
    color: #6c757d;
}

/* Accordion */
.tm-faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Button */
.tm-faq-accordion .accordion-button {
    font-weight: 600;
    color: #03246b;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active */
.tm-faq-accordion .accordion-button:not(.collapsed) {
    background: #5f3fab;
    color: #fff;
}

/* Icon */
.tm-faq-accordion .accordion-button i {
    font-size: 18px;
}

/* Body */
.tm-faq-accordion .accordion-body {
    background: #fff;
    color: #555;
    font-size: 14px;
}

/* Remove default arrow */
.accordion-button::after {
    filter: brightness(0);
}

.tm-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}
