﻿.aca-hero {
    padding: 100px 0;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
    position: relative;
    overflow: hidden;
}

    .aca-hero:before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        right: -150px;
        top: -150px;
        background: rgba(106,61,184,.08);
        border-radius: 50%;
    }

.product-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f2ebff;
    color: #6a3db8;
    font-weight: 600;
    margin-bottom: 20px;
}

.aca-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #222;
}

.aca-hero h3 {
    font-size: 28px;
    color: #2d8cff;
    margin: 20px 0;
}

.aca-hero p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
}

.hero-dashboard {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.btn-primary-aca {
    display: inline-block;
    padding: 15px 35px;
    background: #6a3db8;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
}

    .btn-primary-aca:hover {
        background: #5730a1;
        color: #fff;
        text-decoration: none;
    }

.btn-outline-aca {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #6a3db8;
    color: #6a3db8;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-outline-aca:hover {
        background: #6a3db8;
        color: #fff;
        text-decoration: none;
    }

.hero-features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

    .hero-features i {
        color: #2ecc71;
        margin-right: 8px;
    }

.aca-stats {
    padding: 70px 0;
    background: #fff;
}

.stat-card {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .3s;
}

    .stat-card:hover {
        transform: translateY(-10px);
    }

    .stat-card h2 {
        font-size: 42px;
        color: #6a3db8;
        font-weight: 700;
    }

    .stat-card p {
        margin: 0;
        color: #666;
    }

.aca-overview {
    padding: 100px 0;
    background: #f8fbff;
}

.small-title {
    color: #6a3db8;
    font-weight: 700;
    letter-spacing: 2px;
}

/*======================================
        ACA MODULES
======================================*/

.aca-modules {
    padding: 100px 0;
    background: #fff;
}

.aca-module {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    margin-bottom: 30px;
    transition: .35s;
    height: 100%;
    position: relative;
}

    .aca-module:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.15);
    }

    .aca-module:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 6px;
    }

.green:before {
    background: #3cb54a;
}

.blue:before {
    background: #007bff;
}

.orange:before {
    background: #f7a100;
}

.purple:before {
    background: #7c3aed;
}

.cyan:before {
    background: #00bcd4;
}

.teal:before {
    background: #14b8a6;
}

.yellow:before {
    background: #ffb300;
}

.darkblue:before {
    background: #2952cc;
}

.module-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f5f7fb;
    line-height: 75px;
    margin: 30px auto 20px;
    text-align: center;
}

    .module-icon i {
        font-size: 32px;
        color: #6a3db8;
    }

.aca-module h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.aca-module ul {
    list-style: none;
    padding: 0 30px 30px;
}

    .aca-module ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
        color: #555;
        position: relative;
        padding-left: 22px;
    }

        .aca-module ul li:last-child {
            border: none;
        }

        .aca-module ul li:before {
            content: "✓";
            color: #2ecc71;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

.aca-module .module-icon {
    transition: .35s;
}

.aca-module:hover .module-icon {
    background: #6a3db8;
}

    .aca-module:hover .module-icon i {
        color: #fff;
    }

/*======================================
        WHY ACA
======================================*/

.why-aca {
    padding: 100px 0;
    background: #f8fbff;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    margin-bottom: 30px;
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-10px);
    }

    .why-card i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        background: #6a3db8;
        color: #fff;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .why-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .why-card p {
        color: #666;
        line-height: 28px;
    }

/*======================================
        IMPLEMENTATION
======================================*/

.implementation {
    padding: 100px 0;
    background: #fff;
}

.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

    .timeline .step {
        width: 16%;
        text-align: center;
    }

        .timeline .step span {
            width: 70px;
            height: 70px;
            display: inline-block;
            line-height: 70px;
            border-radius: 50%;
            background: #6a3db8;
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

    .timeline h4 {
        font-size: 18px;
        font-weight: 600;
    }

/*======================================
        CTA
======================================*/

.aca-cta {
    padding: 80px 0;
    background: linear-gradient(135deg,#6a3db8,#2d8cff);
    color: #fff;
}

    .aca-cta h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .aca-cta p {
        font-size: 18px;
        opacity: .95;
    }

.aca-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #6a3db8;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

    .aca-btn:hover {
        background: #2ecc71;
        color: #fff;
        text-decoration: none;
    }

/*======================================
        Responsive
======================================*/

@media(max-width:991px) {

    .timeline {
        display: block;
    }

        .timeline .step {
            width: 100%;
            margin-bottom: 40px;
        }

    .aca-cta {
        text-align: center;
    }

        .aca-cta .text-right {
            text-align: center !important;
            margin-top: 30px;
        }
}

/* Equal Height Cards */

.why-aca .row {
    display: flex;
    flex-wrap: wrap;
}

.why-aca .col-md-4 {
    display: flex;
    margin-bottom: 30px;
}

.why-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .why-card i {
        flex-shrink: 0;
    }

    .why-card h3 {
        min-height: 56px; /* সব Title একই জায়গায় থাকবে */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .why-card p {
        flex: 1; /* Description নিচ পর্যন্ত Stretch হবে */
        line-height: 28px;
        color: #666;
    }

.breadcrumb-area {
    margin-bottom: 25px;
    font-size: 15px;
}

.aca-overview {
    padding: 110px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    background: #efe8ff;
    color: #6a3db8;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.aca-overview h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

    .aca-overview h2 span {
        color: #6a3db8;
        display: block;
    }

.overview-text {
    color: #666;
    line-height: 32px;
    font-size: 17px;
    margin-bottom: 35px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.feature-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 600;
    transition: .3s;
}

    .feature-item i {
        color: #2ecc71;
        margin-right: 10px;
    }

    .feature-item:hover {
        background: #6a3db8;
        color: #fff;
        border-color: #6a3db8;
        transform: translateY(-4px);
    }

        .feature-item:hover i {
            color: #fff;
        }

.overview-stats {
    display: flex;
    margin-top: 45px;
    gap: 45px;
}

    .overview-stats h3 {
        font-size: 38px;
        color: #6a3db8;
        margin-bottom: 5px;
    }

    .overview-stats span {
        color: #666;
    }

.overview-image-wrapper {
    position: relative;
    padding: 25px;
    border-radius: 25px;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.overview-image {
    border-radius: 15px;
}

.section-header span {
    display: inline-block;
    position: relative;
    padding: 10px 25px;
    background: #6a3db8;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .section-header span:before,
    .section-header span:after {
        content: "";
        position: absolute;
        top: 50%;
        width: 70px;
        height: 2px;
        background: #d8c7ff;
    }

    .section-header span:before {
        right: 100%;
        margin-right: 15px;
    }

    .section-header span:after {
        left: 100%;
        margin-left: 15px;
    }

.section-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
}

    .section-header h2 strong {
        color: #6a3db8;
    }

.why-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all .3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

    .why-card i {
        width: 75px;
        height: 75px;
        display: flex;
        margin: 25px auto 20px;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #ffffff;
        background: #0066ff;
        border-radius: 50%;
    }

    .why-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .why-card p {
        line-height: 1.7;
        color: #666;
    }