 /* Header */
    .hero-header {
        background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
        color: white;
        padding: 80px 20px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.1;
    }

    .hero-header h1 {
        font-size: 3em;
        margin-bottom: 15px;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        opacity: 0.95;
    }

    .trust-stats {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .stat-badge {
        text-align: center;
    }

    .stat-number {
        font-size: 3em;
        font-weight: 700;
        color: #ffd700;
        display: block;
    }

    .stat-text {
        font-size: 1em;
        opacity: 0.9;
    }

    /* Container */


    /* Hospital Overview Card */
    .overview-card {
        background: white;
        border-radius: 15px;
        padding: 50px;
        margin: -40px auto 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .overview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hospital-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .hospital-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .hospital-info h2 {
        color: #0066cc;
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .hospital-info p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .quick-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .info-badge {
        background: #f0f7ff;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .info-badge i {
        color: #0066cc;
        font-size: 1.5em;
    }

    .info-badge-text {
        flex: 1;
    }

    .info-badge-text strong {
        display: block;
        color: #333;
    }

    .info-badge-text span {
        font-size: 0.9em;
        color: #666;
    }

    /* Section */
    .section {
        background: white;
        border-radius: 15px;
        padding: 50px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .section h2 {
        color: #0066cc;
        font-size: 2.2em;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 3px solid #0066cc;
    }

    .section h3 {
        color: #004c99;
        font-size: 1.6em;
        margin: 30px 0 20px;
    }

    /* Photo Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .gallery-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 250px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 20px;
        color: white;
    }

    .gallery-overlay h4 {
        font-size: 1.1em;
        margin: 0;
    }

    /* Doctors Section */
    .doctors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .doctor-card {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .doctor-card:hover {
        border-color: #0066cc;
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
        transform: translateY(-5px);
    }

    .doctor-photo {
        height: 280px;
        background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
        position: relative;
        overflow: hidden;
    }

    .doctor-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .doctor-details {
        padding: 25px;
    }

    .doctor-name {
        color: #0066cc;
        font-size: 1.4em;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .doctor-specialty {
        color: #666;
        font-size: 1em;
        margin-bottom: 15px;
        font-style: italic;
    }

    .doctor-info-list {
        list-style: none;
        margin: 15px 0;
    }

    .doctor-info-list li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .doctor-info-list i {
        color: #0066cc;
        width: 20px;
    }

    /* Treatments Grid */
    .treatments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .treatment-card {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 30px;
        transition: all 0.3s;
    }

    .treatment-card:hover {
        border-color: #0066cc;
        box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
    }

    .treatment-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .treatment-icon i {
        color: white;
        font-size: 2em;
    }

    .treatment-card h4 {
        color: #0066cc;
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    .treatment-card p {
        color: #666;
        line-height: 1.7;
    }

    /* Why Choose Section */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .feature-box {
        background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s;
    }

    .feature-box:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-icon i {
        color: #0066cc;
        font-size: 2.5em;
    }

    .feature-box h4 {
        color: #0066cc;
        margin-bottom: 12px;
    }

    .feature-box p {
        color: #666;
        font-size: 0.95em;
    }

    /* Map Section */
    .map-section {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
    }

    .map-container {
        border-radius: 12px;
        overflow: hidden;
        margin-top: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 450px;
        border: none;
    }

    .location-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .location-card {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        border-left: 4px solid #0066cc;
    }

    .location-card i {
        color: #0066cc;
        font-size: 2em;
        margin-bottom: 15px;
    }

    .location-card h4 {
        color: #333;
        margin-bottom: 10px;
    }

    .location-card p {
        color: #666;
        line-height: 1.6;
    }

    /* FAQ */
    .faq-container {
        margin-top: 30px;
    }

    .faq-item {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-item:hover {
        border-color: #0066cc;
    }

    .faq-question {
        padding: 25px;
        background: #f8f9fa;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s;
    }

    .faq-question:hover {
        background: #e9ecef;
    }

    .faq-question h4 {
        color: #0066cc;
        font-size: 1.1em;
        margin: 0;
    }

    .faq-question i {
        color: #0066cc;
        transition: transform 0.3s;
        font-size: 1.2em;
    }

    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-item.active .faq-answer {
        padding: 25px;
        max-height: 500px;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    /* Success Stories */
    .stories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .story-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        border-left: 4px solid #0066cc;
    }

    .story-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .patient-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0066cc;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
        margin-right: 15px;
    }

    .patient-info h5 {
        color: #333;
        margin-bottom: 5px;
    }

    .patient-info span {
        color: #666;
        font-size: 0.9em;
    }

    .story-text {
        color: #666;
        line-height: 1.7;
        font-style: italic;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
        color: white;
        padding: 60px 40px;
        border-radius: 15px;
        text-align: center;
        margin: 30px 0;
    }

    .cta-section h2 {
        color: white;
        border: none;
        margin-bottom: 20px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .btn {
        padding: 18px 45px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-primary {
        background: white;
        color: #0066cc;
    }

    .btn-primary:hover {
        background: #f0f7ff;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Footer */
    .footer {
        background: #1a1a1a;
        color: white;
        padding: 50px 20px 30px;
        margin-top: 50px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 30px;
    }

    .footer-section h3 {
        color: #0066cc;
        margin-bottom: 20px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        padding: 8px 0;
    }

    .footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section ul li a:hover {
        color: #0066cc;
    }

    .footer-section p {
        color: #ccc;
        line-height: 1.8;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #333;
        color: #999;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-header h1 {
            font-size: 2em;
        }

        .trust-stats {
            gap: 30px;
        }

        .overview-grid {
            grid-template-columns: 1fr;
        }

        .section {
            padding: 30px 20px;
        }

        .quick-info {
            grid-template-columns: 1fr;
        }
    }
   
   .cta-section {
    padding: 65px 50px;
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
        rgba(255,255,255,0.22),
        transparent 65%);
    pointer-events: none;
}

/* Heading */
.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

/* Description */
.cta-section p {
    font-size: 18px;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.35s ease;
    border: none;
}

.cta-section .btn:hover {
    transform: translateY(-4px);
}


.cta-section.style-gree {
    background: linear-gradient(135deg,
        #0b6b3a 0%,
        #0f9d58 45%,
        #1dbf73 100%);
    box-shadow: 0 30px 60px rgba(15, 157, 88, 0.45);
}

.cta-section.style-gree p {
    color: #e6f7ef;
}

.cta-section.style-gree .btn-primary {
    background: linear-gradient(135deg, #ffffff, #dff5ea);
    color: #0b6b3a;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.cta-section.style-gree .btn-secondary {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05));
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.45);
}


.cta-section.style-red {
    background: linear-gradient(135deg,
        #8b1c1c 0%,
        #d32f2f 45%,
        #ff5a5a 100%);
    box-shadow: 0 30px 60px rgba(211, 47, 47, 0.45);
}

.cta-section.style-red p {
    color: #ffecec;
}

.cta-section.style-red .btn-primary {
    background: linear-gradient(135deg, #ffffff, #ffe2e2);
    color: #9a1c1c;
}

.cta-section.style-red .btn-secondary {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
}

.cta-section.style-blue {
    background: linear-gradient(135deg,
        #0d47a1 0%,
        #1976d2 45%,
        #42a5f5 100%);
    box-shadow: 0 30px 60px rgba(25, 118, 210, 0.45);
}

.cta-section.style-blue p {
    color: #e3f2fd;
}

.cta-section.style-blue .btn-primary {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    color: #0d47a1;
}

.cta-section.style-blue .btn-secondary {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
}
.cta-section.style-sea {
    background: linear-gradient(135deg,
        #004d40 0%,
        #00838f 45%,
        #26c6da 100%);
    box-shadow: 0 30px 60px rgba(0, 131, 143, 0.45);
}

.cta-section.style-sea p {
    color: #e0f7fa;
}

.cta-section.style-sea .btn-primary {
    background: linear-gradient(135deg, #ffffff, #dff7fa);
    color: #004d40;
}

.cta-section.style-sea .btn-secondary {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 45px 25px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
        justify-content: center;
    }
}
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

#lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

#lightbox .prev { left: 30px; }
#lightbox .next { right: 30px; }

.zoom-img {
    cursor: zoom-in;
}

.ultra-awards{
    background:linear-gradient(
135deg,
#000000 0%,
#0f0f0f 35%,
#1c1c1c 60%,
#c6a55b 140%
);
    padding:30px 20px;
    position:relative;
    overflow:hidden;
}


/* subtle gold glow */
.ultra-awards::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(197,157,95,.15), transparent 70%);
    top:-200px;
    right:-200px;
}


/* HEADING */

.luxury-heading h2{
    font-family:'Playfair Display',serif;
    font-size:30px;
    color:white;
    font-weight:600;
}

.luxury-heading h2 span{
    color:#c59d5f;
}

.luxury-heading p{
    color:#9a9a9a;
    max-width:650px;
    margin:20px auto 0;
    font-size:17px;
}

.luxury-label{
    color:#c59d5f;
    letter-spacing:3px;
    font-size:13px;
}


/* CARD */

.lux-card {
    background: linear-gradient(145deg, #1111113b, #0a0a0a33);
    border-radius: 18px;
    padding: 55px 40px;
    position: relative;
    transition: .6s;
    border: 1px solid rgba(197, 157, 95, .15);
}
.lux-card h1,.lux-card h2,.lux-card h3,.lux-card h4,.lux-card h5,.lux-card h6{
    color:#c59d5f !important;
}
/* GOLD BORDER ANIMATION */
.lux-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(120deg,transparent,#c59d5f,transparent);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    opacity:.6;
}


/* HOVER = EXPENSIVE FEEL */
.lux-card:hover{
    transform:translateY(-20px) scale(1.02);
    box-shadow:0 40px 80px rgba(0,0,0,.6);
    border-color:#c59d5f;
}


/* ICON */

.lux-icon{
    font-size:46px;
    margin-bottom:25px;
    color:#c59d5f;
}


/* TEXT */

.lux-card h4{
    color:white;
    margin-bottom:12px;
    font-weight:500;
    font-size:22px;
}

.lux-card p{
    color:#a0a0a0;
    line-height:1.8;
}


/* YEAR */

.lux-year{
    margin-top:30px;
    color:#c59d5f;
    font-weight:500;
    letter-spacing:1px;
}


/* SUPER SMOOTH ANIMATION */

.lux-card,
.lux-icon{
    transition:all .5s ease;
}

.lux-card:hover .lux-icon{
    transform:scale(1.2) rotate(8deg);
}
/* ===============================
   HERO SECTION - PREMIUM MEDICAL
================================= */

.header {
    position: relative;
    padding: 110px 20px 140px;
    text-align: center;
    overflow: hidden;

    /* Premium Gradient */
    background: linear-gradient(135deg, #0f4c81, #1aa7a1, #43cea2);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
}

/* Smooth animated gradient */
@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}


/* Dark overlay for readability */
.header::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.35);
}


/* Ensure content above overlay */
.header h1,
.header-subtitle,
.trust-badge{
    position:relative;
    z-index:2;
}


/* ===============================
   TITLE
================================= */

.header h1{
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 18px;
    text-shadow: 0 6px 25px rgba(0,0,0,.35);
}


/* ===============================
   SUBTITLE
================================= */

.header-subtitle{
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
    opacity: .95;
}


/* ===============================
   TRUST BADGE
================================= */

.trust-badge{
    display:inline-block;
    margin-top: 28px;
    padding: 12px 26px;
    border-radius: 50px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);

    font-weight:600;
    letter-spacing:.4px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}


/* ===============================
   QUICK INFO BAR
================================= */

.quick-info{
    position: relative;
    margin-top: -70px; /* pulls over hero */
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;

    padding: 28px;
    border-radius: 18px;

    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}


/* Individual Card */
.quick-info-item{
    text-align:center;
    padding: 18px;
    border-radius: 14px;
    transition:.35s;

    background:white;
}


/* Hover = premium feel */
.quick-info-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
}


/* Icon */
.quick-info-icon{
    font-size: 30px;
    margin-bottom: 10px;
}


/* Label */
.quick-info-label{
    font-weight:700;
    color:#0f4c81;
    margin-bottom:4px;
}


/* Value */
.quick-info-value{
    font-size:15px;
    color:#555;
}


/* ===============================
   MOBILE OPTIMIZATION
================================= */

@media(max-width:768px){

    .header{
        padding: 80px 15px 110px;
    }

    .quick-info{
        margin-top:-50px;
        padding:18px;
        gap:14px;
    }

    .quick-info-item{
        padding:14px;
    }

}


/* ===============================
   ULTRA PREMIUM HERO (NO IMAGE)
================================= */

.pm-hero-noimg{
    position:relative;
    padding:150px 0 170px;
    background:linear-gradient(135deg,#0f4c81,#0676d9);
    color:white;
    text-align:center;
    overflow:hidden;
}

/* subtle premium glow */

.pm-hero-noimg::before{
    content:"";
    /*position:absolute;*/
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(255,255,255,.12),transparent 70%);
    top:-200px;
    left:-200px;
}

/* container */

.pm-container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* center block */

.pm-hero-center{
    max-width:850px;
    margin:auto;
}

/* badge */

.pm-badge{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:9px 20px;
    border-radius:40px;
    font-weight:600;
    backdrop-filter:blur(6px);
    margin-bottom:26px;
}

/* heading */

.pm-hero-noimg h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1px;
}

/* subtitle */

.pm-sub{
    font-size:19px;
    margin:24px auto 36px;
    opacity:.95;
    max-width:680px;
}

/* buttons */

.pm-btn-group{
    display:flex;
    justify-content:center;
    gap:18px;
}

.pm-btn-main{
    background:white;
    color:#0f4c81;
    padding:15px 34px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.pm-btn-main:hover{
    transform:translateY(-5px);
}

.pm-btn-ghost{
    border:2px solid white;
    padding:13px 30px;
    border-radius:40px;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

.pm-btn-ghost:hover{
    background:white;
    color:#0f4c81;
}

/* ===============================
   FLOATING BAR
================================= */

.pm-floating-bar{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.pm-floating-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.pm-float-card{
    background:white;
    padding:28px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 35px 80px rgba(0,0,0,.12);
    font-size:26px;
}

.pm-float-card h4{
    color:#0f4c81;
    margin-top:10px;
    font-size:22px;
}

.pm-float-card p{
    color:#64748b;
    font-size:15px;
}

/* ===============================
   MOBILE
================================= */

@media(max-width:992px){

.pm-floating-grid{
    grid-template-columns:1fr 1fr;
}

.pm-hero-noimg h1{
    font-size:40px;
}

}

@media(max-width:600px){

.pm-floating-grid{
    grid-template-columns:1fr;
}

.pm-hero-noimg{
    padding:110px 0 140px;
}

}
/* ==================================
   FOREGROUND IMAGE SECTION
================================== */

.pm-foreground-section{
    padding:70px 0;
    background:#ffffff;
}

/* container */
.pm-container{
    max-width:1180px;
    margin:auto;
    padding:0 20px;
}

/* grid */

.pm-foreground-grid{
    display:block;
    grid-template-columns:1.05fr .95fr;
    gap:80px;
    align-items:center;
}

/* eyebrow label */

.pm-eyebrow{
    color:#0ea5e9;
    font-weight:700;
    letter-spacing:1.5px;
    font-size:13px;
}

/* heading */

.pm-foreground-text h2{
    font-size:40px;
    margin:14px 0 18px;
    color:#0f4c81;
    line-height:1.2;
}

/* paragraph */

.pm-foreground-text p{
    font-size:17px;
    line-height:1.8;
    color:#475569;
    margin-bottom:28px;
}

/* button */

.pm-btn-main{
    display:inline-block;
    background:#0f4c81;
    color:white;
    padding:14px 30px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.pm-btn-main:hover{
    transform:translateY(-5px);
}

/* IMAGE */

.pm-foreground-image{
    position:relative;
}

/* floating effect */

.pm-foreground-image img{
    width:100%;
    border-radius:26px;
    box-shadow:0 50px 100px rgba(15,76,129,.25);
}

/* subtle background shape */

.pm-foreground-image::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:#e6f2fb;
    border-radius:26px;
    top:30px;
    left:-30px;
    z-index:-1;
}

/* ==================================
   FULL WIDTH DESCRIPTION
================================== */

.pm-desc-section{
    padding:20px 0;
    background:#f7fbff;
}

.pm-desc-container{
    margin:auto;
    padding:0 20px;
}

/* title */

.pm-desc-title{
    font-size:42px;
    color:#0f4c81;
    margin-bottom:20px;
}

/* lead paragraph */

.pm-desc-lead{
    font-size:19px;
    line-height:1.9;
    color:#334155;
    margin-bottom:40px;
}

/* blockquote */

.pm-blockquote{
    border-left:6px solid #0ea5e9;
    padding:22px 26px;
    background:white;
    font-size:20px;
    font-weight:600;
    margin:40px 0;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.pm-blockquote span{
    display:block;
    font-size:14px;
    margin-top:8px;
    color:#64748b;
}

/* info panel */

.pm-info-panel{
    background:#e0f2fe;
    padding:20px 24px;
    border-radius:12px;
    margin:30px 0;
    font-weight:500;
}

/* table */

.pm-table-wrap{
    margin:50px 0;
}

.pm-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.pm-table th{
    background:#0f4c81;
    color:white;
    padding:16px;
    text-align:left;
}

.pm-table td{
    padding:16px;
    border-bottom:1px solid #eee;
}

.pm-table tr:hover{
    background:#f1f7fd;
}

/* doctor note */

.pm-doctor-note{
    margin:40px 0;
    padding:22px;
    background:white;
    border-left:6px solid #10b981;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* checklist */

.pm-check-list{
    list-style:none;
    margin-top:20px;
    margin-left: 50px;
}

.pm-check-list li{
    margin-bottom:12px;
    padding-left:28px;
    position:relative;
}

.pm-check-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#10b981;
    font-weight:700;
}

/* mobile */

@media(max-width:768px){

.pm-desc-title{
    font-size:30px;
}

.pm-blockquote{
    font-size:17px;
}

}
/* ==================================
        PREMIUM FAQ
================================== */

.pm-faq-section{
    padding:120px 0;
    background:#ffffff;
}

/* container */

.pm-faq-container{
    max-width:900px;
    margin:auto;
    padding:0 20px;
}

/* header */

.pm-faq-header{
    text-align:center;
    margin-bottom:60px;
}

.pm-faq-header h2{
    font-size:40px;
    color:#0f4c81;
    margin-bottom:10px;
}

.pm-faq-header p{
    color:#64748b;
    font-size:18px;
}

/* faq item */

.pm-faq-item{
    background:#f8fbff;
    border-radius:16px;
    padding:18px 26px;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

/* hover effect */

.pm-faq-item:hover{
    transform:translateY(-4px);
}

/* question */

.pm-faq-item summary{
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#0f4c81;
    list-style:none;
    position:relative;
    padding-right:40px;
}

/* remove default arrow */

.pm-faq-item summary::-webkit-details-marker{
    display:none;
}

/* custom plus icon */

.pm-faq-item summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:0;
    font-size:26px;
    transition:.3s;
}

/* rotate when open */

.pm-faq-item[open] summary::after{
    content:"–";
}

/* answer */

.pm-faq-content{
    margin-top:14px;
    color:#475569;
    line-height:1.8;
    font-size:16px;
}

/* mobile */

@media(max-width:768px){

.pm-faq-header h2{
    font-size:30px;
}

.pm-faq-item summary{
    font-size:16px;
}

}
/* ==================================
        PREMIUM SUCCESS SECTION
================================== */
.pm-success-h{
    padding:120px 0;
    background:linear-gradient(135deg,#0f4c81,#0a6ed1);
    color:white;
    position:relative;
    overflow:hidden;
}

/* subtle glow */

.pm-success-h::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(255,255,255,.08),transparent 70%);
    top:-250px;
    right:-250px;
}




.pm-success{
    padding:120px 0;
    background:linear-gradient(135deg,#0f4c81,#0a6ed1);
    color:#000;
    position:relative;
    overflow:hidden;
}

/* subtle glow */

.pm-success::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(255,255,255,.08),transparent 70%);
    top:-250px;
    right:-250px;
}

/* container */

.pm-success-container{
    max-width:1150px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* header */

.pm-success-header{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
}

.pm-success-eyebrow{
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    opacity:.85;
}

.pm-success-header h2{
    font-size:44px;
    margin:14px 0;
}

.pm-success-header p{
    font-size:18px;
    opacity:.95;
}

/* grid */

.pm-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* stat cards */

.pm-stat-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    border-radius:18px;
    padding:38px 20px;
    text-align:center;
    transition:.35s;
}

/* hover lift */

.pm-stat-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.18);
}

/* BIG numbers */

.pm-stat-number{
    font-size:26px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:8px;
}

/* label */

.pm-stat-label{
    font-size:16px;
    opacity:.9;
}

/* responsive */

@media(max-width:992px){

.pm-stats-grid{
    grid-template-columns:1fr 1fr;
}

.pm-success-header h2{
    font-size:34px;
}

}

@media(max-width:600px){

.pm-stats-grid{
    grid-template-columns:1fr;
}

}
blockquote {
    border-left: 6px solid #0ea5e9!important;
    padding: 22px 26px!important;
    background: white!important;
    font-size: 20px!important;
    font-weight: 600!important;
    margin: 40px 0!important;
    border-radius: 12px!important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06)!important;
}
/* =====================================================
   PREMIUM MEDICAL BLOCKQUOTE SYSTEM
   Author: Production Ready
   Use: Healthcare / Hospital / Doctor Websites
===================================================== */


/* BASE BLOCKQUOTE */

.pm-blockquote{
    position: relative !important;
    padding: 22px 26px 22px 64px !important;
    margin: 32px 0 !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    background: #fafafa !important;
    border-left: 6px solid #999 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05) !important;
    transition: all .25s ease !important;
}


/* HOVER (Premium Feel) */

.pm-blockquote:hover{
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08) !important;
}


/* ICON BASE */

.pm-blockquote::before{
    position:absolute !important;
    left:22px !important;
    top:22px !important;
    font-size:24px !important;
    font-weight:bold !important;
}



/* =====================================================
   DEFAULT — Neutral Note
===================================================== */

.pm-default{
    background:#f5f5f5 !important;
    border-color:#9e9e9e !important;
}

.pm-default::before{
    content:"" !important;
}



/* =====================================================
   PRIMARY — Important Highlight
===================================================== */

.pm-primary{
    background:#eef4ff !important;
    border-color:#2f6fed !important;
}

.pm-primary::before{
    content:"" !important;
}



/* =====================================================
   SUCCESS — Positive / High Success Rate
===================================================== */

.pm-success{
    /*background:#eaf7ef !important;*/
    border-color:#22a06b !important;
}

.pm-success::before{
    content:"" !important;
}



/* =====================================================
   INFO — Educational Content
===================================================== */

.pm-info{
    background:#eef7fb !important;
    border-color:#0ea5c6 !important;
}

.pm-info::before{
    content:"" !important;
}



/* =====================================================
   WARNING — Precautions
===================================================== */

.pm-warning{
    background:#fff8e6 !important;
    border-color:#f4b400 !important;
}

.pm-warning::before{
    content:"" !important;
}



/* =====================================================
   DANGER — Critical Alert
===================================================== */

.pm-danger{
    background:#fdecec !important;
    border-color:#e53935 !important;
}

.pm-danger::before{
    content:"" !important;
}



/* =====================================================
   CITATION / AUTHOR TEXT
===================================================== */

.pm-blockquote span{
    display:block !important;
    margin-top:12px !important;
    font-weight:600 !important;
    color:#555 !important;
    font-size:15px !important;
}



/* =====================================================
   MOBILE OPTIMIZATION (VERY IMPORTANT)
===================================================== */

@media(max-width:768px){

.pm-blockquote{
    padding:18px 18px 18px 54px !important;
    font-size:15.5px !important;
    border-radius:10px !important;
}

.pm-blockquote::before{
    left:16px !important;
    top:18px !important;
    font-size:20px !important;
}

}



/* =====================================================
   OPTIONAL — ULTRA PREMIUM EFFECT
   (Looks expensive on hospital sites)
===================================================== */

.pm-blockquote{
    backdrop-filter: blur(6px) !important;
}



/* =====================================================
   PREVENT BOOTSTRAP BLOCKQUOTE CONFLICT
===================================================== */

blockquote.pm-blockquote{
    border-top:none !important;
    border-right:none !important;
    border-bottom:none !important;
}
