/* ===================================================================
   Innovinfotech — Power BI / Data Analysis & Reporting page styles
   =================================================================== */

/* Smooth offcanvas transition */
.offcanvas {
    transition: transform 0.3s ease-in-out;
}

/* ------------------------------------------------------------------
   TECH TILES (Our Work Process — replaces numbered step boxes)
   ------------------------------------------------------------------ */
.ptiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.ptile {
    text-align: center;
}

.ptile svg {
    width: 100%;
    max-width: 124px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 12px 26px rgba(30, 39, 97, .18);
    transition: transform .15s, box-shadow .15s;
}

.ptile:hover svg {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(30, 39, 97, .26);
}

.ptile h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 14px 0 3px;
    color: #1c2541;
}

.ptile p {
    font-size: .84rem;
    color: #6b7280;
    margin: 0;
}

.card .ic svg {
    width: 24px;
    height: 24px;
}

/* Responsive tiles */
@media (max-width: 991.98px) {
    .ptiles {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .ptiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }
    .ptile svg {
        max-width: 96px;
    }
}

/* ------------------------------------------------------------------
   POWER BI CAPABILITY CARDS
   ------------------------------------------------------------------ */
.powerbi-card {
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color .25s ease;
    background: #fff;
}

.powerbi-card:hover {
    box-shadow: 0 10px 30px rgba(45, 78, 207, 0.12);
    transform: translateY(-4px);
    border-color: #d3deff;
}

.powerbi-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.powerbi-card .icon-wrap svg {
    width: 26px;
    height: 26px;
}

.powerbi-card h5 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1c2541;
}

.powerbi-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ------------------------------------------------------------------
   WHY POWER BI — STAT HIGHLIGHT STRIP
   ------------------------------------------------------------------ */
.powerbi-highlight {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 16px;
    padding: 40px 36px;
}

.powerbi-highlight .stat-item {
    text-align: center;
    padding: 14px 10px;
    border-radius: 10px;
    transition: background .2s ease;
}

.powerbi-highlight .stat-item:hover {
    background: rgba(255, 255, 255, .55);
}

.powerbi-highlight .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d4ecf;
    line-height: 1;
}

.powerbi-highlight .stat-label {
    font-size: 0.85rem;
    color: #555;
    margin-top: 6px;
}

@media (max-width: 575.98px) {
    .powerbi-highlight {
        padding: 28px 20px;
    }
    .powerbi-highlight .stat-number {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------------
   INDUSTRIES SERVED
   ------------------------------------------------------------------ */
.industry-badge {
    display: inline-block;
    background: #f4f6f8;
    border: 1px solid #dde3ea;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    color: #444;
    margin: 5px 4px;
    transition: background .2s ease, border-color .2s ease;
}

.industry-badge:hover {
    background: #eef2ff;
    border-color: #c7d4fb;
}

/* ------------------------------------------------------------------
   SECTION EYEBROW LABEL
   ------------------------------------------------------------------ */
/* ------------------------------------------------------------------
   SECTION EYEBROW LABEL
   ------------------------------------------------------------------ */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d4ecf;
    margin-bottom: 10px;
    display: block;
}

/* ------------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------------ */
.hero-section {
    background: linear-gradient(180deg, #f3f5f9 0%, #eef1f7 100%);
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1c2541;
    line-height: 1.25;
}

.hero-desc {
    color: #5b6473;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 560px;
}

.hero-cta {
    gap: 14px;
    margin-top: 28px;
}

.hero-cta .btn {
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 600;
}

.hero-cta .btn-outline-primary {
    background: transparent;
}

.hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(28, 37, 65, 0.12);
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }
}

/* ------------------------------------------------------------------
   OVERVIEW SECTION
   ------------------------------------------------------------------ */
.overview-section {
    background: #fff;
    padding: 70px 0;
}

.overview-badge {
    display: inline-block;
    background: #2d4ecf;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 18px;
    margin-bottom: 18px;
}

.overview-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1c2541;
    margin-bottom: 16px;
}

.overview-text {
    color: #5b6473;
    line-height: 1.85;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 575.98px) {
    .overview-section {
        padding: 48px 0;
    }
    .overview-title {
        font-size: 1.35rem;
    }
}


/* ------------------------------------------------------------------
   HERO HEADING HIGHLIGHT
   ------------------------------------------------------------------ */
.hero-highlight {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    /*padding: 2px 10px;*/
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ------------------------------------------------------------------
   TOOLS & SOURCES BADGES
   ------------------------------------------------------------------ */
.tool-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3142;
    margin: 5px 6px 5px 0;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.tool-badge:hover {
    border-color: #2d4ecf;
    color: #2d4ecf;
    box-shadow: 0 4px 12px rgba(45, 78, 207, 0.1);
}

/* ------------------------------------------------------------------
   WORK PROCESS — 4 STEP CARDS
   ------------------------------------------------------------------ */
.process-step {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 26px 22px;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.process-step:hover {
    box-shadow: 0 10px 26px rgba(30, 39, 97, 0.1);
    transform: translateY(-3px);
}

.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1c2541;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1c2541;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ------------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------------ */
.cta-banner {
    background: linear-gradient(135deg, #1c2541 0%, #2d4ecf 100%);
    border-radius: 16px;
    padding: 56px 32px;
    color: #fff;
}

.cta-banner h3 {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 26px;
    line-height: 1.7;
}

.cta-banner .btn-light {
    padding: 10px 28px;
    border-radius: 8px;
    color: #1c2541;
}

@media (max-width: 575.98px) {
    .cta-banner {
        padding: 40px 22px;
    }
    .cta-banner h3 {
        font-size: 1.35rem;
    }
}

/* ------------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------------ */
.faq-accordion .accordion-item {
    border: 1px solid #e8ecf0;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1c2541;
    background: #fff;
    padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #2d4ecf;
    background: #f6f8ff;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: #e8ecf0;
}

.faq-accordion .accordion-body {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    padding: 4px 20px 20px;
}