
    .patient-btn {
        display: inline-block;
        padding: 14px 22px;
        background: linear-gradient(135deg, #3f969b, #2e787c);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 3px;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .patient-btn:hover {
        background: linear-gradient(135deg, #2e787c, #3f969b);
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
        color: #fff;
        text-decoration: none;
    }

    /* Add Highlight Animation on Scroll Visibility */
    @keyframes glowPulse {
        0% { box-shadow: 0 0 0 rgba(63,150,155,0.4); }
        50% { box-shadow: 0 0 25px rgba(63,150,155,0.7); }
        100% { box-shadow: 0 0 0 rgba(63,150,155,0.4); }
    }

    .patient-btn {
        animation: glowPulse 2.5s infinite ease-in-out;
    }

    .hernia-services-grid {
        background-color: #f8fbfb; /* Very light teal/grey background */
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .hernia-services-grid .section-heading {
        text-align: center;
        margin-bottom: 50px;
    }

    .hernia-services-grid .section-heading h2 {
        color: #1d3b71;
        font-size: 32px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .hernia-services-grid .heading-line {
        height: 3px;
        width: 60px;
        background-color: #3f969b;
        margin: 0 auto;
        border-radius: 2px;
    }

    /* Flexbox utility for equal height columns */
    .hernia-services-grid .flex-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    /* YAHAN FIX KIYA HAI: Gap explicitly columns par lagaya hai */
    .hernia-services-grid .flex-row > [class*='col-'] {
        margin-bottom: 40px; /* Upar aur neeche ki row ke beech ka gap */
    }

    /* Modern Card Design */
    .modern-hernia-card {
        background: #ffffff;
        padding: 30px 25px;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        border: 1px solid #eef2f5;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    /* Top Accent Line */
    .modern-hernia-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1d3b71;
        transition: all 0.4s ease;
    }

    .modern-hernia-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(29, 59, 113, 0.1);
        border-color: transparent;
    }

    .modern-hernia-card:hover::before {
        background-color: #3f969b;
    }

    .modern-hernia-card h3 {
        color: #1d3b71;
        font-size: 20px;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .modern-hernia-card p {
        color: #373636;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* Animated Know More Link */
    .modern-hernia-card .know-more {
        margin-top: auto;
        display: inline-block;
        color: #3f969b;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    .modern-hernia-card .know-more span {
        display: inline-block;
        transition: transform 0.3s ease;
        margin-left: 5px;
    }

    .modern-hernia-card:hover .know-more {
        color: #1d3b71;
    }

    .modern-hernia-card:hover .know-more span {
        transform: translateX(6px);
    }

    .surgeon-services {
        background-color: #ffffff;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    
    .surgeon-services .primary-heading {
        color: #1d3b71; /* Dark Blue */
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3f969b;
    }
    
    .surgeon-services .secondary-heading {
        color: #1d3b71;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .surgeon-services .tertiary-heading {
        color: #3f969b; /* Teal */
        font-size: 18px;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .surgeon-services .content-card {
        background-color: #f8fcfc;
        padding: 30px;
        border-radius: 6px;
        border-left: 5px solid #1d3b71;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .surgeon-services .sub-card {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 4px;
        border-top: 4px solid #3f969b;
        box-shadow: 0 1px 5px rgba(0,0,0,0.08);
        height: 100%;
        margin-bottom: 20px;
    }

    .surgeon-services p {
        color: #171616;
        line-height: 1.7;
        font-size: 17px;
        margin-bottom: 15px;
    }

    .surgeon-services .internal-link {
        color: #3f969b;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 1px dotted #3f969b;
        transition: all 0.3s;
    }

    .surgeon-services .internal-link:hover {
        color: #1d3b71;
        border-bottom: 1px solid #1d3b71;
    }

    .surgeon-services .btn-custom-cta {
        background-color: #1d3b71;
        color: #ffffff;
        border: 2px solid #1d3b71;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 4px;
        text-transform: uppercase;
        display: inline-block;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

    .surgeon-services .btn-custom-cta:hover {
        background-color: #3f969b;
        border-color: #3f969b;
        color: #ffffff;
        text-decoration: none;
    }


