    /* Variables for consistency */
    :root {
        --primary-gold: #c5a059;
        /* Main accent color */
        --deep-charcoal: #1a1a1a;
        /* Primary text and button color */
        --soft-bg: #f8f9fa;
        /* Light background for contrast */
        --clinical-blue: #f1f4f7;
        /* Subtle clinical background */
        --text-muted-color: #6c757d;
        /* Muted text for descriptions */
        --success-color: #28a745;
        /* For green checkmarks */
        --danger-color: #dc3545;
        /* For red highlights/warnings */
    }

    /* --- Overall Page Structure --- */
    .service-page-wrapper {
        background-color: #ffffff;
        overflow-x: hidden;
        /* Prevents horizontal scroll */
    }

    /* --- Hero Section --- */
    .service-hero {

        /* padding: 120px 0 80px; */
        color: white;
        text-align: left;
        position: relative;

    }


    .service-hero img {
        /* height: 60vh;*/
        width: 100%;
        object-fit: cover;
    }


    .pos-ab {
        position: absolute;
        top: 50%;
        left: 0%;
        right: 0%;
        transform: translate(0%, -50%);
    }



    /* "C:\xampp\htdocs\poorvadentalcare.com\assetes\images\dental-srevices\dental-implants.webp" */
    .treatment-hero {}







    .service-hero h1 {
        color: white;

        font-size: 2.8rem;
        font-family: 'Playfair Display', serif;
        /* Slightly smaller than display-4 to fit better */
        line-height: 1.2;
    }

    .service-hero .lead {
        font-size: 1.2rem;
        background-color: #1563AE;
        padding: 1% 2%;
    }

    .service-hero .btn-gold {
        background: var(--primary-gold);
        color: var(--deep-charcoal);
        border-color: var(--primary-gold);
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .ser-icon {
        width: 120px;
    }

    .met-our-sp {
        text-decoration: none;
        background-color: #bda06d;
        color: white;
        font-size: 15px;
        font-weight: 500;
        padding: 1% 3%;
        /* margin-top: 3% !important; */
    }

    .service-hero .btn-gold:hover {
        background: var(--deep-charcoal);
        color: white;
        border-color: var(--deep-charcoal);
    }

    .service-hero .quick-info {
        font-size: 0.9rem;
        font-weight: 500;
        opacity: 0.8;
    }

    /* --- Main Content Area --- */
    .service-content-wrapper {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
        /* padding-top: 50px; */
        /* Add space below hero */
    }

    .service-content-wrapper h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        color: var(--deep-charcoal);
        font-size: 2.1rem;
    }

    .service-content-wrapper h2::after {
        content: "";
        display: block;
        width: 200px;
        height: 3px;
        background-color: #177ba0;
        margin-top: 10px;
    }

    .service-content-wrapper h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: var(--deep-charcoal);
    }

    /* Highlighted Callout Box */
    .highlight-card {
        background: var(--clinical-blue);
        border-left: 6px solid var(--primary-gold);
        padding: 2.5rem;
        border-radius: 0 20px 20px 0;
        margin: 2.5rem 0;
    }

    .highlight-card p {
        font-size: 1.1rem;
        color: var(--deep-charcoal);
        margin-bottom: 0;
        font-style: italic;
    }

    /* Image Styling */
    .content-image {
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* Comparison Grid */
    .comparison-box {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eee;
        height: 100%;
        background-color: white;
    }

    .comp-header {
        padding: 18px 20px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1.1rem;
    }

    .comp-header.bg-success {
        background-color: var(--success-color);
    }

    .comp-header.bg-danger {
        background-color: var(--danger-color);
    }

    .comp-body {
        padding: 25px;
        background: white;
    }

    .comp-item {
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
        align-items: center;
        color: #555;
    }

    .comp-item i {
        margin-top: 2px;
    }

    /* Small adjustment for icon alignment */
    .comp-item.positive {
        color: var(--success-color);
    }

    .comp-item.negative {
        color: var(--danger-color);
    }

    /* Process Steps */
    .process-step {
        position: relative;
        padding-left: 50px;
        /* Space for the circle number */
        margin-bottom: 40px;
        padding-bottom: 10px;
        /* Extra space below the last step */
    }

    .process-step::after {
        /* Vertical line connecting steps */
        content: '';
        position: absolute;
        top: 40px;
        /* Start below the number circle */
        left: 17px;
        /* Center align with the number circle */
        width: 3px;
        height: calc(100% - 40px);
        /* Extend to the bottom, minus the top offset */
        background-color: var(--primary-gold);
        opacity: 0.6;
    }

    .process-step:last-child::after {
        display: none;
        /* No line after the last step */
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
        background: var(--primary-gold);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        z-index: 2;
        /* Ensure it's above the line */
    }

    .process-step h5 {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.2rem;
        color: var(--deep-charcoal);
    }

    .process-step p {
        color: var(--text-muted-color);
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    /* FAQ Section - Accordion */
    .premium-accordion .accordion-item {
        border: none;
        margin-bottom: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-radius: 16px !important;
    }

    .accordion h3 {
        font-weight: 400 !important;
    }

    .premium-accordion .accordion-button {
        /* font-weight: 700; */
        font-size: 1.1rem;
        padding: 20px 25px;
        box-shadow: 0px 0px 10px lightgray !important;
        background-color: #f7f7f7;
        border-radius: 20px;
    }

    .premium-accordion .accordion-button:not(.collapsed) {
        background-color: var(--clinical-blue);
        color: var(--primary-gold);
    }

    .premium-accordion .accordion-body {
        padding: 20px 25px;
        font-size: 1rem;
        color: var(--text-muted-color);
        line-height: 1.7;
    }

    /* --- Sidebar --- */
    .sticky-sidebar {
        position: sticky;
        top: 100px;
        /* Adjust based on nav height */
    }

    .sidebar-card {
        background: white;
        border: 1px solid #c5a059;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
        padding: 30px;
    }

    .sidebar-card h4 {
        font-size: 1.4rem;
        text-align: center;
        color: #c5a059;
    }

    .sidebar-card .form-control {
        background: var(--soft-bg);
        border-radius: 12px;
        border: 1px solid transparent;
        padding: 14px 20px;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 10px lightgrey;
    }

    .sidebar-card .form-control:focus {
        border-color: var(--primary-gold);
        box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    }

    .sidebar-card .btn-dark {
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
    }

    .sidebar-card hr {
        border-color: #e0e0e0;
    }

    .sidebar-card .whatsapp-link {
        color: var(--success-color);
        font-weight: 700;
        text-decoration: none;
    }

    .sidebar-card .whatsapp-link:hover {
        color: #218838;
    }

    .poorva-benefits-card {
        background: var(--deep-charcoal);
        color: white;
        border-radius: 24px;
        padding: 30px;
    }

    .poorva-benefits-card h5 {
        color: var(--primary-gold);
        font-size: 1.2rem;
    }

    .poorva-benefits-card ul li {
        margin-bottom: 15px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .poorva-benefits-card i {
        color: var(--primary-gold);
        margin-right: 10px;
    }

    .comparison-card {
        background: #fff;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f1f1f1;
    }

    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* Header */
    .card-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .card-header h4 {
        font-weight: 600;
        margin: 0;
    }

    .card-header .icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 20px;
    }

    /* Success Card */
    .success-card {
        border-left: 5px solid #28a745;
    }

    .success-card .icon {
        background: rgba(40, 167, 69, 0.1);
        color: #28a745;
    }

    /* Danger Card */
    .danger-card {
        border-left: 5px solid #dc3545;
    }

    .danger-card .icon {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    /* Items */
    .comp-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 15px;
        color: #444;
    }

    .comp-item i {
        font-size: 18px;
        margin-right: 10px;
    }

    /* Colors */
    .success-card .comp-item i {
        color: #28a745;
    }

    .danger-card .comp-item i {
        color: #dc3545;
    }


    .symptom-card {
        display: flex;
        align-items: center;
        background: lightblue;
        padding: 18px 20px;
        border-radius: 14px;
        border: 1px solid #f1f1f1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        height: 100%;
    }

    .symptom-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    /* Icon styling */
    .symptom-card .icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 50%;
        background: rgba(255, 193, 7, 0.15);
        /* gold tint */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
    }

    .symptom-card .icon i {
        color: #d4a017;
        /* premium gold */
        font-size: 18px;
    }

    /* Text */
    .symptom-card p {
        margin: 0;
        font-size: 15px;
        color: #444;
        font-weight: 500;
    }


    @media only screen and (max-width:760px) {
        .service-hero img {
            height: 50vh !important;
            width: 100%;
            object-fit: cover;
            object-position: 95% center;
            margin-bottom: 4%;
        }

        .service-content-wrapper h2{
            font-size: 30px;
        }

        .pos-ab{
            position: relative !important;
            transform: translate(0%, 0%);
        }

        .pos-ab h1 {
            color: black !important;
        }

        .service-hero h1{
            font-size: 35px !important;
        }

        .service-hero .pos-ab{
            padding: 0% !important;
        }

        .service-hero .row{
            padding: 2% !important;
        }

    }