/*
Theme Name: ziymedical
Theme URI: https://wordpress.org/themes/twentyten/
Author: Abdul Basit
Version: 0.00001
Tested up to: 6.9
Text Domain: ziymedical
*/
/* =Reset default browser CSS. Based on work by Eric Meyer.
-------------------------------------------------------------- */
.translated-rtl body, .translated-rtl h1, .translated-rtl h2, .translated-rtl h3, .translated-rtl h4, .translated-rtl h5, .translated-rtl h6, p {
    font-family: unset;
}
.translated-rtl font font {
    font-family: initial;
}
/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

.pagination-wrapper .page-numbers.current {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    pointer-events: none;
}

.pagination-wrapper .page-numbers.dots {
    border: none;
    background: transparent;
    pointer-events: none;
}

.pagination-wrapper .page-numbers i {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .pagination-wrapper .page-numbers {
        min-width: 35px;
        height: 35px;
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }
    
    .pagination-wrapper .page-numbers span {
        display: none;
    }
    
    .pagination-wrapper .page-numbers i {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .pagination-wrapper {
        gap: 0.25rem;
    }
    
    .pagination-wrapper .page-numbers {
        min-width: 32px;
        height: 32px;
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}    

/* FAQ Section Styles */
.zfaq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.zfaq .faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.zfaq .faq-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #15509f, #2aa9e1, #f09340);
    border-radius: 2px;
}

.zfaq .faq-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #15509f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.zfaq .faq-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.zfaq .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.zfaq .faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(21, 80, 159, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zfaq .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(21, 80, 159, 0.15);
    border-color: #2aa9e1;
}

.zfaq .faq-item.active {
    border-color: #15509f;
    box-shadow: 0 8px 30px rgba(21, 80, 159, 0.2);
}

.zfaq .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    position: relative;
}

.zfaq .faq-item.active .faq-question {
    background: linear-gradient(135deg, #15509f 0%, #2aa9e1 100%);
}

.zfaq .faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-right: 40px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.zfaq .faq-item.active .faq-question h3 {
    color: #ffffff;
}
.single-treatment .pst-sidebar-widget img.dctr {
    display: none;
}
.zfaq .faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.zfaq .faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #f09340, #f5b97f);
    transform: rotate(180deg);
}

.zfaq .faq-toggle i {
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.zfaq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.zfaq .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px 30px 30px;
}

.zfaq .faq-answer-content {
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

.zfaq .faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.zfaq .faq-answer-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.zfaq .faq-answer-content ul li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    color: #2aa9e1;
    font-weight: bold;
}

.zfaq .faq-highlight {
    background: linear-gradient(135deg, #15509f15, #2aa9e115);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #f09340;
    margin: 15px 0;
    font-weight: 500;
}

.zfaq .faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    border-radius: 20px;
    color: #ffffff;
}

.zfaq .faq-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.zfaq .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.zfaq .faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.zfaq .faq-cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zfaq .faq-cta-btn.primary {
    background: #ffffff;
    color: #15509f;
}

.zfaq .faq-cta-btn.primary:hover {
    background: #f09340;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.zfaq .faq-cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.zfaq .faq-cta-btn.secondary:hover {
    background: #ffffff;
    color: #15509f;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .zfaq {
        padding: 50px 0;
    }

    .zfaq .faq-header h1 {
        font-size: 2rem;
    }

    .zfaq .faq-header p {
        font-size: 1rem;
    }

    .zfaq .faq-question {
        padding: 20px;
    }

    .zfaq .faq-question h3 {
        font-size: 1rem;
        padding-right: 20px;
    }

    .zfaq .faq-toggle {
        width: 35px;
        height: 35px;
    }

    .zfaq .faq-toggle i {
        font-size: 1rem;
    }

    .zfaq .faq-answer {
        padding: 0 20px;
    }

    .zfaq .faq-item.active .faq-answer {
        padding: 20px 20px 25px 20px;
    }

    .zfaq .faq-cta {
        padding: 30px 20px;
    }

    .zfaq .faq-cta h3 {
        font-size: 1.5rem;
    }

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

    .zfaq .faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Service Pricing Styles */
.zsprice {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.zsprice .pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.zsprice .pricing-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #15509f, #2aa9e1, #f09340);
    border-radius: 2px;
}

.zsprice .pricing-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #15509f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.zsprice .pricing-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Info Box */
.zsprice .info-box {
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    border-left: 5px solid #2aa9e1;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(21, 80, 159, 0.1);
}

.zsprice .info-box h4 {
    color: #15509f;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.zsprice .info-box h4 i {
    color: #2aa9e1;
    font-size: 1.5rem;
}

.zsprice .info-box p {
    color: #495057;
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Form Section */
.zsprice .contact-form-section {
    margin-top: 50px;
}

.zsprice .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.zsprice .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #15509f, #2aa9e1, #f09340);
    border-radius: 2px;
}

.zsprice .contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(21, 80, 159, 0.1);
}

.zsprice .service-contact-form .form-control,
.zsprice .service-contact-form .form-select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.zsprice .service-contact-form .form-control:focus,
.zsprice .service-contact-form .form-select:focus {
    border-color: #2aa9e1;
    box-shadow: 0 0 0 0.2rem rgba(42, 169, 225, 0.15);
}

.zsprice .service-contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.zsprice .phone-input-group {
    display: flex;
    gap: 10px;
}

.zsprice .country-code-select {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 100px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zsprice .country-code-select:focus {
    border-color: #2aa9e1;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(42, 169, 225, 0.15);
}

.zsprice .phone-input-group .form-control {
    flex: 1;
}

.zsprice .g-recaptcha-placeholder {
    margin: 20px 0;
}

.zsprice .recaptcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

.zsprice .recaptcha-box input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #2aa9e1;
}

.zsprice .recaptcha-box label {
    flex: 1;
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.05rem;
}

.zsprice .recaptcha-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zsprice .recaptcha-logo i {
    color: #ffffff;
    font-size: 1.2rem;
}

.zsprice .recaptcha-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 0;
}

.zsprice .recaptcha-note a {
    color: #2aa9e1;
    text-decoration: none;
}

.zsprice .recaptcha-note a:hover {
    text-decoration: underline;
}

.zsprice .submit-btn {
    padding: 16px 60px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zsprice .submit-btn:hover {
    background: #15509f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 80, 159, 0.3);
}

.zsprice .whatsapp-message {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    border-radius: 15px;
    border: 2px solid #2aa9e1;
}

.zsprice .whatsapp-message p {
    margin: 0;
    font-size: 1.1rem;
    color: #495057;
}

.zsprice .whatsapp-message a {
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zsprice .whatsapp-message a:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Discount Banner */
.zsprice .discount-banner {
    background: linear-gradient(135deg, #f09340, #ff6b35);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(240, 147, 64, 0.3);
}

.zsprice .discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.zsprice .discount-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.zsprice .discount-banner p {
    font-size: 1.3rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* CTA Section */
.zsprice .pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    border-radius: 20px;
    padding: 60px 40px;
    color: #ffffff;
    margin-top: 60px;
}

.zsprice .pricing-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.zsprice .pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.zsprice .cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zsprice .cta-btn.white {
    background: #ffffff;
    color: #15509f;
}

.zsprice .cta-btn.white:hover {
    background: #f09340;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.zsprice .cta-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.zsprice .cta-btn.outline:hover {
    background: #ffffff;
    color: #15509f;
    transform: translateY(-3px);
}
.discount-banner h2 {
    color: #fff;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .zsprice {
        padding: 50px 0;
    }

    .zsprice .pricing-header h1 {
        font-size: 2rem;
    }

    .zsprice .pricing-header p {
        font-size: 1rem;
    }

    .zsprice .section-title {
        font-size: 2rem;
    }

    .zsprice .contact-form-container {
        padding: 30px 20px;
    }

    .zsprice .phone-input-group {
        flex-direction: column;
    }

    .zsprice .country-code-select {
        width: 100%;
    }

    .zsprice .discount-banner {
        padding: 30px 20px;
    }

    .zsprice .discount-banner h2 {
        font-size: 1.8rem;
    }

    .zsprice .discount-banner p {
        font-size: 1.1rem;
    }

    .zsprice .pricing-cta {
        padding: 40px 20px;
    }

    .zsprice .pricing-cta h3 {
        font-size: 1.8rem;
    }

    .zsprice .pricing-cta p {
        font-size: 1rem;
    }

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

    .zsprice .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Editorial Policy Styles */
.zeditorial {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.zeditorial .policy-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1rem;
}

.zeditorial .policy-container {
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(21, 80, 159, 0.1);
}

.zeditorial .policy-section {
    margin-bottom: 40px;
}

.zeditorial .policy-section:last-child {
    margin-bottom: 0;
}

.zeditorial .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #15509f;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2aa9e1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zeditorial .section-title i {
    color: #f09340;
    font-size: 1.5rem;
}

.zeditorial .policy-section p {
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.zeditorial .policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.zeditorial .policy-section ul li {
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.zeditorial .policy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2aa9e1;
    font-size: 1.1rem;
}

.zeditorial .highlight-box {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 5px solid #4caf50;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.zeditorial .highlight-box h3 {
    color: #2e7d32;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
}

.zeditorial .highlight-box h3 i {
    color: #4caf50;
    font-size: 1.8rem;
}

.zeditorial .highlight-box p {
    color: #495057;
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.zeditorial .info-box {
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    border-left: 5px solid #2aa9e1;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
}

.zeditorial .info-box h4 {
    color: #15509f;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zeditorial .info-box h4 i {
    color: #2aa9e1;
    font-size: 1.3rem;
}

.zeditorial .info-box p {
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

.zeditorial .value-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.zeditorial .value-card:hover {
    border-color: #2aa9e1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 169, 225, 0.2);
}

.zeditorial .value-card i {
    font-size: 2.5rem;
    color: #2aa9e1;
    margin-bottom: 15px;
}

.zeditorial .value-card h5 {
    color: #15509f;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.zeditorial .value-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.zeditorial .process-steps {
    counter-reset: step-counter;
    margin: 30px 0;
}

.zeditorial .process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.zeditorial .process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.zeditorial .process-step h5 {
    color: #15509f;
    font-weight: 700;
    margin-bottom: 10px;
}

.zeditorial .process-step p {
    color: #495057;
    margin: 0;
    line-height: 1.8;
}

.zeditorial .disclaimer-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px solid #f09340;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.zeditorial .disclaimer-box h4 {
    color: #e65100;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.zeditorial .disclaimer-box h4 i {
    color: #f09340;
    font-size: 1.6rem;
}

.zeditorial .disclaimer-box p {
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.zeditorial .disclaimer-box p:last-child {
    margin-bottom: 0;
}

.zeditorial .contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
    margin-top: 60px;
}

.zeditorial .contact-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.zeditorial .contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.zeditorial .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.zeditorial .cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.zeditorial .cta-btn.white {
    background: #ffffff;
    color: #15509f;
}

.zeditorial .cta-btn.white:hover {
    background: #f09340;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.zeditorial .cta-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.zeditorial .cta-btn.outline:hover {
    background: #ffffff;
    color: #15509f;
    transform: translateY(-3px);
}

.zeditorial .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.zeditorial .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.zeditorial .social-links a:hover {
    background: #ffffff;
    color: #15509f;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .zeditorial {
        padding: 50px 0;
    }

    .zeditorial .policy-header h1 {
        font-size: 2rem;
    }

    .zeditorial .policy-header p {
        font-size: 1rem;
    }

    .zeditorial .policy-container {
        padding: 30px 20px;
    }

    .zeditorial .section-title {
        font-size: 1.4rem;
    }

    .zeditorial .policy-section p,
    .zeditorial .policy-section ul li {
        font-size: 1rem;
    }

    .zeditorial .values-grid {
        grid-template-columns: 1fr;
    }

    .zeditorial .contact-cta {
        padding: 40px 20px;
    }

    .zeditorial .contact-cta h3 {
        font-size: 1.8rem;
    }

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

    .zeditorial .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Doctor Detail Page Styles */
.drdetail {
    /*padding: 80px 0;*/
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.drdetail .post {
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(21, 80, 159, 0.1);
}

/* Entry Title */
.drdetail .entry-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #15509f;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 4px solid #2aa9e1;
    position: relative;
}

.drdetail .entry-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #f09340, #ff6b35);
}

/* Entry Meta */
.drdetail .entry-meta {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    border-left: 4px solid #2aa9e1;
}

.drdetail .entry-meta a {
    color: #2aa9e1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.drdetail .entry-meta a:hover {
    color: #15509f;
}

.drdetail .entry-meta .meta-sep {
    margin: 0 8px;
    color: #adb5bd;
}

/* Entry Content */
.drdetail .entry-content {
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.8;
}

.drdetail .entry-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #15509f;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2aa9e1;
    position: relative;
}

.drdetail .entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 80px;
    height: 3px;
    background: #f09340;
}

.drdetail .entry-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #15509f;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #f09340;
}

.drdetail .entry-content h3 strong {
    color: #2aa9e1;
}

.drdetail .entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
}

.drdetail .entry-content p strong {
    color: #15509f;
    font-weight: 700;
}

/* Lists */
.drdetail .entry-content ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.drdetail .entry-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #495057;
}

.drdetail .entry-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #2aa9e1;
    font-size: 1.1rem;
}

/* Specialization Section */
.drdetail .entry-content h3 + ul {
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #2aa9e1;
    margin-top: 20px;
}

.drdetail .entry-content h3 + ul li {
    font-weight: 500;
    color: #15509f;
}

.drdetail .entry-content h3 + ul li::before {
    color: #f09340;
}

/* FAQ Section */
.drdetail .entry-content h3 strong + p {
    font-size: 1.15rem;
    font-weight: 600;
    color: #15509f;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* FAQ Questions */
.drdetail .entry-content > p:not(:first-of-type) {
    background: linear-gradient(135deg, #fff8e1, #fffbf0);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid #f09340;
    margin: 25px 0;
    font-weight: 600;
    color: #15509f;
}

/* FAQ Answers following questions */
.drdetail .entry-content > p + p {
    background: transparent;
    padding: 0;
    border: none;
    font-weight: 400;
    color: #495057;
}

.drdetail .entry-content > p + ul {
    background: #ffffff;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin: 20px 0;
}

/* Highlight Boxes for Important Info */
.drdetail .entry-content > p:first-of-type {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 5px solid #4caf50;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Entry Utility */
.drdetail .entry-utility {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    color: #6c757d;
    font-size: 0.95rem;
}

.drdetail .entry-utility a {
    color: #2aa9e1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.drdetail .entry-utility a:hover {
    color: #15509f;
    text-decoration: underline;
}

.drdetail .entry-utility .edit-link {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px solid #dee2e6;
}

.drdetail .entry-utility .post-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #15509f, #2aa9e1);
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
}

.drdetail .entry-utility .post-edit-link:hover {
    background: linear-gradient(135deg, #0f3d7a, #1e88c8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 80, 159, 0.3);
}

/* Info Cards */
.drdetail .info-card {
    background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
    border-left: 5px solid #2aa9e1;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

.drdetail .warning-card {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-left: 5px solid #dc3545;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .drdetail {
        padding: 50px 0;
    }

    .drdetail .post {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .drdetail .entry-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .drdetail .entry-content h2 {
        font-size: 1.6rem;
        margin-top: 30px;
    }

    .drdetail .entry-content h3 {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .drdetail .entry-content p,
    .drdetail .entry-content ul li {
        font-size: 1rem;
    }

    .drdetail .entry-content h3 + ul {
        padding: 20px;
    }

    .drdetail .entry-utility {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .drdetail .entry-utility {
        display: none;
    }

    .drdetail .post {
        box-shadow: none;
        padding: 20px;
    }
}
/* Sidebar Container */
.pst-sidebar {
  background-color: #f8f9fa;
  padding: 0;
}

/* Sidebar Widget */
.pst-sidebar .pst-sidebar-widget {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sidebar Title */
.pst-sidebar .pst-sidebar-title {
  font-size: 22px;
  font-weight: 700;
  color: #222f5f;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #222f5f;
  position: relative;
}

.pst-sidebar .pst-sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #222f5f;
}

/* Recent Posts Styles */
.pst-sidebar .pst-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pst-sidebar .pst-recent-post-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.pst-sidebar .pst-recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pst-sidebar .pst-post-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.pst-sidebar .pst-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pst-sidebar .pst-post-thumbnail:hover img {
  transform: scale(1.1);
}

.pst-sidebar .pst-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pst-sidebar .pst-post-title {
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.pst-sidebar .pst-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pst-sidebar .pst-post-title a:hover {
  color: #222f5f;
}

.pst-sidebar .pst-post-date {
  font-size: 13px;
  color: #6c757d;
}

/* Contact Form Styles */
.pst-sidebar .pst-contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.pst-sidebar .pst-form-input {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.pst-sidebar .pst-form-input:focus {
  border-color: #222f5f;
  box-shadow: 0 0 0 0.2rem rgba(34, 47, 95, 0.15);
  outline: none;
}

.pst-sidebar .pst-submit-btn {
  background-color: #222f5f;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.pst-sidebar .pst-submit-btn:hover {
  background-color: #1a2447;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 47, 95, 0.3);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .pst-sidebar .pst-sidebar-widget {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .pst-sidebar .pst-sidebar-title {
    font-size: 20px;
  }

  .pst-sidebar .pst-post-thumbnail {
    width: 70px;
    height: 70px;
  }

  .pst-sidebar .pst-post-title {
    font-size: 15px;
  }

  .pst-sidebar .pst-submit-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .pst-sidebar .pst-recent-post-item {
    gap: 12px;
  }

  .pst-sidebar .pst-post-thumbnail {
    width: 60px;
    height: 60px;
  }

  .pst-sidebar .pst-post-title {
    font-size: 14px;
  }
}
/* Sticky Sidebar */
.pst-sidebar {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Adjust for admin bar if logged in */
body.admin-bar .pst-sidebar {
  top: 52px;
}

@media (max-width: 991px) {
  .pst-sidebar {
    position: relative;
    top: 0;
  }
}

/* Hide Contact Form 7 default labels */
.pst-sidebar .pst-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.pst-sidebar .pst-contact-form label {
  display: none !important;
}

.pst-sidebar .pst-contact-form br {
  display: none;
}
.pst-doctor-experience {
    font-size: 13px;
    color: #222f5f;
    font-weight: bold;
}
.pst-doctor-degree {
    font-size: 13px;
}
.dctr img {
    float: left;
    width: 35px;
    border-radius: 30%;
    border: 2px solid #f09340;
    margin-right: 10px;
}
.single-hospitals .drdetail {
    background: unset;
}

.single-hospitals .hospitals {
    background: unset;
    padding: 0px;
}
/* Home treatment section css  */
       .upt-trt {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .upt-trt .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .upt-trt .treatment-grid {
            display: grid;
           grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 40px;
        }

        .upt-trt .treatment-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .upt-trt .treatment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #2aa9e1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .upt-trt .treatment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(46, 124, 181, 0.15);
            border-color: #31ace2;
        }

        .upt-trt .treatment-card:hover::before {
            transform: scaleX(1);
        }

        .upt-trt .card-header-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .upt-trt .treatment-icon-wrapper {
            width: 70px;
            height: 70px;
            background: #4077c2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(46, 124, 181, 0.25);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .upt-trt .treatment-card:hover .treatment-icon-wrapper {
            transform: rotate(5deg) scale(1.1);
            background: var(--primary-orange);
            box-shadow: 0 12px 30px rgba(232, 154, 60, 0.35);
        }

        .upt-trt .treatment-icon-wrapper img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .upt-trt .treatment-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .upt-trt .treatment-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            min-height: 48px;
        }

        .upt-trt .treatment-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .upt-trt .action-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .upt-trt .treatment-btn {
            padding: 4px 4px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .upt-trt .btn-blue {
                background: #279ed9;
                color: white;
                border: 2px solid #279ed9;
        }

        .upt-trt .btn-blue:hover {
            background: #32abe1;
            border-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(46, 124, 181, 0.3);
        }

        .upt-trt .btn-outline-blue {
            background: transparent;
            color: #279ed9;
           border: 2px solid #279ed9;
        }

        .upt-trt .btn-outline-blue:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(46, 124, 181, 0.2);
        }

        .upt-trt .btn-orange {
            background: var(--primary-orange);
            color: white;
            border: 2px solid var(--primary-orange);
        }

        .upt-trt .btn-orange:hover {
            background: #15509f;
            border-color: var(--dark-orange);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 154, 60, 0.4);
        }

        .upt-trt .btn-icon {
            font-size: 0.85rem;
        }

        /* Price Badge */
        .upt-trt .price-badge {
            display: none;
            background: #31ace2;
            color: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(46, 124, 181, 0.2);
        }

        /* Modal Styles - Compact and Simple */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }
        #priceModal .modal-body {
            padding: 25px !important;
            background: #fff;
        }
        .modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .modal-header {
            background: var(--primary-blue);
                padding: 10px 22px !important;
            border-radius: 15px 15px 0 0;
            color: white;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .modal-close {
            background: transparent;
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            padding: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            /*margin-bottom: 15px;*/
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #333;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group label .required {
            color: var(--primary-orange);
        }

        .form-control {
            width: 100%;
            padding: 10px 12px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(46, 124, 181, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 80px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: var(--dark-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(232, 154, 60, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .upt-trt .treatment-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .upt-trt .treatment-card:nth-child(1) { animation-delay: 0.1s; }
        .upt-trt .treatment-card:nth-child(2) { animation-delay: 0.2s; }
        .upt-trt .treatment-card:nth-child(3) { animation-delay: 0.3s; }
        .upt-trt .treatment-card:nth-child(4) { animation-delay: 0.4s; }
        .upt-trt .treatment-card:nth-child(5) { animation-delay: 0.5s; }
        .upt-trt .treatment-card:nth-child(6) { animation-delay: 0.6s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .upt-trt .treatment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .upt-trt {
                padding: 50px 0;
            }

            .upt-trt .section-header h2 {
                font-size: 2.2rem;
            }

            .upt-trt .treatment-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .upt-trt .treatment-card {
                padding: 25px;
            }

            .upt-trt .card-header-section {
                gap: 15px;
            }

            .upt-trt .treatment-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .upt-trt .treatment-icon-wrapper img {
                width: 35px;
                height: 35px;
            }

            .upt-trt .treatment-title {
                font-size: 1.3rem;
            }

            .upt-trt .treatment-description {
                font-size: 0.9rem;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }

            .modal-header {
                padding: 18px 20px;
            }

            .modal-header h3 {
                font-size: 1.2rem;
            }

            .modal-body {
                padding: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .upt-trt .section-header h2 {
                font-size: 1.8rem;
            }

            .upt-trt .action-row {
                grid-template-columns: 1fr;
            }

            .upt-trt .treatment-btn {
                width: 100%;
            }

            .modal-header h3 {
                font-size: 1.1rem;
            }
        }
/* Carousel Container css */
        .zy-hlogo{
            padding: 0.5rem 0;
        }
        .zy-hlogo .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 30px 0;
        }

        .zy-hlogo .carousel-track {
            display: flex;
            animation: zy-scroll 40s linear infinite;
            width: max-content;
        }

        .zy-hlogo .carousel-track:hover {
            animation-play-state: paused;
        }

        /* Logo Items - Clickable */
        .zy-hlogo .logo-item {
            flex: 0 0 auto;
            width: 160px;
            height: 100px;
            margin: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .zy-hlogo .logo-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-color: #3498db;
        }

        .zy-hlogo .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(20%);
            opacity: 0.85;
            transition: all 0.3s ease;
        }

        .zy-hlogo .logo-item:hover img {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Animation */
        @keyframes zy-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Gradient Overlays for smooth fade */
        .zy-hlogo .carousel-wrapper::before,
        .zy-hlogo .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .zy-hlogo .carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .zy-hlogo .carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        /* Trust Indicators */
        .zy-hlogo .trust-indicators {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e8e8e8;
        }

        .zy-hlogo .trust-indicators p {
            color: #95a5a6;
            font-size: 0.95rem;
            font-style: italic;
        }

        /* Tablet Design - Show 4-5 logos */
        @media (max-width: 1024px) {
            .zy-hlogo .logo-item {
                width: 140px;
                height: 90px;
                margin: 0 15px;
                padding: 15px;
            }

            .zy-hlogo .section-header h2 {
                font-size: 2rem;
            }

            .zy-hlogo .carousel-wrapper::before,
            .zy-hlogo .carousel-wrapper::after {
                width: 100px;
            }
        }

        /* Mobile Design - Show 2 logos at a time */
        @media (max-width: 768px) {
            .zy-hlogo {
                padding: 40px 0;
            }

            .zy-hlogo .section-header {
                margin-bottom: 30px;
            }

            .zy-hlogo .section-header h2 {
                font-size: 1.75rem;
            }

            .zy-hlogo .section-header p {
                font-size: 1rem;
                padding: 0 10px;
            }

            /* Mobile: 2 logos visible - each takes ~50% of screen */
            .zy-hlogo .logo-item {
                width: calc(50vw - 50px);
                min-width: 140px;
                height: 90px;
                margin: 0 10px;
                padding: 15px;
            }

            .zy-hlogo .carousel-track {
                animation: zy-scroll 25s linear infinite;
            }

            .zy-hlogo .carousel-wrapper::before,
            .zy-hlogo .carousel-wrapper::after {
                width: 60px;
            }

            .zy-hlogo .trust-indicators {
                margin-top: 30px;
                padding-top: 20px;
            }

            .zy-hlogo .trust-indicators p {
                font-size: 0.85rem;
            }
        }

        /* Small Mobile - Ensure 2 logos */
        @media (max-width: 480px) {
            .zy-hlogo .section-header h2 {
                font-size: 1.5rem;
            }

            .zy-hlogo .logo-item {
                width: calc(50vw - 40px);
                min-width: 130px;
                height: 80px;
                margin: 0 8px;
                padding: 12px;
            }

            .zy-hlogo .carousel-wrapper::before,
            .zy-hlogo .carousel-wrapper::after {
                width: 40px;
            }
        }

        /* Extra Large Screens - Show 8 logos */
        @media (min-width: 1400px) {
            .zy-hlogo .logo-item {
                width: 170px;
                height: 105px;
            }
        }        
/* Scoped styles using parent class zy-stats */
        .zy-stats {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .zy-stats .stats-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .zy-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            background: #ffffff;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .zy-stats .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .zy-stats .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
            border-radius: 50px 0 0 50px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .zy-stats .stat-item:hover::before {
            opacity: 1;
        }
        
        .zy-stats .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
        }
        
        .zy-stats .stat-icon i {
            font-size: 22px;
            color: #ffffff;
        }
        
        .zy-stats .stat-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .zy-stats .stat-number {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        
        .zy-stats .stat-label {
            font-size: 14px;
            color: #6c757d;
            font-weight: 500;
            line-height: 1.2;
        }
        
        /* Color variations for different stats */
        .zy-stats .stat-item:nth-child(1) .stat-icon {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
        }
        
        .zy-stats .stat-item:nth-child(2) .stat-icon {
            background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
            box-shadow: 0 3px 10px rgba(23, 162, 184, 0.3);
        }
        
        .zy-stats .stat-item:nth-child(3) .stat-icon {
            background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
            box-shadow: 0 3px 10px rgba(253, 126, 20, 0.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .zy-stats .stats-container {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .zy-stats {
                padding: 30px 0;
            }
            
            .zy-stats .stats-container {
                gap: 25px;
            }
            
            .zy-stats .stat-item {
                padding: 12px 20px;
                gap: 12px;
            }
            
            .zy-stats .stat-icon {
                width: 45px;
                height: 45px;
            }
            
            .zy-stats .stat-icon i {
                font-size: 20px;
            }
            
            .zy-stats .stat-number {
                font-size: 20px;
            }
            
            .zy-stats .stat-label {
                font-size: 13px;
            }
        }
        
        @media (max-width: 576px) {
            .zy-stats .stats-container {
                gap: 20px;
            }
            
            .zy-stats .stat-item {
                padding: 10px 18px;
                width: 100%;
                max-width: 320px;
            }
            
            .zy-stats .stat-icon {
                width: 40px;
                height: 40px;
            }
            
            .zy-stats .stat-icon i {
                font-size: 18px;
            }
            
            .zy-stats .stat-number {
                font-size: 18px;
            }
            
            .zy-stats .stat-label {
                font-size: 12px;
            }
        }        
/* ─── Award-section-only styles ─── */
.zy-award-section {
  padding: 80px 0;
  background:     background: linear-gradient(135deg, rgb(240, 249, 255), rgb(224, 242, 254));
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.zy-award-section::before,
.zy-award-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.zy-award-section::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,160,23,.10) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.zy-award-section::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,100,23,.08) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

/* ── Card wrapper ── */
.zy-award-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.09), 0 2px 8px rgba(212,160,23,.10);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ── Image column ── */
.zy-award-img-col {
  flex: 0 0 42%;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.zy-award-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.zy-award-card:hover .zy-award-img-col img {
  transform: scale(1.04);
}

/* Gold ribbon in top-left of image */
.zy-award-ribbon {
  position: absolute;
  top: 18px; left: 18px;
      background: linear-gradient(135deg, #1b68b1, #154f9d);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(201,162,39,.40);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.zy-award-ribbon svg {
  width: 14px; height: 14px; fill: #fff;
}

/* ── Content column ── */
.zy-award-content-col {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Decorative giant quote mark */
.zy-award-content-col::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 36px;
  font-size: 120px;
  line-height: 1;
  color: rgba(212,160,23,.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Hospital badge */
.zy-award-hospital-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a3c6e08, #1a3c6e12);
  border: 1px solid rgba(26,60,110,.14);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #1a3c6e;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.zy-award-hospital-badge svg {
  width: 16px; height: 16px;
  stroke: #1a3c6e; stroke-width: 2;
  fill: none;
}

/* Award heading */
.zy-award-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 16px;
}
.zy-award-heading span {
  color: #c9a227;
}

/* Gold divider */
.zy-award-divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, #c9a227, #f0c040);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* Body text */
.zy-award-body {
  font-size: 15px;
  color: #4a4a6a;
  line-height: 1.8;
  margin-bottom: 0px;
}

/* Presenter info */
.zy-award-presenter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fdf8ee, #fffaf3);
  border: 1px solid rgba(212,160,23,.22);
  border-left: 4px solid #c9a227;
  border-radius: 10px;
}
.zy-award-presenter-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, #f0c040);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,162,39,.30);
}
.zy-award-presenter-icon svg {
  width: 20px; height: 20px; fill: #fff;
}
.zy-award-presenter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  font-weight: 600;
  margin-bottom: 2px;
}
.zy-award-presenter-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

/* Stars row */
.zy-award-stars {
  display: flex;
  gap: 4px;
  margin-top: 20px;
}
.zy-award-stars svg {
  width: 18px; height: 18px;
  fill: #c9a227;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.entry-content img {
    width: 100% !important;
    height: auto !important;
}
  .zy-award-section { padding: 52px 0; }

  .zy-award-card {
    flex-direction: column;
    border-radius: 16px;
  }
  .zy-award-img-col {
    flex: none;
    min-height: 280px;
    width: 100%;
  }
  .zy-award-content-col {
    padding: 32px 24px 36px;
  }
  .zy-award-content-col::before {
    font-size: 80px;
    top: 4px; left: 18px;
  }
  .zy-award-heading { font-size: 22px; }
  .zy-award-body { font-size: 14px; }
}        