﻿
/* ================= PAGE BANNER (FINAL FIX) ================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__data {
    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 {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu, .nav__toggle-close {
    /*    margin-left: 180px;*/
    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: 99%;
    }

    .nav__toggle {
        margin-left: auto;
    }

    .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 {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .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;
    }


/* ================= TITLE ================= */

/* Banner wrapper */
.page-banner {
    position: relative;
    width: 100%;
    /*    height:100%;*/
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    /* Background image */
    .page-banner .banner-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay content */
    .page-banner .banner-overlay {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 24px;
        text-align: left;
        margin-right: 700px;
        margin-top: 180px;
    }


.animated-title {
    font-size: 52px; /* Desktop size */
    font-weight: 700;
    color: #ffffff;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    white-space: nowrap;
}

/* Words */
.word {
    opacity: 0;
    display: inline-block;
    transform-origin: center;
}

/* ================= ANIMATIONS (DESKTOP) ================= */

/* CONNECT */
.connect {
    animation: connectBlast 1.2s cubic-bezier(.25,.46,.45,.94) forwards;
}

@keyframes connectBlast {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(2) translateX(-120px);
    }

    60% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateX(0);
    }

    100% {
        opacity: 1;
    }
}

/* EDGE */
.edge {
    animation: edgeFlip 1.2s ease-out forwards;
    animation-delay: .3s;
}

@keyframes edgeFlip {
    0% {
        opacity: 0;
        transform: rotateY(90deg) translateX(120px);
    }

    60% {
        opacity: 1;
        transform: rotateY(0) translateX(0);
    }

    100% {
        opacity: 1;
    }
}

/* CRM */
.crm {
    animation: crmDrop 1s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: .5s;
}

@keyframes crmDrop {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
    }
}

/* CTA button */
.banner-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 28px;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .banner-btn:hover {
        background: #2563eb;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(37,99,235,0.35);
    }

/* ================= TABLET ================= */


@media (max-width: 991px) {
    .page-banner .banner-overlay {
        margin-right: 0 !important;
        margin-top: 0 !important;
        /* Proper alignment */
        text-align: left;
        max-width: 90%;
    }

    .page-banner {
        min-height: 420px;
    }

    .animated-title {
        font-size: 40px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

    .page-banner {
        min-height: 520px;
        padding: 40px 16px;
        justify-content: flex-start;
    }

        .page-banner .banner-overlay {
            margin: 0 !important;
            padding-top: 80px; /* space below navbar */
            text-align: left;
            width: 100%;
        }

    .animated-title {
        font-size: 26px;
        flex-direction: column; /* stack words */
        gap: 6px;
        white-space: normal;
    }

    /* Mobile-safe animation (no sideways overflow) */
    .connect,
    .edge,
    .crm {
        animation: fadeUp .8s ease forwards;
        animation-delay: 0s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 575px) {

    .page-banner {
        min-height: 480px;
    }

    .animated-title {
        font-size: 35px;
        flex-direction:row;
        margin-left:20px;
    }

    .banner-btn{
        padding:8px;
        text-align:center;
        height:40px;
        width:200px;
    }
}

@media (max-width:320px){
    .animated-title {
        font-size: 30px;
        flex-direction: row;
        margin-left: 15px;
    }
}





/* Section Base */
/* MAIN 2-COLUMN LAYOUT */
/* ================= HERO POLISH ================= */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    padding: 100px 8%;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* LEFT SVG */
.hero-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crm-svg {
    max-width: 440px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

/* RIGHT CONTENT */
.hero-section {
    max-width: 620px;
}

.eyebrow {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #1a73ff;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f2b4c;
    margin-bottom: 22px;
}

/* readable paragraph width */
.hero-description-wrap {
    max-width: 560px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: #4b5c6b;
}

/* Social icons polish */
.social-share {
    margin-top: 28px;
    gap: 14px;
}

.share-btn img {
    width: 28px;
    opacity: 0.85;
}

.share-btn:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 6%;
    }

    .hero-section {
        max-width: 100%;
    }

    .hero-description-wrap {
        margin: auto;
    }
}


.crm-svg {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}


.imac-dashboard {
    max-width: 920px;
    width: 100%;
    height: auto;
    display: block;
    margin: 12px auto;
}

/* If you embed inside a light background area, center it nicely */
body {
    background: #ffffff;
}

.imac-dashboard {
    width: 100%;
    max-width: 460px; /* Reduce to fit your hero area */
    height: auto;
    display: block;
}

.features-section {
    padding: 70px 0;
    background: #ffffff;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.features-title {
    color: black;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e6ecf6;
    transition: .3s ease;
}

    .feature-card:hover {
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive for mobile & tablets */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.title{
    font-size:40px;
    color:black;

}

.top-action {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.cta-btn {
    background: #1f6fff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

.modules-layout {
    display: flex;
    gap: 50px;
}

/* LEFT */
.modules-list {
    width: 40%;
    list-style: none;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.module-item {
    padding: 14px 16px;
    border-bottom: 1px dashed #e5e7eb;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

    .module-item:last-child {
        border-bottom: none;
    }

    .module-item::after {
        position: absolute;
        right: 16px;
    }

    .module-item.active {
        background: #f5f8ff;
    }

        .module-item.active::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: #1f6fff;
        }


/* RIGHT */
.modules-content {
    width: 65%;
}

.content-panel {
    display: none;
}

    .content-panel.visible {
        display: block;
    }

    .content-panel ul {
        list-style: none;
        margin-top: 12px;
    }

        .content-panel ul li {
            margin-bottom: 8px;
        }

    .content-panel ul {
        list-style: none;
        padding: 0;
    }

        .content-panel ul li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 10px;
            color: #334155;
            line-height: 1.5;
        }


            .content-panel ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 0;
                color: #22c55e;
                font-weight: 700;
            }

@media (max-width: 768px) {

    .modules-layout {
        flex-direction: column;
    }

    .modules-list,
    .modules-content {
        width: 100%;
    }

    .modules-content {
        display: none;
    }

    .mobile-content {
        display: none;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px dashed #e5e7eb;
        font-weight: 400;
    }

    .module-item.active .mobile-content {
        display: block;
    }

    .mobile-content h3 {
        display: none;
    }
}


/* Section */
.industry-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.industry-title {
    font-size: 35px;
    font-weight: 700;
    color: black;
    margin-bottom: 60px;
}

/* Grid */
.industry-grid-4 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Box */
.industry-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

    .industry-box:hover {
        transform: translateY(-6px);
    }

/* Icon */
.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f2f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #1a73ff;
}

/* Heading */
.industry-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

/* Hidden list */
.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.4s ease;
}

/* Show on hover */
.industry-box:hover .industry-list {
    opacity: 1;
    max-height: 300px;
}

/* List items */
.industry-list li {
    font-size: 15px;
    color: #5b6b7c;
    margin: 6px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .industry-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-grid-4 {
        grid-template-columns: 1fr;
    }
}


/* Section Background */
.crm-size-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f7fbff, #eef5ff);
    display: flex;
    justify-content: center;
}

.crm-size-container {
    width: 90%;
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

/* Left Heading Area */
.crm-size-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.crm-size-heading p {
    font-size: 18px;
    color: #4b5c6b;
    margin-top: 5px;
}

/* Cards Layout */
.crm-size-cards {
    display: flex;
    gap: 30px;
}

/* Individual Card */
.crm-card {
    width: 330px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    padding: 28px;
    position: relative;
    transition: 0.3s ease;
}

    /* Hover Effect */
    .crm-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    }

/* Top Colored Strip */
.crm-card-top {
    height: 6px;
    width: 60%;
    background: #1d9aff;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
}

    .crm-card-top.crm-red {
        background: #ff5c5c;
    }

/* Text Styles */
.crm-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 14px;
}

.crm-card p {
    font-size: 16px;
    color: #4b5c6b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Link */
.crm-card-link {
    font-size: 16px;
    font-weight: 600;
    color: #1a73ff;
    text-decoration: none;
}

    .crm-card-link:hover {
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 1020px) {
    .crm-size-container {
        flex-direction: column;
        text-align: left;
    }

    .crm-size-cards {
        flex-direction: column;
        align-items: flex-start;
    }

    .crm-card {
        width: 100%;
    }
}

.crm-benefits-section {
    padding: 80px 0;
    text-align: center;
}

.benefits-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 10px;
}

.benefits-subtitle {
    font-size: 18px;
    color: #4b5c6b;
    margin-bottom: 50px;
}

.benefits-grid {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Benefit Card */
.benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: 0.3s ease;
    cursor: default;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.1);
    }

/* Icons */
.benefit-icon {
    margin-bottom: 18px;
}

.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.5;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*  ===================  sap features ===================== */
/* =================== SAP FEATURES ===================== */

.sap-features-section {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

    /* ---------------- HEADER ---------------- */

    .sap-features-section .features-header {
        text-align: left !important;
        background: #ffffff;
        color: #1e2a36;
    }

    .sap-features-section h2 {
        font-weight: 700;
        font-size: 28px;
        color: #111827;
    }

    .sap-features-section .lead {
        font-size: 1.05rem;
        color: #1f2937;
    }

    /* ---------------- DESKTOP LAYOUT (KEEP) ---------------- */

    .sap-features-section .feature-grid {
        display: flex;
        align-items: stretch;
        gap: 32px;
    }

    .sap-features-section .col-md-4,
    .sap-features-section .col-md-8 {
        display: flex;
    }

/* ---------------- LEFT FEATURE LIST ---------------- */

.feature-list {
    max-height: 640px;
    overflow-y: auto;
    border: 1px solid #e6e9ec;
    border-radius: 10px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(16, 24, 40, 0.04);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .feature-list::-webkit-scrollbar {
        display: none;
    }

    .feature-list .feature-row {
        cursor: pointer;
        user-select: none;
        padding: 14px 18px;
        background: #fff;
        color: #1f2937;
        border-bottom: 1px dashed #eceff3;
        transition: background 0.2s ease, transform 0.15s ease;
        font-size: 15px;
    }

        .feature-list .feature-row:hover {
            background: #fbfbfd;
            transform: translateY(-1px);
        }

        .feature-list .feature-row.active {
            background: linear-gradient(90deg, #eef4ff, #ffffff);
            border-left: 4px solid #2b6ef6;
            font-weight: 700;
        }

/* ---------------- RIGHT CONTENT ---------------- */

.feature-content-area {
    background: #f9fbff;
    border: 1px solid #e6ecf6;
    border-radius: 14px;
    padding: 30px 34px;
    min-height: 440px; /* prevents empty look */
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    position: relative;
}

/* Title */
.feature-panel h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 10px;
}

/* Description */
.feature-panel p {
    font-size: 16px;
    color: #5b6b7c;
    margin-bottom: 18px;
    max-width: 90%;
}

/* Bullets */
.feature-panel ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .feature-panel ul li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #344054;
        line-height: 1.55;
    }

        .feature-panel ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 2px;
            color: #1a73ff;
            font-size: 14px;
        }

/* Panel visibility */
.feature-panel {
    display: none;
    animation: fadeSlide 0.35s ease;
}

    .feature-panel.visible {
        display: block;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer text */
.feature-content-area::after {
    content: "Explore each feature to see how ConnectEdge CRM simplifies your sales operations.";
    display: block;
    margin-top: 30px;
    font-size: 14px;
    color: #7a8899;
    border-top: 1px dashed #dbe3ef;
    padding-top: 16px;
}

/* CTA */
.cta-button {
    background: #1a73ff;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
}

    .cta-button:hover {
        background: #155fd1;
        transform: translateY(-1px);
    }

/* ---------------- TABLET ---------------- */

@media (max-width: 991px) {
    .feature-content-area {
        padding: 22px;
        margin-top: 16px;
        min-height: auto;
    }

    .feature-list {
        max-height: 240px;
    }

    .feature-content-area::after {
        display: none;
    }
}

/* ---------------- MOBILE FIX (CRITICAL) ---------------- */

@media (max-width: 767px) {

    /* REMOVE DESKTOP FLEX OVERRIDES */
    .sap-features-section .feature-grid {
        display: block;
    }

    .sap-features-section .col-md-4,
    .sap-features-section .col-md-8 {
        display: block;
    }

    /* Center header */
    .sap-features-section .features-header,
    .sap-features-section h2,
    .sap-features-section .lead {
        text-align: center !important;
    }

    /* CTA full width */
    .cta-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
    }

    /* Stack layout */
    .feature-list {
        max-height: none;
        margin-bottom: 16px;
    }

    .feature-row {
        font-size: 14px;
    }

    .feature-content-area {
        padding: 20px;
    }

    .feature-panel h3 {
        font-size: 20px;
    }

    .feature-panel p,
    .feature-panel ul li {
        font-size: 14px;
    }
}

/* ---------------- SMALL MOBILE ---------------- */

@media (max-width: 575px) {
    .sap-features-section h2 {
        font-size: 22px;
    }
}


/*.sap-features-section {
    background: #ffffff;
}

 Header 
.sap-features-section .features-header {
    text-align: left !important;
    background: #ffffff;
    color: #1e2a36;
}

.sap-features-section h2 {
    font-weight: 700;
    font-size: 28px;
    color: #111827;
}

.sap-features-section .lead {
    font-size: 1.05rem;
    color: #1f2937;
}


    .sap-features-section .feature-grid {
        display: flex !important;
        align-items: stretch;  
        gap: 32px;
    }

    .sap-features-section .col-md-4 {
        display: flex;
    }

     Right column 
    .sap-features-section .col-md-8 {
        display: flex;
    }


.feature-list {
    max-height: 640px;
    overflow-y: auto;
    border: 1px solid #e6e9ec;
    border-radius: 10px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(16, 24, 40, 0.04);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feature-list::-webkit-scrollbar {
    display: none;
}

.feature-list .feature-row {
    cursor: pointer;
    user-select: none;
    padding: 14px 18px;
    background: #fff;
    color: #1f2937;
    border-bottom: 1px dashed #eceff3;
    transition: background 0.2s ease, transform 0.15s ease;
    font-size: 15px;
}

.feature-list .feature-row:hover {
    background: #fbfbfd;
    transform: translateY(-1px);
}

.feature-list .feature-row.active {
    background: linear-gradient(90deg, #eef4ff, #ffffff);
    border-left: 4px solid #2b6ef6;
    font-weight: 700;
}

.feature-content-area {
    background: #f9fbff;
    border: 1px solid #e6ecf6;
    border-radius: 14px;
    padding: 30px 34px;
    min-height: 440px;  prevents empty look 
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    position: relative;
}*/

/* Title */
/*.feature-panel h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f2b4c;
    margin-bottom: 10px;
}*/

/* Description */
/*.feature-panel p {
    font-size: 16px;
    color: #5b6b7c;
    margin-bottom: 18px;
    max-width: 90%;
}

.feature-panel ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-panel ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #344054;
    line-height: 1.55;
}

.feature-panel ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #1a73ff;
    font-size: 14px;
}


.feature-panel {
    display: none;
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-content-area::after {
    content: "Explore each feature to see how ConnectEdge CRM simplifies your sales operations.";
    display: block;
    margin-top: 30px;
    font-size: 14px;
    color: #7a8899;
    border-top: 1px dashed #dbe3ef;
    padding-top: 16px;
}


.cta-button {
    background: #1a73ff;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
}

.cta-button:hover {
    background: #155fd1;
    transform: translateY(-1px);
}


@media (max-width: 991px) {
    .feature-content-area {
        padding: 22px;
        margin-top: 16px;
        min-height: auto;
    }

    .feature-list {
        max-height: 240px;
    }

    .feature-content-area::after {
        display: none;
    }
}*/




/*/* ==========  DEPLOPYMENT SECTION ================ */
.deployment-section {
    padding: 80px 20px;
    background: #f8faff;
    font-family: 'Poppins', sans-serif;
    color: #222;
    text-align: center;
    position: relative;
}



/* Section Title and Subtitle */
.deployment-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .deployment-section .section-subtitle {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 50px;
    }

/* Deployment Wrapper - two boxes side by side */
.deployment-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* Deployment Box */
.deployment-box {
    background: #ffffff;
    flex: 1 1 300px;
    max-width: 500px;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

/* Icon Circle */
.deployment-icon {
    width: 60px;
    height: 60px;
    background: #00aaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Box Hover Effect */
.deployment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

    .deployment-box:hover .deployment-icon {
        background: #007bbf;
        transform: scale(1.2);
    }

/* Box Heading */
.deployment-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

/* Box Paragraph */
.deployment-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background: #007bbf;
    }

/* Secondary Button */
.cta-button.secondary {
        background: #f0f0f0;
        color: #00aaff;
    }

        .cta-button.secondary:hover {
            background: #e0e0e0;
        }

/* ==================== RESPONSIVE ==================== */

/* Max-width: 1152px */
@media screen and (max-width: 1152px) {
    .deployment-section .section-title {
        font-size: 2.2rem;
    }

    .deployment-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .deployment-box h3 {
        font-size: 1.4rem;
    }

    .deployment-box p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

/* Max-width: 1118px */
@media screen and (max-width: 1118px) {
    .deployment-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .deployment-box {
        max-width: 100%;
        padding: 25px 20px;
    }
}

/* Max-width: 300px */
@media screen and (max-width: 300px) {
    .deployment-section {
        padding: 40px 10px;
    }

        .deployment-section .section-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .deployment-section .section-subtitle {
            font-size: 0.85rem;
            margin-bottom: 25px;
        }

    .deployment-box h3 {
        font-size: 1.2rem;
    }

    .deployment-box p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .deployment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
