* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* ================= BUSINESS AUTOMATION HERO SECTION ================= */
.ba-hero {
    position: relative;
    height: 90vh;
    background: url("./Assets/About-Us/Hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 82, 0.55);
}

.ba-hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.ba-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ba-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #e8f1ff;
}

.ba-hero-btn {
    padding: 14px 30px;
    background: #0b5ed7;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.ba-hero-btn:hover {
    background: #084298;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .ba-hero {
        height: 70vh;
    }

    .ba-hero-content h1 {
        font-size: 32px;
    }

    .ba-hero-content p {
        font-size: 16px;
    }
}


/* ================= SIMPLE BUSINESS AUTOMATION FLOW ================= */
.ba-flow-simple {
    width: 100%;
    padding: 80px 6%;
    background: #ffffff;
}

.ba-flow-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.ba-flow-left {
    flex: 1;
}

.ba-flow-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0657A3;
    margin-bottom: 20px;
}

.ba-flow-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.ba-flow-right {
    flex: 1;
    text-align: right;
}

.ba-flow-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 992px) {
    .ba-flow-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .ba-flow-right {
        text-align: center;
    }

    .ba-flow-right img {
        max-width: 450px;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .ba-flow-left h2 {
        font-size: 28px;
    }
}


/* ================= BUSINESS AUTOMATION FEATURES (CARDS) ================= */
.ba-features-cards {
    width: 100%;
    padding: 80px 6%;
    background: #f7f9fc;
}

.ba-features-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.ba-features-title {
    font-size: 36px;
    font-weight: 800;
    color: #0657A3;
    margin-bottom: 50px;
}

.ba-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ba-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.ba-card-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(6, 87, 163, 0.08);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.ba-card h3 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    color: #033c7d;
    margin-bottom: 12px;
}

.ba-card p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .ba-features-title {
        font-size: 28px;
    }

    .ba-card {
        padding: 25px 15px;
    }

    .ba-card-shape {
        width: 80px;
        height: 80px;
    }
}


/* ================= WHY BUSINESS AUTOMATION MATTERS ================= */
.ba-why-left {
    width: 100%;
    padding: 80px 6%;
}

.ba-why-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.ba-why-image {
    flex: 1;
    text-align: left;
}

.ba-why-image img {
    width: 100%;
    max-width: 500px;
}

.ba-why-content {
    flex: 1;
}

.ba-why-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0657A3;
    margin-bottom: 25px;
}

.ba-why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .ba-why-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .ba-why-image {
        text-align: center;
        margin-bottom: 30px;
    }

    .ba-why-image img {
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .ba-why-content h2 {
        font-size: 28px;
    }

    .ba-why-content p {
        font-size: 15px;
    }
}


/* ================= BUSINESS AUTOMATION SUITE FEATURES ================= */
.ba-automation-suite {
    width: 100%;
    padding: 80px 6%;
    background: #f4f9ff;
}

.ba-suite-wrapper {
    max-width: 1200px;
    margin: auto;
}

.ba-suite-title {
    font-size: 36px;
    font-weight: 800;
    color: #0657A3;
    text-align: center;
    margin-bottom: 50px;
}

.ba-suite-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
}

.ba-suite-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.feature-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: #0657A3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ba-suite-feature p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.ba-suite-feature::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(6, 87, 163, 0.05);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
    .ba-suite-features {
        grid-template-columns: 1fr;
    }

    .ba-suite-feature::before {
        top: 0;
        left: -5px;
    }
}

@media (max-width: 600px) {
    .ba-suite-title {
        font-size: 28px;
    }

    .ba-suite-feature p {
        font-size: 15px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
