.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #2563eb15;
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #10b98112;
    border-radius: 50%;
    left: -100px;
    bottom: -120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    font-weight: 600;
    color: #2563eb;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
    color: #0f172a;
}

.hero-title span {
    color: #2563eb;
}

.hero-text {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-buttons .btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
}

.hero-stats {
    margin-top: 10px;
}

.hero-stats h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.hero-stats p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.dashboard-wrapper {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

.dashboard-image {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
}

.floating-card small {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.floating-card h5 {
    margin: 2px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.revenue {
    top: 30px;
    left: -40px;
}

.inventory {
    bottom: 30px;
    right: -40px;
}

@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




@media (max-width: 991px) {

    .hero-title {
        font-size: 40px;
    }

    .dashboard-wrapper {
        margin-top: 35px;
        max-width: 500px;
        margin-inline: auto;
    }

    .floating-card {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .floating-card i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .floating-card h5 {
        font-size: 15px;
        margin: 0;
    }

    .floating-card small {
        font-size: 12px;
    }

    .revenue {
        top: 15px;
        left: 10px;
    }

    .inventory {
        right: 10px;
        bottom: 15px;
    }
}

.modules-section {
    background: #fff;
    padding: 70px 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    margin-top: 15px;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.section-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

.module-card {
    height: 100%;
    padding: 30px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: .3s;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37,99,235,.12);
}

.module-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
}

.module-card h4 {
    margin: 18px 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.module-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.accounting {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
}

.inventory {
    background: linear-gradient(135deg,#10b981,#34d399);
}

.gst {
    background: linear-gradient(135deg,#f59e0b,#fbbf24);
}

.banking {
    background: linear-gradient(135deg,#7c3aed,#8b5cf6);
}

.payroll {
    background: linear-gradient(135deg,#ef4444,#fb7185);
}

.report {
    background: linear-gradient(135deg,#0ea5e9,#38bdf8);
}

.security {
    background: linear-gradient(135deg,#334155,#475569);
}

.backup {
    background: linear-gradient(135deg,#14b8a6,#2dd4bf);
}

.dashboard-section {
    padding: 80px 0;
    background: #f8fbff;
}

.dashboard-preview {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

.dashboard-preview img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.dashboard-card {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    animation: float 5s ease-in-out infinite;
}

.dashboard-card small {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #64748b;
}

.dashboard-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.revenue-card {
    top: 25px;
    left: -35px;
}

.voucher-card {
    top: 140px;
    right: -30px;
}

.inventory-card {
    bottom: 25px;
    left: 25px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    color: #22c55e;
    font-size: 18px;
}

@media (max-width: 992px) {
    .dashboard-section {
        padding: 70px 0;
    }

    .dashboard-preview {
        margin-top: 40px;
        max-width: 500px;
        margin-inline: auto;
    }

    .dashboard-card {
        padding: 10px 14px;
        border-radius: 12px;
    }

    .dashboard-card small {
        font-size: 11px;
    }

    .dashboard-card h4 {
        font-size: 15px;
        margin: 0;
    }

    .revenue-card {
        top: 12px;
        left: 10px;
    }

    .voucher-card {
        top: 100px;
        right: 10px;
    }

    .inventory-card {
        bottom: 12px;
        left: 12px;
    }

}

@media (max-width: 576px) {

    .dashboard-preview {
        max-width: 340px;
    }

    .dashboard-card {
        transform: scale(.85);
    }

    .revenue-card {
        top: 8px;
        left: -5px;
    }

    .voucher-card {
        top: 70px;
        right: -5px;
    }

    .inventory-card {
        bottom: 5px;
        left: -5px;
    }
}



.workflow-section{
    background:#ffffff;
    padding:100px 0;
}

.workflow{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.workflow-item {
    width: 210px;
    padding: 28px 20px;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.workflow-item:hover {
    transform: translateY(-8px);
}

.workflow-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.workflow-item h5 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.workflow-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.workflow-arrow {
    font-size: 30px;
    color: #94a3b8;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .workflow {
        justify-content: center;
        gap: 25px;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-item {
        width: calc(50% - 20px);
        max-width: 300px;
    }

}

@media (max-width: 767.98px) {

    .workflow {
        flex-direction: column;
        gap: 20px;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-item {
        width: 100%;
        max-width: 320px;
    }

}

.why-section {
    padding: 80px 0;
    background: #f8fbff;
}

.why-card {
    height: 100%;
    padding: 28px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37,99,235,.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: #fff;
    font-size: 28px;
}

.why-card h4 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
}

.stats-section .section-tag {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.stats-section .section-title {
    color: #fff;
}

.stats-section .section-subtitle {
    color: rgba(255,255,255,.8);
}

.stats-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    transition: .3s;
}

.stats-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.15);
}

.stats-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 28px;
}

.stats-card h2 {
    margin-bottom: 8px;
    font-size: 42px;
    font-weight: 700;
}

.stats-card p {
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,.85);
}

.testimonial-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37,99,235,.12);
}

.stars {
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-text {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.testimonial-user span {
    font-size: 14px;
    color: #64748b;
}

.faq-section {
    padding: 80px 0;
    background: #f8fbff;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.accordion-button {
    padding: 18px 22px;
    background: #fff;
    font-size: 17px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #2563eb;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 22px;
    color: #64748b;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-wrapper {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: 24px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    box-shadow: 0 20px 45px rgba(37,99,235,.22);
}

.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -120px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.cta-wrapper::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.cta-tag {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    font-size: 14px;
    font-weight: 600;
}

.cta-wrapper h2 {
    margin-bottom: 16px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-wrapper p {
    margin: 0;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
}

.cta-wrapper .btn {
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
}

.cta-wrapper .btn-light {
    color: #2563eb;
}

.cta-wrapper .btn-outline-light:hover {
    background: #fff;
    color: #2563eb;
}

@media (max-width: 992px) {

    .cta-wrapper {
        padding: 35px 25px;
        text-align: center;
    }

    .cta-wrapper h2 {
        font-size: 30px;
    }

    .cta-wrapper p {
        margin: 0 auto 25px;
    }

    .cta-wrapper .btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }

}