/* ==================================
            ROOT COLORS
================================== */

:root {
    --primary: #4f46e5;
    --secondary: #38bdf8;
    --dark: #071028;
    --light: #ffffff;
    --text: #5f6b7a;
    --gradient: linear-gradient(135deg,#4f46e5,#38bdf8);
}

/* ==================================
            GLOBAL
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fbff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

section {
    padding: 90px 8%;
}

/* ==================================
            HEADER
================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.navbar {
    height: 80px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}


    .nav-links {
    display: flex;
    gap: 35px;
}

    .nav-links a {
        color: var(--dark);
        font-weight: 500;
        transition: .3s;
    }

        .nav-links a:hover {
            color: var(--primary);
        }
.nav-links {
    display: flex;
    gap: 35px;
    margin-left: auto;
    margin-right: 40px;
    align-items: center;
}

.btn1 {
    display: inline-block;
    padding: 15px 38px;
    background: linear-gradient(135deg, #5b5ff5, #4f46e5);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(91,95,245,0.3);
}

    .btn1:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(91,95,245,0.4);
        background: linear-gradient(135deg, #4f46e5, #4338ca);
    }






.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0f172a;
}


@media (max-width:768px) {

    .navbar {
        width: 95%;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo-img {
        height: 40px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #0f172a;
        cursor: pointer;
        z-index: 1001;
    }

    .btn1 {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            padding: 15px;
            display: block;
        }
}

/* ==================================
            HERO SECTION
================================== */

.hero {
    min-height: 100vh;
    background: #f2f6fb;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.hero-card {
    background: #fff;
    border-radius: 35px;
    padding: 30px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: 95%;
    max-width: 1450px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    animation: fadeUp 1s ease;
}



.hero-left p {
    animation: fadeUp 1.2s ease;
}
.primary-btn {
    animation: pulse 2s infinite;
}



.hero-left p {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 30px;
}

.primary-btn {
    background: #5b5ff5;
    color: white;
    padding: 15px 35px;
    border-radius: 14px;
    text-decoration: none;
    display: inline-block;
}

.hero-right img {
    width: 600px;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}
.hero-stats div {
    animation: float 5s ease-in-out infinite;
}


/* ==================================
          SECTION TITLE
================================== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text);
    }

/* ==================================
            FEATURES
================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 20px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

/* ==================================
             STATS
================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    background: var(--gradient);
    padding: 50px;
    border-radius: 30px;
    color: white;
}

.stat-box {
    text-align: center;
}

    .stat-box h2 {
        font-size: 45px;
        margin-bottom: 10px;
    }





/* =========================
   COMMON SECTION STYLING
========================= */

.section {
    padding: 90px 8%;
}

.section-container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 40px;
        font-weight: 800;
        color: #0f172a;
    }

    .section-title p {
        color: #64748b;
        margin-top: 10px;
    }

/* =========================
   FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .feature-card:hover {
        transform: translateY(-8px);
    }

    .feature-card h3 {
        margin-bottom: 10px;
        color: #4f46e5;
    }

/* =========================
   MODULES
========================= */

/* ================= HERO SECTION ================= */

.modules-hero-content {
    background: linear-gradient(135deg,#4f46e5,#38bdf8);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

    .modules-hero-content h1 {
        font-size: 60px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .modules-hero-content p {
        max-width: 900px;
        margin: auto;
        font-size: 20px;
        line-height: 1.8;
    }

.modules-hero-badges {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .modules-hero-badges span {
        font-size: 17px;
        font-weight: 600;
    }


/* ================= MODULE SECTION ================= */

.modules-section {
    background: #f8fafc;
    padding: 80px 0;
}

.modules-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}


/* ================= MODULE CARD ================= */

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-card ul li {
        padding: 8px 0;
    }

        .module-card ul li::before {
            content: none !important;
        }


/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .modules-hero-content h1 {
        font-size: 50px;
    }

    .modules-hero-content p {
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .modules-hero-content {
        padding: 80px 20px;
    }

        .modules-hero-content h1 {
            font-size: 40px;
        }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding: 25px;
    }
}

@media(max-width:576px) {

    .modules-hero-content h1 {
        font-size: 32px;
    }

    .modules-hero-content p {
        font-size: 16px;
    }

    .module-card h3 {
        font-size: 22px;
    }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ?? 4 IN ONE ROW */
    gap: 25px;
}

/* CARD DESIGN */
.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(79,70,229,0.15);
    }

    /* TEXT */
    .testimonial-card p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .testimonial-card h4 {
        font-size: 14px;
        color: #0f172a;
    }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   CTA SECTION
========================= */

.cta-section {
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* BUTTON (already in your CSS but safe reuse) */
.primary-btn {
    display: inline-block;
    background: white;
    color: #4f46e5;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .primary-btn:hover {
        transform: translateY(-3px);
        background: #f1f5f9;
    }










/* ==================================
            MODULES
================================== */

/* =========================
   SECTION WRAPPER
========================= */
.modules-section {
    padding: 90px 8%;
    background: #f8fbff;
}

/* =========================
   GRID (4 COLUMN)
========================= */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =========================
   MODULE CARD
========================= */
/*.modules-hero {
    padding: 60px 8% 35px;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    color: white;
    position: relative;
    overflow: hidden;
}
    */
.modules-hero {
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    color: white;
    text-align: center;
    padding: 30px 8% 30px;
    position: relative;
    overflow: hidden;
}

    .modules-hero h1 {
        font-size: 55px;
        margin-bottom: 10px;
    }

    .modules-hero p {
        margin-bottom: 20px;
        font-size: 18px;
    }

.module-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    /* hover effect */
    .module-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(79,70,229,0.18);
    }

    /* top gradient line */
    .module-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(135deg, #4f46e5, #38bdf8);
    }

    /* =========================
   TITLE
========================= */
    .module-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* ICON */
    .module-card i {
        color: #4f46e5;
        font-size: 18px;
    }

    /* =========================
   LIST
========================= */
    .module-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .module-card ul li {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 6px;
            transition: 0.3s;
            position: relative;
            padding-left: 14px;
        }

            /* bullet style */
            .module-card ul li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: #38bdf8;
            }

    /* hover text */
    .module-card:hover ul li {
        color: #1e293b;
    }

/* =========================
   RESPONSIVE
========================= */

/* laptop */
@media (max-width: 1100px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* tablet */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .modules-section {
        padding: 60px 6%;
    }
}

/* mobile */
@media (max-width: 480px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
       FEATURES PAGE
========================= */

.featurepage-hero {
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
}

    .featurepage-hero h1 {
        font-size: 55px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .featurepage-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 18px;
    }

.featurepage-section {
    padding: 70px 8%;
}

.featurepage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.featurepage-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: .3s;
}

    .featurepage-card:hover {
        transform: translateY(-10px);
    }

.featurepage-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}















/* =========================
        PRICING PAGE
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    padding: 80px 8%;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: .3s;
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card h2 {
        color: var(--primary);
        font-size: 42px;
        margin: 20px 0;
    }

    .pricing-card ul {
        list-style: none;
        margin-top: 25px;
    }

    .pricing-card li {
        padding: 14px;
        border-bottom: 1px solid #eee;
    }

.popular {
    border: 3px solid var(--primary);
}
















/* =========================
       INDUSTRIES PAGE
========================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    padding: 80px 8%;
}

.industry-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

    .industry-card:hover {
        transform: translateY(-10px);
    }

    .industry-card i {
        font-size: 45px;
        color: var(--primary);
        margin-bottom: 20px;
    }














/* =========================
          ABOUT PAGE
========================= */

.about-section {
    padding: 80px 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

    .about-box h3 {
        color: var(--primary);
        margin-bottom: 20px;
    }






/* =========================
        MODULE PAGES
========================= */

.dispatch-hero {
    background: linear-gradient(135deg,#4f46e5,#38bdf8);
    padding: 140px 20px 90px;
    text-align: center;
    color: white;
}

    .dispatch-hero h1 {
        font-size: 55px;
        margin-bottom: 20px;
    }

    .dispatch-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 18px;
    }

.dispatch-content {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.dispatch-intro-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.dispatch-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.dispatch-box {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

    .dispatch-box:hover {
        transform: translateY(-10px);
    }

    .dispatch-box h3 {
        color: var(--primary);
        margin-bottom: 15px;
    }






/* =========================
       CONTACT / DEMO
========================= */

.contact-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .contact-card i {
        font-size: 25px;
        color: #2563eb;
    }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-top: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 15px;
    }

.contact-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.contact-cta {
    width: 90%;
    max-width: 1100px;
    margin: 70px auto;
    padding: 60px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

@media(max-width:768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* =========================
        RESPONSIVE
========================= */
@media(max-width:992px) {
    .hero-content, .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1,
    .featurepage-hero h1,
    .dispatch-hero h1 {
        font-size: 38px;
    }
}

@media(max-width:768px) {

    .nav-links {
        display: none;
    }

    .featurepage-grid,
    .industry-grid,
    .pricing-grid,
    .dispatch-boxes {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 60px 6%;
    }
}











.simple-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 8% 30px;
}

/* GRID */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* HEADINGS */
.footer-col h3 {
    color: #38bdf8;
    margin-bottom: 15px;
    font-size: 18px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

    .footer-col a:hover {
        color: #38bdf8;
        transform: translateX(5px);
    }

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col a:hover {
        transform: none;
    }
}








.analytics-hero {
    height: 60vh;
    background: linear-gradient(135deg,#4338ca,#06b6d4);
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

    .hero-overlay h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .hero-overlay p {
        max-width: 750px;
        font-size: 18px;
        line-height: 1.8;
    }

.analytics-content {
    padding: 80px 0;
    background: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .section-heading h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .section-heading p {
        color: #64748b;
        max-width: 800px;
        margin: auto;
        line-height: 1.8;
    }

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.analytics-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .analytics-card:hover {
        transform: translateY(-10px);
    }

    .analytics-card h3 {
        color: #4338ca;
        margin-bottom: 15px;
    }

    .analytics-card p {
        color: #64748b;
        line-height: 1.7;
    }

.dashboard-preview {
    margin-top: 80px;
}

    .dashboard-preview h2 {
        text-align: center;
        margin-bottom: 40px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .stat-box h3 {
        margin-bottom: 15px;
    }

    .stat-box span {
        font-size: 40px;
        font-weight: 700;
        color: #06b6d4;
    }

.benefits {
    margin-top: 80px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .benefits h2 {
        margin-bottom: 20px;
    }

    .benefits ul {
        list-style: none;
        padding: 0;
    }

    .benefits li {
        padding: 12px 0;
        font-size: 18px;
    }






/* HERO SECTION */

.ecommerce-hero {
    height: 65vh;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    position: relative;
    overflow: hidden;
}

.module-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

    .module-overlay h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .module-overlay p {
        max-width: 800px;
        font-size: 18px;
        line-height: 1.8;
    }


/* MAIN SECTION */

.module-content {
    padding: 90px 0;
    background: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}


/* INTRO */

.module-intro {
    text-align: center;
    margin-bottom: 70px;
}

    .module-intro h2 {
        font-size: 42px;
        color: #0f172a;
        margin-bottom: 20px;
    }

    .module-intro p {
        max-width: 850px;
        margin: auto;
        color: #64748b;
        line-height: 1.9;
        font-size: 17px;
    }


/* FEATURE GRID */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}


/* FEATURE CARD */

.feature-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s ease;
    border-top: 4px solid #4f46e5;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(79,70,229,.18);
    }

    .feature-card h3 {
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #64748b;
        line-height: 1.8;
    }


/* BENEFITS */

.benefits-section {
    margin-top: 90px;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .benefits-section h2 {
        text-align: center;
        margin-bottom: 35px;
        color: #0f172a;
        font-size: 38px;
    }

    .benefits-section ul {
        list-style: none;
        padding: 0;
    }

    .benefits-section li {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
        color: #475569;
        font-size: 18px;
    }

        .benefits-section li:last-child {
            border-bottom: none;
        }


/* CTA SECTION */

.ecommerce-cta {
    margin-top: 80px;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    padding: 70px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
}

    .ecommerce-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .ecommerce-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

.ecommerce-btn {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #4f46e5;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

    .ecommerce-btn:hover {
        transform: translateY(-3px);
    }


/* RESPONSIVE */

@media(max-width:992px) {

    .module-overlay h1 {
        font-size: 48px;
    }

    .module-intro h2 {
        font-size: 34px;
    }
}

@media(max-width:768px) {

    .ecommerce-hero {
        height: 55vh;
    }

    .module-overlay h1 {
        font-size: 36px;
    }

    .module-overlay p {
        font-size: 16px;
    }

    .benefits-section {
        padding: 30px;
    }

    .ecommerce-cta h2 {
        font-size: 30px;
    }
}

@media(max-width:576px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .module-overlay h1 {
        font-size: 30px;
    }

    .module-intro h2 {
        font-size: 28px;
    }
}








.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-table {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .comparison-table th {
        background: linear-gradient(135deg,#4f46e5,#38bdf8);
        color: white;
        padding: 18px;
        text-align: center;
        font-size: 18px;
    }

    .comparison-table td {
        padding: 16px;
        border-bottom: 1px solid #e2e8f0;
        text-align: center;
        font-size: 16px;
    }

        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: #0f172a;
        }

    .comparison-table tr:hover {
        background: #f8fafc;
    }

.check {
    color: #16a34a;
    font-size: 22px;
    font-weight: bold;
}

.cross {
    color: #dc2626;
    font-size: 22px;
    font-weight: bold;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */

@media(max-width:768px) {

    .comparison-table table {
        min-width: 700px;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 12px;
        font-size: 14px;
    }

    .check,
    .cross {
        font-size: 18px;
    }
}











/* =========================
FINANCIAL ACCOUNTING PAGE
========================= */

/* =========================
FINANCIAL ACCOUNTING PAGE
========================= */

.finance-container {
    width: 90%;
    max-width: 1300px;
    margin: 120px auto 80px;
}

/* Overview Box */

.finance-intro-box {
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(79,70,229,0.15);
}

    .finance-intro-box h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .finance-intro-box p {
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

/* Section Heading */

.section-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 700;
}

/* Grid */

.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
    margin-bottom: 70px;
}

/* Cards */

.finance-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #4f46e5;
}

    .finance-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(79,70,229,0.15);
    }

    .finance-card h3 {
        color: #4f46e5;
        margin-bottom: 12px;
        font-size: 22px;
    }

    .finance-card p {
        color: #64748b;
        line-height: 1.8;
        font-size: 15px;
    }

/* Responsive */

@media(max-width:768px) {

    .finance-container {
        margin-top: 100px;
    }

    .finance-intro-box {
        padding: 30px;
    }

        .finance-intro-box h2 {
            font-size: 30px;
        }

    .section-heading {
        font-size: 28px;
    }
}

@media(max-width:480px) {

    .finance-intro-box {
        padding: 25px;
    }

        .finance-intro-box h2 {
            font-size: 26px;
        }

        .finance-intro-box p {
            font-size: 15px;
        }

    .finance-card {
        padding: 22px;
    }
}







.hero {
    position: relative;
    background: #f3f6fb;
    overflow: hidden;
}
    .hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(168,85,247,.18);
        border-radius: 50%;
        filter: blur(80px);
        top: 20px;
        left: -100px;
    }
    .hero::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(99,102,241,.15);
        border-radius: 50%;
        filter: blur(80px);
        bottom: -120px;
        right: -100px;
    }
.dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#8b5cf6 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: .3;
}

.dots1 {
    top: 150px;
    left: 20px;
}

.dots2 {
    top: 100px;
    right: 40px;
}

.dots3 {
    bottom: 40px;
    left: 40%;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero {
    background: radial-gradient(circle at top left,#c4b5fd 0%,transparent 30%), radial-gradient(circle at bottom right,#93c5fd 0%,transparent 30%), #f8fafc;
}

.hero-card::before {
    transform: rotate(-3deg);
}

.hero-card::after {
    transform: rotate(3deg);
    .hero
}

.hero {
    background: radial-gradient(circle at 10% 10%, #d8b4fe 0%, transparent 20%), radial-gradient(circle at 90% 80%, #93c5fd 0%, transparent 25%), #f5f7fc;
}

body {
    background: radial-gradient(circle at 10% 10%, rgba(216,180,254,0.4) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(147,197,253,0.4) 0%, transparent 25%), #f5f7fc;
    background-attachment: fixed;
    min-height: 100vh;
}










@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}





```css
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.faq-stats div {
    background: rgba(255,255,255,0.15);
    padding: 20px 35px;
    border-radius: 15px;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.faq-stats h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.faq-container {
    width: 90%;
    max-width: 900px;
    margin: 70px auto;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .faq-item:hover {
        transform: translateY(-5px);
    }

.faq-question {
    width: 100%;
    border: none;
    background: white;
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question span {
        font-size: 28px;
        color: #2563eb;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

    .faq-answer.active {
        max-height: 200px;
    }

    .faq-answer p {
        padding: 0 25px 25px;
        color: #666;
        line-height: 1.8;
    }

.faq-cta {
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}

.faq-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .faq-btn:hover {
        transform: translateY(-3px);
    }

```
/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 992px) {
    .navbar

{
    width: 95%;
}

.hero,
.grid,
.contact-section,
.demo-container {
    grid-template-columns: 1fr;
}

.hero-left,
.hero-right {
    text-align: center;
}

    .hero-right img {
        max-width: 100%;
    }

.modules-grid,
.featurepage-grid,
.testimonial-grid,
.faq-stats,
.review-stats {
    grid-template-columns: repeat(2,1fr);
}

.footer-content {
    grid-template-columns: repeat(2,1fr);
}

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px) {

    .navbar {
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .menu-toggle {
        display: block;
        font-size: 25px;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            display: flex;
        }

    .btn1 {
        display: none;
    }

    .hero {
        padding: 50px 5%;
    }

        .hero h1,
        .modules-hero h1,
        .featurepage-hero h1 {
            font-size: 40px;
        }

        .hero p,
        .modules-hero p,
        .featurepage-hero p {
            font-size: 16px;
        }

    .modules-grid,
    .featurepage-grid,
    .testimonial-grid,
    .review-stats,
    .faq-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .faq-cta,
    .contact-cta,
    .review-cta {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featurepage-section,
    .modules-section {
        padding: 50px 5%;
    }

    .module-card,
    .featurepage-card,
    .testimonial-card {
        padding: 25px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px) {

    .hero h1,
    .modules-hero h1,
    .featurepage-hero h1 {
        font-size: 32px;
    }

    .hero p,
    .modules-hero p,
    .featurepage-hero p {
        font-size: 15px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 16px;
    }

    .btn1,
    .contact-btn,
    .faq-btn,
    .cta-btn {
        width: 100%;
    }
}












.demo-section {
    padding: 100px 8%;
    background: #f5f9ff;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.demo-content h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: #0f172a;
}

.demo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
}

.demo-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

    .demo-features div {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
        font-weight: 600;
    }

.demo-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

    .demo-form-card h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #0f172a;
    }

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        padding: 15px;
        border: 1px solid #dbeafe;
        border-radius: 12px;
        outline: none;
        font-size: 15px;
    }

    .demo-form textarea {
        min-height: 120px;
        resize: none;
    }

        .demo-form input:focus,
        .demo-form select:focus,
        .demo-form textarea:focus {
            border-color: #2196f3;
        }

.demo-btn {
    background: #2196f3;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .demo-btn:hover {
        background: #1976d2;
        transform: translateY(-3px);
    }

@media(max-width:992px) {
    .demo-container {
        grid-template-columns: 1fr;
    }

    .demo-content {
        text-align: center;
    }

    .demo-features {
        grid-template-columns: 1fr;
    }

    .demo-content h1 {
        font-size: 2.3rem;
    }
}



















/* ================= ERP ECOSYSTEM ================= */

.erp-ecosystem {
    padding: 60px 20px;
    background: linear-gradient(135deg,#f8fbff,#eef4ff);
    overflow: hidden;
    position: relative;
}

.ecosystem-wrapper {
    width: 550px;
    height: 550px;
    margin: 40px auto 0;
    position: relative;
}

.bg-glow {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient( rgba(99,102,241,.18), transparent 70%);
    filter: blur(60px);
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(99,102,241,.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.orbit1 {
    width: 380px;
    height: 380px;
}

.orbit2 {
    width: 500px;
    height: 500px;
}

.erp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 20;
}

.erp-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient( 135deg, #4f46e5, #7c3aed);
    box-shadow: 0 0 30px rgba(79,70,229,.30), 0 0 60px rgba(79,70,229,.15);
}

.module {
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    animation: float 4s ease-in-out infinite;
}

    .module i {
        font-size: 22px;
    }

    .module:hover {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

/* Module Positions */

.m1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.m2 {
    top: 16%;
    right: 0;
}

.m3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.m4 {
    bottom: 16%;
    right: 0;
}

.m5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.m6 {
    bottom: 16%;
    left: 0;
}

.m7 {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.m8 {
    top: 16%;
    left: 0;
}

/* Floating Animation */

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Particles */

.particle {
    position: absolute;
    border-radius: 50%;
    background: #6366f1;
    opacity: .20;
    animation: particleMove 5s infinite ease-in-out;
}

.p1 {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 20%;
}

.p2 {
    width: 12px;
    height: 12px;
    top: 70%;
    right: 10%;
}

.p3 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 18%;
}

.p4 {
    width: 10px;
    height: 10px;
    bottom: 20%;
    left: 15%;
}

.p5 {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 75%;
}

@keyframes particleMove {
    50% {
        transform: translateY(-15px);
    }
}

/* ================= TABLET ================= */

@media(max-width:768px) {

    .ecosystem-wrapper {
        width: 380px;
        height: 380px;
    }

    .orbit1 {
        width: 260px;
        height: 260px;
    }

    .orbit2 {
        width: 340px;
        height: 340px;
    }

    .erp-inner {
        width: 95px;
        height: 95px;
        font-size: 18px;
    }

    .module {
        width: 60px;
        height: 60px;
        font-size: 8px;
        gap: 2px;
    }

        .module i {
            font-size: 14px;
        }
}

/* ================= MOBILE ================= */

@media(max-width:480px) {

    .erp-ecosystem {
        padding: 50px 10px;
    }

    .ecosystem-wrapper {
        width: 300px;
        height: 300px;
    }

    .orbit1 {
        width: 200px;
        height: 200px;
    }

    .orbit2 {
        width: 270px;
        height: 270px;
    }

    .erp-inner {
        width: 80px;
        height: 80px;
        font-size: 15px;
    }

    .module {
        width: 50px;
        height: 50px;
        font-size: 7px;
    }

        .module i {
            font-size: 11px;
        }

    .bg-glow {
        width: 250px;
        height: 250px;
    }
}