﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/*=============== NAV ===============*/
.nav {
    width:auto;
    height: var(--header-height);
}

.nav__data {
/*    width:80px;*/
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.3s;
}

    .nav__logo img.logo-img {
        height: 15px; /* adjust as needed */
        width: auto; /* keeps aspect ratio */
        display: block; /* removes extra gaps */
    }

    .nav__logo:hover {
        color: var(--first-color);
    }

.nav__toggle {
/*    margin-left:auto;*/
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu, .nav__toggle-close {
/*    margin-left:180px;*/
opacity:0;
    font-size: 1.25rem;
    color: var(--title-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {

    .nav__data {
        width:100%;
        display: flex;
        align-items: center;
    }

    .nav__toggle {
        margin-left: auto; /* push hamburger to right */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__toggle-menu{
/*        margin-left:100px;*/
/*        width:600px;*/
        opacity:1;
    }

    .nav__menu {
        background-color: var(--body-color);
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        padding-block: 1.5rem 4rem;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

        .nav__menu::-webkit-scrollbar {
            width: 0.5rem;
        }

        .nav__menu::-webkit-scrollbar-thumb {
            background-color: hsl(220, 12%, 70%);
        }
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

    .nav__link:hover {
        background-color: var(--first-color-lighten);
    }

/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__content, .dropdown__group, .dropdown__list {
    display: grid;
}

.dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s;
}

.dropdown__content {
    row-gap: 1.75rem;
}

.dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
}

    .dropdown__group:first-child {
        margin-top: 1.25rem;
    }

    .dropdown__group:last-child {
        margin-bottom: 1.25rem;
    }

.dropdown__icon i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.dropdown__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.dropdown__list {
    row-gap: 0.25rem;
}

.dropdown__link {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: color 0.3s;
}

    .dropdown__link:hover {
        color: var(--title-color);
    }

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
    .dropdown__group {
        padding-left: 1.5rem;
    }
}
/* For large devices */
@media screen and (min-width: 1118px) {
    /* Nav */
    .nav__data {
        display: flex;
        align-items: center;
    }
    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        column-gap: 3rem;
        height: 100%;
    }

    .nav li {
        display: flex;
    }

    .nav__link {
        padding: 0;
    }

        .nav__link:hover {
            background-color: initial;
        }
    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
        pointer-events: none;
    }

    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        background-color: var(--body-color);
        box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 6rem;
        max-width: 1120px;
        margin-inline: auto;
    }

    .dropdown__group {
        padding: 4rem 0;
        align-content: baseline;
        row-gap: 1.25rem;
    }

        .dropdown__group:first-child, .dropdown__group:last-child {
            margin: 0;
        }

    .dropdown__list {
        row-gap: 0.75rem;
    }

    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }

        .dropdown__icon i {
            font-size: 2rem;
        }

    .dropdown__title {
        font-size: var(--normal-font-size);
    }

    .dropdown__link {
        font-size: var(--small-font-size);
    }

        .dropdown__link:hover {
            color: var(--first-color);
        }

    .dropdown__item {
        cursor: pointer;
    }

        .dropdown__item:hover .dropdown__arrow {
            transform: rotate(180deg);
        }

        .dropdown__item:hover > .dropdown__container {
            top: 5.5rem;
            opacity: 1;
            pointer-events: initial;
            cursor: initial;
        }
}

@media screen and (min-width: 1152px) {
    .container {
        margin-inline: auto;
    }
}


.dropdown__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
}

.dropdown__icon {
    margin-bottom: 15px;  
}

.dropdown__title {
    margin-bottom: 12px;   
}

.dropdown__list {
    padding-left: 0;  
    margin-left: 0;  
}

    .dropdown__list li {
        list-style: none;
        margin-left: 0;   
    }

/*.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/

/* ================= OVERVIEW BASE ================= */
.overview-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    font-family: "Poppins", sans-serif;
}

.overview-container {
    max-width: 1200px; /* fixed readable width */
    margin: 0 auto; /* centers horizontally */
    padding: 0 24px; /* safe side padding */
}


.overview-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overview-r {
    display: flex;
    justify-content: flex-end; /* desktop right aligned */
    margin: 25px 0;
}
.overview-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #1a73ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.overview-header p {
    font-size: 18px;
    color: #444;
    max-width: 900px;
}

/* top row */
.overview-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

/* pills */
.overview-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    background: #444;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    cursor: pointer;
}

    .pill.active {
        background: #1f6fe5;
    }

/* consultant */
.consult-btn {
    background: #1677ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= CONTENT LAYOUT ================= */
.overview-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.overview-left {
    width: 40%;
}

.overview-list {
    display: none;
}

    .overview-list.active {
        display: block;
    }

/* list items */
.list-item {
    padding: 18px 20px;
    cursor: pointer;
    border-left: 4px solid transparent;
}

    .list-item h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .list-item p {
        margin-top: 8px;
        font-size: 14px;
        color: #555;
    }

    .list-item.active {
        border-left-color: #1f6fe5;
    }

    /* hide description for inactive */
    .list-item:not(.active) p {
        display: none;
    }

/* RIGHT */
.overview-right {
    width: 60%;
    display: flex;
    justify-content: center;
}

.overview-image {
    display: none;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .overview-image.active {
        display: block;
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .overview-body {
        flex-direction: column;
    }

    .overview-left,
    .overview-right {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Stack everything vertically */
    .overview-container {
        display: flex;
        flex-direction: column;
    }

    /* Heading first */
    .overview-header {
        order: 1;
    }

    /* Button comes after heading */
    .overview-top {
        order: 2;
        display: flex;
        justify-content: center; /* ✅ responsive centering */
        margin: 16px 0;
    }

    /* Button itself */
    .overview-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 22px;
        border-radius: 999px;
        font-size: 14px;
        white-space: nowrap; /* prevents wrap */
    }

    /* Description & rest of content */
    .overview-body {
        order: 3;
    }

    .overview-right {
        display: none; /* ❌ hide desktop image panel */
    }

    .mobile-image {
        display: none;
        margin-top: 14px;
    }

        .mobile-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

    .list-item.active .mobile-image {
        display: block;
    }
}




/* ================= SAP FEATURES – POLISHED VERSION ================= */

.sap-features-section {
    background: #ffffff;
}

    /* Header */
    .sap-features-section .features-header {
        text-align: left;
    }

    .sap-features-section h2 {
        font-weight: 700;
        font-size: 32px;
        color: #0f172a;
    }

    .sap-features-section .lead {
        font-size: 1.05rem;
        color: #334155;
    }

/* CTA button */
.consult-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #1a73ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(26,115,255,.25);
    transition: all .25s ease;
}

    .consult-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(26,115,255,.35);
    }

/* GRID FIX */
.feature-grid {
    display: flex;
    gap: 28px; /* 👈 SPACE BETWEEN LEFT & RIGHT */
/*    width: 100%;
    max-width: 100%;*/
}

/* LEFT PANEL */
.feature-list {
/*    flex: 0 0 38%;
    max-width: 38%;
    width: 100%;*/
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 32px rgba(15,23,42,0.06);
    max-height: 520px;
    overflow-y: auto;
    position: relative;
}

    .feature-list .feature-row {
        padding: 16px 18px;
        border: none;
        border-bottom: 1px dashed #eef2f7;
        font-weight: 500;
        color: #1f2937;
        transition: all .2s ease;
    }

        .feature-list .feature-row:hover {
            background: #f8fbff;
        }

        .feature-list .feature-row.active {
            background: #eef4ff;
            border-left: 4px solid #1a73ff;
            font-weight: 700;
        }

/* RIGHT PANEL (BLUE CARD) */
.feature-content-area {
    /*    flex: 1;
    max-width: 100%;*/
    background: linear-gradient(rgb(247, 250, 255), rgb(238, 244, 255));
    border-radius: 18px;
    padding: 32px;
    min-height: 520px; /* 👈 MATCH LEFT HEIGHT */
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    position: relative;
    overflow: hidden;
}

/* Feature panels */
.feature-panel {
    display: none;
    animation: fadeSlide .45s ease forwards;
}

    .feature-panel.visible {
        display: block;
    }

    /* Typography inside right panel */
    .feature-panel h3 {
        font-size: 26px;
        font-weight: 700;
        color: #0f2b4c;
        margin-bottom: 10px;
    }

    .feature-panel p {
        color: #475569;
        margin-bottom: 18px;
    }

    .feature-panel ul {
        list-style: none;
        padding: 0;
    }

        .feature-panel ul li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 10px;
            color: #334155;
            line-height: 1.5;
        }

            /* Green tick */
            .feature-panel ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 0;
                color: #22c55e;
                font-weight: 700;
            }

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {

    .sap-features-section {
/*        padding-left: 16px;*/
        padding-right: 36px;
    }

    .feature-grid {
        flex-direction: column;
        gap: 20px;
    }

    .feature-list,
    .feature-content-area {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .feature-list {
        max-height: 280px; /* prevents giant list */
    }

    .feature-content-area {
        min-height: auto;
        padding: 22px;
    }

    .consult-btn {
        display: block;
/*        width: 100%;*/
        text-align: center;
    }
}


/* ===== FIX: KEEP LEFT & RIGHT SIDE-BY-SIDE ALWAYS ===== */
.sap-features-section .feature-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* 🔥 prevents drop */
    align-items: stretch;
    gap: 28px;
}

    /* Neutralize Bootstrap column behavior */
    .sap-features-section .feature-grid > [class*="col-"] {
        float: none !important;
        max-width: none !important;
    }

/* Explicit widths */
.sap-features-section .col-md-4 {
    flex: 0 0 35%;
}

.sap-features-section .col-md-8 {
    flex: 0 0 65%;
}




/* ================= HANA HIGHLIGHTS (white background, benefits above boxes) ================= */
#hana-highlights.hana-highlights {
    /*background: #ffffff;*/ /* white background as requested */
    color: #0f1724;
    font-family: "Poppins", sans-serif;
}

/* Section title for benefits */

/* ================= BUSINESS BENEFITS ================= */
.business-benefits-section {
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 10px;
}

.benefits-subtitle {
    font-size: 18px;
    color: #4b5c6b;
    max-width: 760px;
    margin: 0 auto 50px;
}

/* Grid layout: 3 top, 2 bottom */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px;
}

/* Card */
.benefit-card {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 42px rgba(0,0,0,0.12);
    }

/* Icon */
.benefit-icon {
    margin-bottom: 18px;
}

/* Text */
.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    color: #4b5c6b;
    line-height: 1.55;
}

/* Top row */
.benefits-grid .benefit-card:nth-child(1) {
    grid-column: 1 / span 2;
}

.benefits-grid .benefit-card:nth-child(2) {
    grid-column: 3 / span 2;
}

.benefits-grid .benefit-card:nth-child(3) {
    grid-column: 5 / span 2;
}

/* Bottom row (centered between top cards) */
.benefits-grid .benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.benefits-grid .benefit-card:nth-child(5) {
    grid-column: 4 / span 2;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        /* Reset desktop positioning */
        .benefits-grid .benefit-card {
            grid-column: auto !important;
        }
}


@media (max-width: 600px) {

    .business-benefits-section {
        margin-right:40px;
        padding: 60px 30px;
    }

    .benefits-container {
        padding: 0 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-card {
        padding: 26px 30px;
    }

    .benefits-title {
        font-size: 28px;
    }

    .benefits-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }
}


/* ================= HANA HIGHLIGHTS ================= */

.hana-highlights {
    margin-top: 16px;
}

/* Headings */
.highlight-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 14px;
}

/* Card */
.highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 43, 76, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
    }


/* List */
.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 14px;
}

    /* Two-column list */
    .highlight-list.two-col {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 28px;
    }

    /* List item */
    .highlight-list li {
        position: relative;
        padding-left: 26px;
        font-size: 15px;
        color: #334155;
        line-height: 1.6;
    }

        /* Blue bullet */
        .highlight-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            background: #2563eb;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 9px;
        }

/* ================= SPLIT STYLES ================= */

/* ---------- LEFT: Technical Highlights (HANA style) ---------- */
.hana-highlights .col-lg-6:first-child .highlight-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
}

.hana-highlights .col-lg-6:first-child .highlight-list li {
    padding-left: 34px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1e293b;
}

    .hana-highlights .col-lg-6:first-child .highlight-list li::before {
        width: 10px;
        height: 10px;
        background: #2563eb;
        top: 10px;
    }

/* ---------- RIGHT: Industries (Business style) ---------- */
/* ---------- FORCE INDUSTRY ORDERING (FIX GRID FLOW) ---------- */

/* Industries list only */
.hana-highlights .col-lg-6:last-child .highlight-list.two-col {
    grid-auto-flow: row;
}

    /* LEFT COLUMN ITEMS */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(1) {
        grid-column: 1;
    }
    /* Manufacturing */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(3) {
        grid-column: 1;
    }
    /* Logistics */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(5) {
        grid-column: 1;
    }
    /* Pharma */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(7) {
        grid-column: 1;
    }
    /* FMCG */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(9) {
        grid-column: 1;
    }
    /* Textiles */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(6) {
        grid-column: 1;
    }
    /* Automotive */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(8) {
        grid-column: 1;
    }
    /* Trading */

    /* RIGHT COLUMN ITEMS */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(2) {
        grid-column: 2;
    }
    /* Retail */
    .hana-highlights .col-lg-6:last-child .highlight-list.two-col li:nth-child(4) {
        grid-column: 2;
    }
/* Professional */

.hana-highlights .col-lg-6:last-child .highlight-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    height: 357px;
}

.hana-highlights .col-lg-6:last-child .highlight-list li {
    padding-left: 34px;
    font-size: 15px;
    font-weight: 400;
    color: #1e293b;
}

    .hana-highlights .col-lg-6:last-child .highlight-list li::before {
        width: 10px;
        height: 10px;
        background: #2563eb;
        top: 9px;
    }

/* Softer spacing for industry grid */
.hana-highlights .highlight-list.two-col {
    row-gap: 16px;
}

/* ---------- Shared hover (subtle) ---------- */
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}

/* ---------------- HANA HIGHLIGHTS ---------------- */
@media (max-width: 992px) {
    .highlight-heading {
        font-size: 22px;
    }

    .hana-highlights .col-lg-6:last-child .highlight-card {
        height: auto;
    }
}

/* Responsive */
@media (max-width: 767px) {

    .highlight-list.two-col {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    /* Reset desktop forced ordering */
    .hana-highlights .highlight-list.two-col li {
        grid-column: auto !important;
    }
}


@media (max-width: 575px) {

    .highlight-card {
        width: 100%;
        max-width: 100%;
        padding: 22px 20px; /* balanced padding */
        margin: 0; /* 🔥 critical */
    }

    .highlight-list li {
        font-size: 14.5px;
    }

    .highlight-heading {
        margin-left:-19px;
        font-size: 20px;
    }
}



/* ================= Why Choose SAP Business One on HANA ================= */
.why-sap-section {
    background: transparent; /* keep section background neutral so it integrates with page */
    color: #0f1724;
    font-family: "Poppins", sans-serif;
}

/* heading */
.why-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b2b45;
    margin: 0 0 8px 0;
}

.why-heading .underline {
    width: 135px;
    height: 3px;
    background: linear-gradient(90deg,#2b6ef6,#00b0ff);
    border-radius: 3px;
    margin-top: 8px;
}

/* list layout */
.why-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* each item */
.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* number badge */
.why-index {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(43,110,246,0.12);
    color: #2b6ef6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(11,66,105,0.04);
    flex-shrink: 0;
}

/* text column */
.why-body {
    flex: 1;
    min-width: 0;
}

/* title and description */
.why-title {
    font-size: 16px;
    font-weight: 700;
    color: #072a46;
    margin-bottom: 6px;
}

.why-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* image styling */
.why-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(11,66,105,0.06);
}

/* Button */
.why-cta-wrapper{
    width:210%;
    margin-top: 12px;
    display:flex;
    justify-content: flex-end;
}

.why-consult-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #1a73ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(26, 115, 255, .25);
    transition: all .25s ease;
    white-space: nowrap;
}

/* responsive adjustments */
@media (max-width: 991px) {
    .why-heading h2 {
        font-size: 24px;
    }

    .why-index {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .why-item {
        gap: 12px;
    }

    .why-text {
        font-size: 13.5px;
    }

    .why-illustration {
        margin-top: 20px;
    }
    /* Center CTA properly */
    .why-cta-wrapper {
        width: 94%;
        justify-content: end;
        margin-top: 10px;
        margin-bottom: 18px; /* 🔽 reduced gap before list */
    }

    .why-consult-btn {
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 575px) {

    .why-sap-section {
/*        padding-left: 16px;*/
        padding-right: 16px;
    }

    .why-list {
        width: 100%;
    }

    .why-item {
        margin-left:-10px;
        width: 100%;
    }

    .why-body {
        width: 100%;
    }

    /* CTA BUTTON FIX */
    /* Center CTA properly */
    .why-cta-wrapper {
        width:94%;
        justify-content: end;
        margin-top: 10px;
        margin-bottom: 18px; /* 🔽 reduced gap before list */
    }

    .why-consult-btn {
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }
}



/* ================= MIGRATE FROM SQL TO SAP HANA — refreshed design ================= */
#migrate-sql-hana {
    background: linear-gradient(180deg, rgba(234,247,255,0.45), rgba(244,250,255,0.3));
    color: #0f1724;
    font-family: "Poppins", sans-serif;
}

/* ---- MIGRATE MAIN CARD ---- */
/*.migrate-card {*/
/*    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(11,66,105,0.06);*/
/*box-shadow: 0 18px 40px rgba(11,66,105,0.05);
    overflow: visible;
}*/

/* accent bar on the left of heading */
.migrate-accent-bar {
    width: 6px;
    height: 64px;
    border-radius: 6px;
    margin-right: 18px;
    background: linear-gradient(180deg,#2b6ef6,#00b0ff);
    box-shadow: 0 8px 18px rgba(43,110,246,0.08);
    flex-shrink: 0;
}

/* header/title */
.migrate-title {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    color: #0b2b45;
    margin: 0;
}

/* lead paragraph */
.migrate-lead {
    font-size: 16px;
    color: #23404f;
    margin: 0;
}

/* body copy - slightly tighter and more refined */
.migrate-body p {
    color: #4b606b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px; /* reduced gap for a denser, professional text block */
}

/* emphasized closing line */
.migrate-conclusion {
    margin-top: 10px;
    font-weight: 700;
    color: #0b2b45;
}

/* ---- MIGRATE CALLOUT (right) ---- */
.migrate-callout {
    background: linear-gradient(180deg,#ffffff,#fbfdff);
    border-radius: 12px;
    border: 1px solid rgba(11,66,105,0.06);
    box-shadow: 0 20px 45px rgba(11,66,105,0.05);
}

/* callout icon */
.callout-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg,#e9f8ff,#d8f1ff);
    color: #0b66cc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(11,66,105,0.04);
}

/* callout title & subtile */
.callout-title {
    font-size: 15px;
    font-weight: 700;
    color: #072a45;
}

/* callout list - tighter spacing */
.callout-list {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
}

    .callout-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 8px;
        color: #364e57;
        font-size: 14px;
        line-height: 1.45;
    }

    .callout-list .dot {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 7px;
        height: 7px;
        background: #9ca3af;
        border-radius: 50%;
    }

/* callout footer */
.services-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
    color: #334155;
    font-size: 14px;
}

    .services-list li {
        margin-bottom: 6px;
        padding-left: 6px;
        position: relative;
    }

        .services-list li::before {
            content: "–";
            position: absolute;
            left: -10px;
            color: #9ca3af;
        }

/* subtle responsive float for callout on medium screens */
@media (min-width:375px) and (max-width:768px) {
    .migrate-callout {
        width:420px;
        margin-left:-17px;
        margin-top: 28px;
    }
}
@media (min-width:375px) and (max-width:768px){
    .migrate-card {
        margin-left:-45px;
}
}
/* ============ HANA "VS" Comparison (reference-style) ============ */

.hana-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

    .hana-underline::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 32%;
        border-radius: 4px;
        background: linear-gradient(90deg, #2b6ef6, #00b0ff);
        margin-left: 390px;
    }


/* Outer card */
.hana-vs-card {
    /*    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(11,66,105,0.06);
    box-shadow: 0 20px 40px rgba(11,66,105,0.04);*/
    padding: 22px;
    margin-left: 40px;
}

/* inner 3-column layout */
.hana-vs-inner {
    display: grid;
    grid-template-columns: 1.5fr 115px 3fr;
    gap: 58px;
    align-items: center;
}

/* column basics */
.hana-vs-col {
    padding: 6px 12px;
    min-height: 220px;
}

/* column header */
.hana-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* letter badge (circular) */
.hana-col-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0b2b45;
    background: linear-gradient(180deg,#eaf6ff,#dff6ff);
    box-shadow: 0 8px 18px rgba(11,66,105,0.03);
    font-size: 18px;
}

/* right badge variant */
.hana-badge-right {
    background: linear-gradient(180deg,#e7f3ff,#d9f0ff);
    color: #0b66cc;
}

/* titles */
.hana-col-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0b2b45;
}

.hana-title-right {
    color: #0b66cc;
}

/* features list - left */
.hana-features {
    list-style: none;
    margin: 0;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .hana-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #27414b;
        font-size: 15px;
        line-height: 1.45;
        padding: 6px 6px;
        border-radius: 8px;
    }

/* right list variant (HANA) - stronger text weight and blue accent */
.hana-features-right li {
    color: #0b66cc;
    font-weight: 700;
}

/* bullet dot */
.hana-dot {
    width: 8px;
    height: 8px;
    background: #bfc9cf;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* hana-dot right variant */
.hana-dot-right {
    background: #74a8ff;
}

/* CENTER VS panel */
.hana-vs-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    height: 100%;
    min-height: 180px;
    pointer-events: none;
}

/* thin lines */
.vs-line {
    width: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(11,66,105,0.06), rgba(11,66,105,0.02));
    border-radius: 2px;
}

/* VS bubble */
.vs-bubble {
    background: linear-gradient(180deg,#2b6ef6,#00b0ff);
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(43,110,246,0.12);
    transform: rotate(-8deg);
    letter-spacing: 1px;
}

/* subtle diagonal rule behind VS (decorative) */
.hana-vs-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    bottom: -1px;
    pointer-events: none;
    border-radius: 14px;
    /* subtle inner glow to lift the card from page */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    z-index: 0;
}

/* hover micro-interactions */
.hana-vs-col .hana-features li:hover {
    background: rgba(43,110,246,0.03);
    transform: translateY(-3px);
    transition: transform .12s ease, background .12s ease;
}

/* alternate subtle background for left rows to improve reading rhythm */
.hana-features li:nth-child(odd) {
    background: rgba(11,66,105,0.01);
}

/* spacing tweak so VS bubble overlaps a little for emphasis */
@media (min-width: 992px) {
    .vs-bubble {
        transform: rotate(-6deg) translateY(-6px);
    }
}

/* responsive: stack columns vertically on narrow screens */
@media (max-width: 767px) {
    .hana-vs-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hana-vs-center {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        min-height: auto;
    }

    .vs-line {
        display: none;
        height: auto;
        width: 36px;
        background: linear-gradient(90deg, rgba(11,66,105,0.06), rgba(11,66,105,0.02));
    }

    .vs-bubble {
        transform: none;
        padding: 8px 12px;
    }

    .hana-features li {
        gap: 10px;
    }

    .hana-features-right li {
        color: #0b66cc;
        font-weight: 700;
    }
}

/* small polish for very small screens */
@media (max-width: 420px) {
    .hana-col-badge {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hana-col-title {
        font-size: 15px;
    }

    .hana-features li {
        font-size: 14px;
    }
}


/* ================= CTA SECTION ================= */
.cta-section {
    padding: 0 20px;
    background: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8fbfd;
    border-radius: 6px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* CTA text */
.cta-text h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1d1b1b;
}

/* CTA button */
.cta-btn {
    background: #ff4d4f;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

    .cta-btn:hover {
        background: #e84446;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(255, 77, 79, 0.25);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .cta-text h3 {
        font-size: 22px;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE SAFETY NET (DO NOT CHANGE LOGIC)
========================================================= */

/* Prevent horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ---------------- OVERVIEW SECTION ---------------- */
@media (max-width: 992px) {
    .overview-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .overview-header h2 {
        font-size: 28px;
    }

    .overview-header p {
        font-size: 16px;
    }

    .overview-body {
        gap: 32px;
    }
}

@media (max-width: 575px) {
    .overview-header h2 {
        font-size: 24px;
    }

    .overview-header p {
        font-size: 15px;
    }

    .pill {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ---------------- SAP FEATURES ---------------- */
@media (max-width: 991px) {
    .sap-features-section h2 {
        font-size: 24px;
    }

    .feature-list {
        max-height: 220px;
    }
}

/* ---------------- BUSINESS BENEFITS ---------------- */
@media (max-width: 992px) {
    .benefit-card {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .benefits-title {
        font-size: 26px;
    }

    .benefits-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }
}





/* ---------------- MIGRATE SECTION ---------------- */
@media (max-width: 991px) {
    .migrate-title {
        font-size: 28px;
    }

    .migrate-lead {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .migrate-title {
        font-size: 24px;
    }

    .migrate-body p {
        font-size: 14px;
    }
}

/* ---------------- HANA VS COMPARISON ---------------- */
@media (max-width: 991px) {
    .hana-vs-card {
        margin-left: 0;
        padding: 12px;
    }

    .hana-underline::after {
        margin-left: 0;
        width: 60%;
    }
}

/* ---------------- CTA SECTION ---------------- */
@media (max-width: 575px) {
    .cta-container {
        padding: 24px 20px;
    }

    .cta-text h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .cta-btn {
        padding: 12px 26px;
        font-size: 13px;
    }
}


/* =========================================================
   FINAL EDGE-SPACING FIXES (ONLY RESPONSIVE SAFETY)
========================================================= */

/* ---------- GLOBAL CONTAINER EDGE SAFETY ---------- */
/*@media (max-width: 991px) {
    .container,
    .overview-container,
    .benefits-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 575px) {
    .container,
    .overview-container,
    .benefits-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}*/

/* ---------- SAP FEATURES: Talk to Consultant ---------- */
@media (max-width: 991px) {
    .sap-features-section .consult-btn {
        margin-right: 0;
        align-self: flex-start;
    }
}

@media (max-width: 575px) {
    .sap-features-section .consult-btn {
/*        width: 100%;*/
        text-align: center;
    }
}

/* ---------- BUSINESS BENEFITS: CARD EDGE FIX ---------- */
@media (max-width: 991px) {
    .benefits-grid {
        padding-right: 0;
    }

    .benefit-card {
        margin-right: 0px;
    }
}

/* ---------- TECHNICAL HIGHLIGHTS & INDUSTRIES ---------- */
@media (max-width: 991px) {
    .hana-highlights .highlight-card {
        margin-left: -22px;
    }
}

@media (max-width: 575px) {
    .hana-highlights .highlight-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

