﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #0f172a;
}

.pharma-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
}

/* SECTION HEADINGS */
.section-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
}

    .section-heading.light {
        color: #ffffff;
    }

@media (max-width: 900px) {
    .banner-content p {
        text-align: start;
        /*        margin: 0 auto;*/
    }
}

    /* ================= OVERVIEW ================= */
    .pharma-overview {
        background: linear-gradient(135deg, #ecfeff, #f0fdfa);
    }

    .overview-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .overview-panel {
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(12px);
        border-radius: 22px;
        padding: 32px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* ================= PHARMA CHALLENGES ================= */
    .pharma-challenges {
        padding: 40px 0;
    }

    .pharma-container {
        max-width: 1200px;
        margin: auto;
        padding: 0 24px;
    }

    .pharma-section-heading {
        text-align: center;
        font-size: 34px;
        font-weight: 700;
        color: #020617;
        margin-bottom: 56px;
    }

    /* GRID */
    .pharma-challenge-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* CARD */
    .pharma-challenge-card {
        position: relative;
        background: #ffffff;
        padding: 26px 28px 26px 34px;
        border-radius: 14px;
        font-size: 15.5px;
        font-weight: 500;
        color: #1f2937;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

        /* LEFT ACCENT */
        .pharma-challenge-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 16px;
            bottom: 16px;
            width: 5px;
            background: linear-gradient(180deg, #ef4444, #fb7185);
            border-radius: 8px;
        }

        .pharma-challenge-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.12);
        }


    /* RESPONSIVE */
    @media (max-width: 1100px) {
        .pharma-challenge-card {
            padding: 22px 24px 22px 30px;
            font-size: 15px;
        }

        .pharma-section-heading {
            font-size: 30px;
        }
    }

    @media (max-width: 900px) {
        .pharma-challenge-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }

        .pharma-section-heading {
            font-size: 28px;
            margin-bottom: 40px;
        }
    }

    @media (max-width: 768px) {
        .pharma-container {
            padding: 0 20px;
        }

        .pharma-challenge-card {
            font-size: 14.8px;
            padding: 20px 22px 20px 28px;
        }
    }

    @media (max-width: 640px) {
        .pharma-challenge-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .pharma-section-heading {
            font-size: 24px;
            margin-bottom: 32px;
        }

        .pharma-challenge-card {
            font-size: 14.5px;
            padding: 18px 20px 18px 26px;
        }
    }

    @media (max-width: 480px) {
        .pharma-section-heading {
            font-size: 22px;
        }

        .pharma-challenge-card {
            font-size: 14px;
            line-height: 1.55;
        }
    }


    /* ================= PHARMA BENEFITS ================= */

    .pharma-benefits {
        background: linear-gradient(180deg, #ecf6ff, #daeaff);
        padding: 100px 0;
    }

    .pharma-section-heading.light {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        /*    color: #ffffff;*/
        margin-bottom: 70px;
    }

    /* GRID */
    .pharma-benefit-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 71px;
    }

    /* CARD */
    .pharma-benefit-card {
        position: relative;
        background: #ffffff;
        padding: 18px 36px 16px;
        border-radius: 22px;
        box-shadow: 0 18px 45px rgba(0,0,0,0.18);
        overflow: hidden;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    /* INNER PATTERN STRIP */
    .pharma-pattern {
        position: absolute;
        top: 0;
        left: 0;
        height: 6px;
        width: 100%;
        background: repeating-linear-gradient(45deg, #00d0ff, #33b4db 10px, #0587d3 10px, #0cc7ff 20px);
    }

    /* TEXT */
    .pharma-benefit-card h4 {
        margin-top: 18px;
        font-size: 17px;
        font-weight: 600;
        color: #064e3b;
        line-height: 1.4;
    }

    /* SIDE ACCENT */
    .pharma-benefit-card::after {
        content: "";
        position: absolute;
        right: -40px;
        bottom: -40px;
        width: 120px;
        height: 120px;
    }

    /* HOVER EFFECT */
    .pharma-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 65px rgba(0,0,0,0.28);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .pharma-benefit-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .pharma-benefit-grid {
            grid-template-columns: 1fr;
        }
    }


    /* ================= ROI ================= */
    .pharma-roi {
        background: #f8fafc;
        padding: 80px 0;
    }

    .roi-dashboard {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 22px;
    }

    .roi-tile {
        background: #ffffff;
        padding: 26px 22px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }

    /* ================= TABLET ================= */
    @media (max-width: 1024px) {
        .roi-dashboard {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
    }

    /* ================= MOBILE ================= */
    @media (max-width: 600px) {
        .pharma-roi {
            padding: 60px 16px;
            background: linear-gradient(180deg, #f1f5f9, #ffffff);
        }

        .roi-dashboard {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 30px;
        }

        .roi-tile {
            padding: 22px 16px;
            border-radius: 18px;
            box-shadow: 0 10px 26px rgba(0,0,0,0.08);
        }

        /* last card full width if odd */
        .roi-dashboard > .roi-tile:last-child:nth-child(odd) {
            grid-column: span 2;
        }
    }

    /* ================= SMALL MOBILE ================= */
    @media (max-width: 380px) {
        .roi-dashboard {
            grid-template-columns: 1fr;
        }
    }



/*     ================= PHARMA IMPLEMENTATION ================= */

    .pharma-implementation {
        background: #ffffff;
        padding: 100px 0;
    }

    .pharma-section-heading {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #020617;
        margin-bottom: 80px;
    }

/*     TIMELINE WRAPPER */
    .pharma-timeline {
        position: relative;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        align-items: flex-start;
    }

/*         HORIZONTAL LINE */
        .pharma-timeline::before {
            content: "";
            position: absolute;
            top: 26px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e5e7eb;
            z-index: 0;
        }

/*     TIMELINE ITEM */
    .pharma-timeline-item {
        position: relative;
        text-align: center;
        z-index: 1;
    }

/*     STEP CIRCLE */
    .pharma-step {
        width: 52px;
        height: 52px;
        margin: 0 auto 16px;
        background: #bbf5f5;
        color: #052e16;
        font-size: 18px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(34,197,94,0.35);
    }

/*     TEXT */
    .pharma-timeline-item p {
        font-size: 14.5px;
        font-weight: 500;
        color: #1f2937;
        line-height: 1.4;
        max-width: 180px;
        margin: auto;
    }

/*     HOVER */
    .pharma-timeline-item:hover .pharma-step {
        transform: scale(1.08);
        transition: transform 0.3s ease;
    }

/*     RESPONSIVE */
    @media (max-width: 1024px) {
        .pharma-timeline {
            grid-template-columns: repeat(3, 1fr);
            row-gap: 60px;
        }

            .pharma-timeline::before {
                display: none;
            }
    }

    @media (max-width: 768px) {
        .pharma-timeline {
            grid-template-columns: 1fr;
            row-gap: 50px;
        }

            .pharma-timeline::before {
                display: none;
            }

        .pharma-timeline-item p {
            max-width: 240px;
        }
    }


    /* ================= PHARMA MODULES ================= */

    .pharma-modules {
        background: #ffffff;
        padding: 25px 0;
    }

    .pharma-section-heading {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #020617;
        margin-bottom: 80px;
    }

    /* MODULE FLOW WRAPPER */
    .pharma-module-flow {
        margin-left: 50px;
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 60px;
    }

        /* CONNECTING RAIL */
        .pharma-module-flow::before {
            content: "";
            position: absolute;
            top: -87px;
            left: 246px;
            right: 341px;
            height: 1px;
            background: linear-gradient(to right, #00000000, #8da4ff, #839bfb, transparent);
        }

    /* MODULE ITEM */
    .pharma-module-item {
        position: relative;
        font-size: 16px;
        font-weight: 600;
        color: #1e293b;
        padding-left: 32px;
        line-height: 1.4;
    }

        /* DOT INDICATOR */
        .pharma-module-item span {
            position: absolute;
            left: 0;
            top: 4px;
            width: 12px;
            height: 12px;
            background: #2563eb;
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(37,99,235,0.15);
        }

        /* UNDERLINE ACCENT */
        .pharma-module-item::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #2563eb, #22c55e);
            margin-top: 10px;
            border-radius: 2px;
        }

        /* HOVER EFFECT */
        .pharma-module-item:hover span {
            box-shadow: 0 0 0 10px rgba(37,99,235,0.18);
            transition: box-shadow 0.3s ease;
        }

        .pharma-module-item:hover::after {
            width: 70px;
            transition: width 0.3s ease;
        }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .pharma-module-flow {
            grid-template-columns: repeat(2, 1fr);
        }

            .pharma-module-flow::before {
                display: none;
            }
    }

    @media (max-width: 640px) {
        .pharma-module-flow {
            grid-template-columns: 1fr;
        }
    }


    /* ==================== FAQ STYLE 2 (ISOLATED) ==================== */

    .faq2-wrapper {
        background: linear-gradient(180deg, #eef9fb 0%, #f7feff 100%);
        padding: 80px 20px;
        font-family: "Poppins", sans-serif;
        color: #222;
    }

    .faq2-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq2-heading {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .faq2-list {
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq2-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 12px;
        transition: background 0.2s ease;
    }

        .faq2-item:hover {
            background: #fafafa;
        }

    .faq2-title {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        padding: 16px 0;
    }

        .faq2-title::before {
            content: "›";
            font-size: 26px;
            font-weight: 600;
            color: #806666;
            transition: transform 0.3s ease;
        }

        .faq2-title h3 {
            font-size: 18px;
            font-weight: 500;
            margin: 0;
        }

    /* Expand arrow */
    .faq2-item.faq2-expanded .faq2-title::before {
        transform: rotate(90deg);
    }

    .faq2-content {
        max-height: 0;
        overflow: hidden;
        padding-left: 38px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

        .faq2-content p {
            margin: 15px 0;
            color: #555;
        }

    /* Expanded state */
    .faq2-item.faq2-expanded .faq2-content {
        padding-top: 8px;
        padding-bottom: 16px;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1118px) {
        .faq2-list {
            margin: 0 40px;
        }
    }

    @media (max-width: 768px) {
        .faq2-list {
            margin: 0 20px;
        }
    }

    @media (max-width: 300px) {
        .faq2-list {
            margin: 0 10px;
        }

        .faq2-title {
            flex-direction: column;
            align-items: flex-start;
        }

            .faq2-title h3 {
                font-size: 15px;
            }
    }
