
/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ===== COLOR TOKENS ===== */
:root {
    --blue: #2b6997;
    --blue-dk: #1d4f72;
    --blue-light: #e6f0f7;
    --blue-xlight: #f0f6fb;
    --green: #008a00;
    --green-dk: #006d00;
    --green-light: #e6f4e6;
    --white: #ffffff;
    --off-white: #f4f8fb;
    --grey-border: #dce7f0;
    --text-dark: #0d1e2e;
    --text-body: #354454;
    --text-muted: #fff;
    --shadow: 0 4px 24px rgba(43,105,151,0.10);
    --shadow-lg: 0 8px 40px rgba(43,105,151,0.16);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'Segoe UI',Arial,sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 12px rgba(43,105,151,0.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .nav-logo img {
        height: 42px;
        object-fit: contain;
    }

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue);
}

    .nav-logo-text span {
        color: var(--green);
    }

.nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: background .2s,transform .15s;
    letter-spacing: .3px;
}

    .nav-cta:hover {
        background: var(--green-dk);
        transform: translateY(-1px);
    }

/* ===== HERO ===== */
.hero {
   
    gap: 64px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}
.hero-inner{
    padding-top:40px;
}


.btn-green {
    background: var(--green);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 7px;
    font-weight: 700;
    font-size: .94rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s,transform .15s;
    display: inline-block;
}

    .btn-green:hover {
        background: var(--green-dk);
        transform: translateY(-1px);
    }

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 7px;
    font-weight: 700;
    font-size: .94rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.4);
    cursor: pointer;
    transition: border-color .2s,background .2s;
    display: inline-block;
}

    .btn-ghost:hover {
        border-color: var(--white);
        background: rgba(255,255,255,.08);
    }

.hero-right {
    flex: 0 0 420px;
    position: relative;
    z-index: 2;
}

.hero-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    position: relative;
}

    .hero-img-wrap img {
        width: 100%;
        display: block;
        border-radius: var(--radius);
    }

.hero-float {
    position: absolute;
    bottom: -18px;
    left: -22px;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 8px 28px rgba(43,105,151,.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-float-icon i {
        font-size: 20px;
        color: #fff;
        line-height: 1;
    }

.hero-float-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.hero-float-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--grey-border);
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-icon i {
        font-size: 16px;
        color: #fff;
        line-height: 1;
    }

.trust-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-sep {
    width: 1px;
    height: 30px;
    background: var(--grey-border);
}

/* ===== SECTION BASE ===== */
section {
    padding: 40px 70px;
}

.sec-label {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}
.solutions-sec .sec-title,
.benefits-sec .sec-title,
.faq-sec .sec-title,
.intro-sec .sec-title {
    color: var(--blue);
}

.sec-title {
    font-size: clamp(1.5rem,2.8vw,2.1rem);
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.challenges-text h2 {
    font-size: clamp(1.5rem,2.8vw,2.1rem);
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.sec-desc {
    color: var(--text-muted);
    font-size: .96rem;
    max-width: 620px;
}

/* ===== HYDERABAD INTRO ===== */
.intro-sec {
    background: var(--white);
}

.intro-inner {
    display: flex;
    gap: 56px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-highlight {
    background: var(--blue-xlight);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin-top: 24px;
    font-size: .93rem;
    color: var(--text-body);
    line-height: 1.72;
}

.intro-stats {
    flex: 0 0 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s,box-shadow .2s;
}

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

    .stat-num span {
        color: var(--green);
    }

.stat-label {
    font-size: .74rem;
    color: var(--text-body);
    font-weight: 500;
    margin-top: 6px;
}

/* ===== HOW SUVARNA HELPS ===== */
.how-sec {
    background: linear-gradient(135deg, #0d2233 0%, #163448 55%, #1a3d55 100%);
    color: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 22px;
}

.how-card {
    background: var(--off-white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s,transform .2s;
}

    .how-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--green),var(--blue));
        opacity: 0;
        transition: opacity .2s;
    }

    .how-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }

        .how-card:hover::before {
            opacity: 1;
        }

.how-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background:#008a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .how-icon i {
        font-size: 24px;
        color: var(--green);
        line-height: 1;
    }

.how-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.how-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.68;
}

/* ===== CHALLENGES ===== */
.challenges-sec {
    background: linear-gradient(135deg, #0d2233 0%, #163448 55%, #1a3d55 100%);
    color: var(--white);
}

.challenges-inner {
    display: flex;
    gap: 56px;
    align-items: center;
}

.challenges-img {
 
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .challenges-img img {
        width:400px;
        display: block;
        height:500px
    }

.challenges-text {
    flex: 1;
}

.ch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ch-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: box-shadow .2s,transform .2s;
}

    .ch-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

.ch-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: #008a00;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ch-icon i {
        font-size: 16px;
        color: var(--green);
        line-height: 1;
    }

.ch-text {
    font-size: .82rem;
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.42;
}

/* ===== SOLUTIONS ===== */
/* =========================================
   KEY SOLUTIONS
   LEFT : ALL CARDS
   RIGHT : ONE STICKY IMAGE
========================================= */

.solutions-sec {
    background: #ffffff;
    padding: 75px 0;
}

.solutions-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 45px;
    align-items: start;
}

/* =========================================
   LEFT SIDE
========================================= */

.solutions-content .sec-label {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 14px;
    border: 1px solid #cceacc;
    border-radius: 30px;
    background: #eaf8ea;
    color: #008a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.solutions-content .sec-title {
    color: var(--blue);
}

.solutions-content .sec-desc {
    margin: 0 0 28px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

/* ALL CARDS ONE BY ONE */
.sol-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* SINGLE CARD */
.sol-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dcebe0;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
}

    .sol-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #008a00;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sol-card:hover {
        border-color: #a6dbaa;
        transform: translateX(7px);
        box-shadow: 0 10px 22px rgba(0, 138, 0, 0.12);
    }

        .sol-card:hover::before {
            opacity: 1;
        }

/* ICON BOX */
.sol-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #cceacc;
    border-radius: 12px;
    background: #eaf8ea;
    color: #008a00;
    transition: all 0.3s ease;
}

    /* ICON IS DIV TAG */
    .sol-icon div {
        font-size: 18px;
        line-height: 1;
    }

.sol-card:hover .sol-icon {
    border-color: #008a00;
    background: #008a00;
    color: #ffffff;
    transform: rotate(-6deg);
}

/* CARD TEXT */
.sol-name {
    color: #102a43;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================
   RIGHT SIDE IMAGE
========================================= */

.solutions-image-side {
    position: sticky;
    top: 100px;
}

.solutions-image-box {
    height: 440px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #081f30;
    box-shadow: 0 18px 40px rgba(8, 31, 48, 0.20);
}

    .solutions-image-box img {
        width: 100%;
        height: 640px;
        display: block;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .solutions-image-box:hover img {
        transform: scale(1.06);
    }

.solutions-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(8, 31, 48, 0.08) 15%, rgba(8, 31, 48, 0.88) 100% );
}

.solutions-image-text {
    position: absolute;
    right: 30px;
    bottom: 32px;
    left: 30px;
    color: #ffffff;
}

    .solutions-image-text span {
        display: inline-block;
        padding: 7px 13px;
        margin-bottom: 12px;
        border-radius: 30px;
        background: #008a00;
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
    }

    .solutions-image-text h3 {
        margin: 0;
        color: #ffffff;
        line-height: 1.25;
    }

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {
    .solutions-sec {
        padding: 60px 0;
    }

    .solutions-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .solutions-image-side {
        position: static;
        order: -1;
    }

    .solutions-image-box {
        min-height: 360px;
    }

        .solutions-image-box img {
            height: 360px;
        }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
    .solutions-sec {
        padding: 45px 0;
    }

    .solutions-wrap {
        padding: 0 14px;
    }

    .solutions-content .sec-title {
        font-size: 27px;
    }



    .solutions-content .sec-desc {
        font-size: 14px;
    }

    .solutions-image-box {
        min-height: 300px;
        border-radius: 17px;
    }

        .solutions-image-box img {
            height: 300px;
        }

    .solutions-image-text {
        right: 20px;
        bottom: 22px;
        left: 20px;
    }

        .solutions-image-text h3 {
            font-size: 24px;
        }

    .sol-list {
        gap: 10px;
    }

    .sol-card {
        gap: 12px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .sol-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

        .sol-icon div {
            font-size: 19px;
        }

    .sol-name {
        font-size: 14px;
    }

    .sol-card:hover {
        transform: translateX(4px);
    }
}

/* ===== BENEFITS ===== */
.benefits-sec {
    background: var(--off-white);
    position: relative;
}
.intro-text h2 {
    color: var(--blue);
}
.how-card h3 {
    color: var(--blue);
}
.how-card p {
    color: #354454;
}
.benefits-sec .sec-desc {
    margin-bottom: 40px;
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 1px;
    background: var(--grey-border);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ben-card {
    background: var(--white);
    padding: 34px 26px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background .2s;
}

    .ben-card:hover {
        background: var(--blue-xlight);
    }

    .ben-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--blue);
    }

    .ben-card:nth-child(even)::before {
        background: var(--green);
    }

.ben-domain {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}

.ben-card:nth-child(even) .ben-domain {
    color: var(--blue);
}

.ben-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ben-card:nth-child(even) .ben-icon {
    background: var(--blue-light);
}

.ben-icon i {
    font-size: 20px;
    color: var(--green);
    line-height: 1;
}

.ben-card:nth-child(even) .ben-icon i {
    color: var(--blue);
}

.ben-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ben-desc {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.68;
    flex: 1;
}

/* ===== WHY SUVARNA ===== */
.why-sec {
    background: linear-gradient(135deg,#0d2233 0%,#163448 55%,#1a3d55 100%);
    color: var(--white);
}


    .why-sec .sec-label {
        color: #6ddc6d;
    }

    .why-sec .sec-desc {
        color: rgba(255,255,255,.68);
    }

.why-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-list-wrap {
    flex: 1;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-item {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background .2s;
}

    .why-item:hover {
        background: rgba(255,255,255,.12);
    }

.why-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .why-check i {
        font-size: 13px;
        color: #fff;
        line-height: 1;
    }

.why-text {
    font-size: .87rem;
    color: rgba(255,255,255,.88);
    font-weight: 500;
    line-height: 1.45;
}

.why-img {
    flex: 0 0 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

    .why-img img {
        width: 100%;
        display: block;
    }

/* ===== FAQ ===== */
.faq-sec {
    background: var(--white);
}

.faq-wrap {
    max-width: 820px;
}

.faq-item {
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.faq-q {
    padding: 20px 24px;
    background: var(--off-white);
    font-weight: 700;
    color: var(--blue);
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    transition: background .15s;
}

    .faq-q:hover {
        background: var(--blue-xlight);
    }

.faq-arrow {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    color:#fff !important;
}

    .faq-arrow i {
        font-size: 11px;
        color: #fff;
        line-height: 1;
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: .91rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: max-height .35s ease,padding .3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 18px 24px;
    color: #627080
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.open .faq-q {
    background: var(--blue-xlight);
}

/* ===== CTA ===== */
.cta-sec {
    background-image: linear-gradient(rgba(8,31,48,.90),rgba(6,21,33,.97)), url('https://suvarna.co.in/UserImages/homehospitalmanagementsoftwarechennai_385781390.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 88px 6%;
    position: relative;
    overflow: hidden;
}

    .cta-sec::before {
        content: '';
        position: absolute;
        left: -80px;
        top: -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(0,138,0,.1);
        pointer-events: none;
    }

    .cta-sec::after {
        content: '';
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(43,105,151,.1);
        pointer-events: none;
    }

.cta-title {
    font-size: clamp(1.6rem,3vw,2.3rem);
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    color: var(--white);
}

.cta-desc {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    background: var(--white);
    color: var(--blue);
    padding: 14px 38px;
    border-radius: 7px;
    font-weight: 800;
    font-size: .96rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s,transform .15s;
    display: inline-block;
}

    .btn-white:hover {
        background: var(--blue-xlight);
        transform: translateY(-1px);
    }

.btn-green-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 38px;
    border-radius: 7px;
    font-weight: 700;
    font-size: .96rem;
    text-decoration: none;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: background .2s;
    display: inline-block;
}

    .btn-green-outline:hover {
        background: var(--green);
    }



/* ===== RESPONSIVE ===== */
@media(max-width:960px) {
    .hero {
        flex-direction: column;
        padding: 64px 5% 56px;
        gap: 44px;
    }

    .hero-right {
        flex: none;

        width: 100%;
        max-width: 480px;
    }

    .intro-inner {
        flex-direction: column;
        gap: 36px;
    }

    .intro-stats {
        flex: none;
        width: 100%;
    }

    .challenges-inner, .why-inner {
        flex-direction: column;
        gap: 36px;
    }

    .challenges-img, .why-img {
        flex: none;
        width: 100%;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .ben-grid {
        grid-template-columns: 1fr 1fr;
        padding:0 
    }
}

@media(max-width:560px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .ch-grid {
        grid-template-columns: 1fr;
    }

    .intro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ben-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        gap: 18px;
    }

    .trust-sep {
        display: none;
    }

    nav {
        padding: 0 4%;
    }

    section {
        padding: 52px 4%;
    }
}

.stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.count-suffix,
.pan-suffix {
    display: inline-block;
}
/* =========================================
   PRODUCT TABS - TRUST STRIP STYLE
========================================= */

.product-category-tabs {
    width: 100%;
}

/* SMALL HEADING */
.category-heading {
    margin-bottom: 10px;
    color: #102a43;
    font-size: 18px;
    font-weight: 700;
}

/* MAIN LIGHT BACKGROUND STRIP */
.product-tabs-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #f4f8fb;
    border-top: 1px solid #d9e5ec;
    border-bottom: 1px solid #cfdde5;
    padding: 18px 15px;
}

/* EACH TAB */
.product-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    min-height: 42px;
    color: #09233a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    border-right: 1px solid #d7e4eb;
    transition: all 0.3s ease;
}

    /* REMOVE LAST BORDER */
    .product-tab-btn:last-child {
        border-right: none;
    }

    /* GREEN SQUARE ICON */
    .product-tab-btn .tab-icon {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 9px;
        background: #008a00;
        color: #ffffff;
        font-size: 16px;
        box-shadow: 0 5px 12px rgba(0, 138, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* TEXT */
    .product-tab-btn .tab-label {
        line-height: 1.3;
    }

    /* HOVER */
    .product-tab-btn:hover {
        color: #008a00;
    }

        .product-tab-btn:hover .tab-icon {
            background: #006f00;
            transform: translateY(-3px) scale(1.06);
            box-shadow: 0 8px 16px rgba(0, 138, 0, 0.28);
        }

    /* ACTIVE TAB */
    .product-tab-btn.active {
        color: #008a00;
        font-weight: 700;
    }

        .product-tab-btn.active .tab-icon {
            background: #006f00;
            box-shadow: 0 7px 15px rgba(0, 138, 0, 0.28);
        }

/* TABLET */
@media (max-width: 992px) {
    .product-tabs-wrapper {
        justify-content: flex-start;
        padding: 12px;
        gap: 8px;
    }

    .product-tab-btn {
        padding: 8px 16px;
        border: 1px solid #d7e4eb;
        border-radius: 8px;
        background: #ffffff;
    }

        .product-tab-btn:last-child {
            border-right: 1px solid #d7e4eb;
        }
    .blog-grid{
        padding:0;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .category-heading {
        font-size: 16px;
    }

    .product-tabs-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 8px;
    }

    .product-tab-btn {
        width: 100%;
        min-height: 48px;
        padding: 8px 12px;
        font-size: 13px;
    }

        .product-tab-btn .tab-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            font-size: 14px;
        }
}
.challenges-text .sec-desc {
    color: var(--white)
}
.banner-content{
    margin-top:50px;
}
#benefits .sec-desc, #faq .sec-desc, #hyderabad-overview .sec-desc {
    color: #0d2233;
}
.ben-card .ben-desc {
    color: #0d2233;
}