:root {
    --primary-orange: #f37021;
    --navy-blue: #1a237e;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --text-dark: #333;
    --sr-orange: #f37021;
    --sr-navy: #1a237e;
    --sr-light-blue: #e8eaf6;
    --sr-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Advertisement - piles,ortho- section */

/* --- Navbar --- */
nav {
    background: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 40px;
}
.nav-buttons .btn-call {
    background: var(--navy-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.nav-buttons .btn-call:hover {
    background: var(--primary-orange);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 8%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(243, 112, 33, 0.1) 100%
    );
    min-height: 85vh;
}
.hero-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease;
}
.hero-text h1 {
    color: var(--navy-blue);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: var(--primary-orange);
}
.hero-text ul {
    list-style: none;
    margin-bottom: 30px;
}
.hero-text ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.hero-text ul li i {
    color: #2ecc71;
    margin-right: 15px;
    font-size: 1.4rem;
}
.hero-form {
    flex: 0.8;
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    margin-left: 40px;
    min-width: 320px;
    border-top: 5px solid var(--primary-orange);
    animation: fadeInRight 1s ease;
}
.hero-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy-blue);
}
.form-group {
    margin-bottom: 15px;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.btn-submit {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
}
.btn-submit:hover {
    background: var(--navy-blue);
    transform: translateY(-3px);
}
.stats-bar {
    background: var(--navy-blue);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 40px 5%;
    text-align: center;
}
.stat-item h2 {
    font-size: 2.2rem;
    color: var(--primary-orange);
}

/* --- Features Section --- */

.sr-unique-benefits-section {
    padding: 80px 8%;
    background-color: #fcfcfc;
    font-family: "Poppins", sans-serif;
}

.sr-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.sr-benefit-card {
    background: var(--sr-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.sr-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.15);
    border-color: var(--sr-orange);
}

.sr-card-icon {
    width: 60px;
    height: 60px;
    background: var(--sr-light-blue);
    color: var(--sr-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.sr-benefit-card:hover .sr-card-icon {
    background: var(--sr-orange);
    color: white;
}

.sr-benefit-card h3 {
    color: var(--sr-navy);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sr-benefit-list {
    list-style: none;
    padding: 0;
}

.sr-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.95rem;
}

.sr-benefit-list li i {
    color: var(--sr-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.sr-insurance-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sr-tag {
    background: #f1f1f1;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sr-navy);
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .sr-unique-benefits-section {
        padding: 40px 5%;
    }
    .sr-benefit-card {
        padding: 25px;
    }
    .hero-text ul li {
        justify-content: center;
    }
}
.panels {
    padding: 40px 8%;
    background: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}
.panels p {
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}
.panel-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    opacity: 0.7;
}
.panel-logos span {
    font-weight: bold;
    color: var(--navy-blue);
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 4px;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 5%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-form {
        margin-left: 5px;
        margin-top: 40px;
    }
    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }
}

/*Why Choose*/
.sr-comparison-wrapper {
    padding: 80px 8%;
    background-color: var(--sr-white);
    font-family: "Poppins", sans-serif;
}

.sr-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sr-section-title h2 {
    color: var(--sr-navy);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.sr-section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--sr-orange);
    border-radius: 2px;
}

.sr-vs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sr-compare-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    background: var(--sr-grey);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.sr-compare-row:hover {
    transform: scale(1.01);
}

.sr-left-side,
.sr-right-side {
    padding: 20px;
    text-align: center;
    font-weight: 500;
}

.sr-left-side {
    color: #666;
    background: #ebebeb;
}

.sr-right-side {
    color: var(--sr-navy);
    background: var(--sr-light-blue);
    border-left: 4px solid var(--sr-orange);
}

.sr-center-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sr-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--sr-white);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.sr-right-side i {
    color: var(--sr-orange);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .sr-compare-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .sr-center-label {
        padding: 10px;
        background: var(--sr-navy);
        color: white;
        border: none;
    }

    .sr-left-side,
    .sr-right-side {
        text-align: center;
        padding: 15px;
    }

    .sr-right-side {
        border-left: none;
        border-top: 4px solid var(--sr-orange);
    }
}

.sr-cta-footer {
    text-align: center;
    margin-top: 40px;
}

.sr-btn-primary {
    background: var(--sr-orange);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.sr-btn-primary:hover {
    background: var(--sr-navy);
    transform: translateY(-2px);
}

/*our doctors*/
.sr-doctors-wrapper {
    padding: 80px 8%;
    background-color: var(--sr-bg-light);
    font-family: "Poppins", sans-serif;
}

.sr-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sr-section-header h2 {
    color: var(--sr-navy);
    font-size: 2.2rem;
    font-weight: 700;
}

.sr-section-header p {
    color: #666;
    margin-top: 10px;
}

/* Doctor List Container */
.sr-doctors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Unique Doctor Card Design */
.sr-doc-card {
    background: var(--sr-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.05);
    border: 1px solid #edf0f5;
    transition: all 0.3s ease;
}

.sr-doc-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--sr-orange);
}

.sr-doc-img-box {
    position: relative;
    margin-right: 30px;
}

.sr-doc-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sr-light-blue);
}

.sr-doc-info {
    flex-grow: 1;
}

.sr-doc-name {
    color: var(--sr-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sr-rating {
    background: #fff8e1;
    color: #ffa000;
    font-size: 0.85rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.sr-doc-spec {
    color: var(--sr-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.sr-doc-exp {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.sr-doc-location {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
}

/* Action Buttons */
.sr-doc-actions {
    display: flex;
    gap: 15px;
}

.sr-btn-outline {
    border: 2px solid var(--sr-orange);
    color: var(--sr-orange);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
    flex: 1;
}

.sr-btn-fill {
    background: var(--sr-navy);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
    flex: 1;
}

.sr-btn-outline:hover {
    background: var(--sr-orange);
    color: white;
}
.sr-btn-fill:hover {
    background: var(--sr-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .sr-doc-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .sr-doc-img-box {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .sr-doc-name {
        justify-content: center;
    }
    .sr-doc-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* What is Piles */

.sr-edu-section-v2 {
    padding: 60px 8%;
    background-color: var(--sr-white);
    font-family: "Poppins", sans-serif;
}

.sr-horizontal-card {
    display: flex;
    align-items: center;
    background: var(--sr-bg-soft);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sr-content-left {
    flex: 1.2;
    padding: 50px;
}

.sr-content-left h2 {
    color: var(--sr-navy);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sr-content-left p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sr-image-right {
    flex: 0.8;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
}
.sr-image-right img {
    width: 600px;
    height: 400px;
}

.sr-med-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.sr-feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sr-bento-item {
    background: var(--sr-white);
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.sr-bento-item:hover {
    border-color: var(--sr-orange);
}

.sr-bento-item h4 {
    color: var(--sr-navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sr-bento-item h4 i {
    color: var(--sr-orange);
}

@media (max-width: 992px) {
    .sr-horizontal-card {
        flex-direction: column;
    }
    .sr-content-left {
        padding: 30px;
        text-align: center;
        order: 1;
    }
    .sr-image-right {
        order: 2;
        padding-bottom: 40px;
    }
    .sr-image-right img {
        width: 280px;
        height: 175px;
    }
}

/*video*/
.sr-video-testimonial-section {
    padding: 80px 8%;
    background-color: var(--sr-bg-light);
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.sr-video-header {
    margin-bottom: 40px;
}

.sr-video-header h2 {
    color: var(--sr-navy);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sr-video-header p {
    color: #666;
    font-size: 1.1rem;
}

.sr-video-main-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background: var(--sr-white);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.sr-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.sr-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sr-video-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.sr-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sr-navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.sr-trust-item i {
    color: var(--sr-orange);
    font-size: 1.2rem;
}

.sr-video-cta {
    margin-top: 50px;
}

.sr-btn-video-call {
    background: var(--sr-orange);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.2);
}

.sr-btn-video-call:hover {
    background: var(--sr-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.2);
}

@media (max-width: 768px) {
    .sr-video-testimonial-section {
        padding: 50px 5%;
    }
    .sr-video-header h2 {
        font-size: 1.8rem;
    }
    .sr-video-trust-bar {
        gap: 20px;
    }
    .sr-trust-item {
        font-size: 0.8rem;
    }
}

/*faq*/

sr-faq-wrapper {
    padding: 80px 8%;
    background-color: var(--sr-white);
    font-family: "Poppins", sans-serif;
}

.sr-faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.sr-faq-title h2 {
    color: var(--sr-navy);
    font-size: 2.2rem;
    font-weight: 700;
}

.sr-accordion-container {
    max-width: 850px;
    margin: 0 auto;
}

/* Unique Accordion Styling */
.sr-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.sr-faq-item:hover {
    border-color: var(--sr-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sr-faq-question {
    padding: 20px 25px;
    background: var(--sr-white);
    color: var(--sr-navy);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.sr-faq-question i {
    color: var(--sr-orange);
    transition: 0.3s;
}

.sr-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease-out,
        padding 0.3s ease;
    background: var(--sr-light-grey);
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Toggle Classes (To be used with simple JS) */
.sr-faq-item.active .sr-faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.sr-faq-item.active .sr-faq-question i {
    transform: rotate(180deg);
}

/* Final Help Footer */
.sr-help-footer {
    background: var(--sr-navy);
    padding: 60px 8%;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.sr-help-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.sr-footer-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sr-btn-expert {
    background: var(--sr-orange);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.sr-btn-callback {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.sr-btn-expert:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.sr-btn-callback:hover {
    background: white;
    color: var(--sr-navy);
}

@media (max-width: 768px) {
    .sr-faq-wrapper {
        padding: 50px 5%;
    }
    .sr-footer-btns {
        flex-direction: column;
    }
}
