.hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero h1{
    font-size:72px;
    font-weight:800;
    color:#fff;
}

.hero p{
    color:#cbd5e1;
    font-size:20px;
}


.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e0edff;
    color:#0d6efd;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}





.hero-btns{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.btn-demo{
    background:#0d6efd;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-demo:hover{
    color:#fff;
}

.btn-contact{
    border:2px solid #0d6efd;
    color:#0d6efd;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    color:#334155;
    font-size:15px;
    font-weight:500;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    border-radius:20px;
    box-shadow:0 40px 80px rgba(0,0,0,.35);
    transform:perspective(1000px) rotateY(-8deg);
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

@media(max-width:991px){

    .hero{
        text-align:center;
        padding:70px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-image{
        display: none;
    }
}

.features-section{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
}

.section-title p{
    color:#64748b;
    font-size:18px;
}

.feature-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:40px 30px;
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 50px rgba(37,99,235,.15);
}

.feature-card h4{
    font-size:22px;
    margin-bottom:15px;
    color:#2563eb;
}

.feature-card p{
    color:#64748b;
}

.business-growth{
    padding:100px 0;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    opacity:.8;
}

.growth-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.growth-card:hover{
    transform:translateY(-10px);
}

.growth-card h3{
    font-size:42px;
    font-weight:700;
    color:#60a5fa;
}

.growth-card p{
    margin-top:10px;
    color:#e2e8f0;
}

.modules-section{
    padding:100px 0;
    background:#fff;
}
.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#60a5fa;
    filter:blur(180px);
    right:-100px;
    top:-100px;
    opacity:.3;
}

/* =========================
   CONTACT HERO
========================= */

.contact-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.contact-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#60a5fa,transparent 70%);
    top:-100px;
    left:-100px;
    opacity:.3;
}

.contact-hero h1{
    font-size:54px;
    font-weight:800;
    margin-top:10px;
}

.contact-hero p{
    color:#cbd5e1;
    font-size:18px;
    max-width:700px;
    margin:15px auto 0;
}

/* =========================
   CONTACT INFO BOX
========================= */

.contact-info-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.contact-info-box h3{
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.contact-info-box p{
    color:#cbd5e1;
    margin-bottom:20px;
    line-height:1.7;
}

.contact-item{
    margin:10px 0;
    color:#e2e8f0;
    font-weight:500;
}

/* CALL BUTTON */
.contact-btn{
    display:inline-block;
    margin-top:20px;
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* =========================
   FORM BOX
========================= */

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   MAP SECTION
========================= */

.map-section{
    padding:100px 0;
    background:#f8fafc;
}

.map-box{
    margin-top:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
    border-radius:20px;
    overflow:hidden;
}

/* =========================
   BUTTON
========================= */

.submit-btn{
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,99,235,0.3);
}
.module-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border:1px solid #eef2f7;
}
.glass-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
}
.module-card:hover{
    transform:translateY(-12px);
}

.module-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    background:#eff6ff;
    border-radius:50%;
}

.module-card h4{
    margin-bottom:15px;
    font-weight:600;
}

.module-card p{
    color:#64748b;
}

.workflow-section{
    padding:100px 0;
    background:#f8fafc;
}

.workflow-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.workflow-card{
    background:#fff;
    width:320px;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.workflow-card:hover{
    transform:translateY(-10px);
}

.step-number{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:24px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.workflow-arrow{
    font-size:40px;
    color:#2563eb;
    font-weight:bold;
}

@media(max-width:991px){
    .workflow-arrow{
        display:none;
    }
}

.industries-section{
    padding:100px 0;
    background:#f8fafc;
}

.industry-card{
    background:#fff;
    padding:35px 20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-icon{
    font-size:45px;
    margin-bottom:15px;
}

.industry-card h5{
    font-weight:600;
    margin:0;
}

.cta-section{
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1e40af);
}

.cta-box{
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    max-width:700px;
    margin:0 auto 30px;
    opacity:.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    background:#fff;
    color:#2563eb;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.cta-btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.faq-section{
    padding:100px 0;
    background:#f8fafc;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}

.contact-section{
    padding:100px 0;
    background:#ffffff;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-control{
    padding:15px;
    border-radius:10px;
    border:1px solid #dbe4f0;
}

.form-control:focus{
    box-shadow:none;
    border-color:#2563eb;
}

.submit-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

.submit-btn:hover{
    background:#1d4ed8;
}

.testimonial-section{
    padding:100px 0;
    background:#f8fafc;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    height:100%;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    color:#64748b;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-card h5{
    margin:0;
    font-weight:600;
}

.testimonial-card span{
    color:#94a3b8;
}

.footer{
    background:#0f172a;
    color:#fff;
    padding:80px 0 20px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
    font-weight:600;
}

.footer p{
    color:#cbd5e1;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#60a5fa;
}

.footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,.1);
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
}

.map-actions{
    text-align:center;
    margin-top:20px;
}

.map-actions .submit-btn{
    display:inline-block;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    padding:12px 28px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(37,99,235,0.25);
}

.map-actions .submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,99,235,0.35);
}
.map-box{
    margin-top:30px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transition:0.3s;
    background:#fff;
}

.map-box:hover{
    transform:translateY(-5px);
}
/* =========================
   ICON BLOG STYLE
========================= */

.icon-card{
    text-align:center;
    padding:40px 25px;
}

.blog-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    border-radius:50%;
    box-shadow:0 15px 35px rgba(37,99,235,0.25);
    transition:0.3s;
}

.icon-card:hover .blog-icon{
    transform:scale(1.1) rotate(5deg);
}

.blog-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-tag{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:5px 12px;
    font-size:12px;
    border-radius:20px;
    margin-bottom:10px;
}

.blog-content h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.blog-content p{
    color:#64748b;
    font-size:14px;
}
.blog-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.blog-hero h1{
    font-size:54px;
    font-weight:800;
    margin-top:10px;
}

.blog-hero p{
    max-width:800px;
    margin:20px auto 0;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}

/* HERO STATS */
.hero-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-stats .stat{
    background:rgba(255,255,255,0.08);
    padding:20px 30px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    min-width:150px;
}

.hero-stats .stat h3{
    font-size:28px;
    font-weight:800;
    color:#60a5fa;
}

.hero-stats .stat p{
    margin:0;
    color:#e2e8f0;
    font-size:14px;
}

/* INTRO SECTION */
.blog-intro{
    padding:80px 0;
    background:#f8fafc;
}

.blog-intro h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.blog-intro p{
    max-width:900px;
    margin:auto;
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}
.blog-section{
    padding:100px 0 140px; /* bottom space increase */
}

/* =========================
   BENEFITS HERO
========================= */

.benefits-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    text-align:center;
}

.benefits-hero h1{
    font-size:54px;
    font-weight:800;
    margin-top:10px;
}

.benefits-hero p{
    max-width:800px;
    margin:20px auto 0;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}

/* =========================
   BENEFITS SECTION
========================= */

.benefits-section{
    padding:100px 0;
    background:#f8fafc;
}

.benefit-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,0.15);
}

.benefit-icon{
    font-size:40px;
    margin-bottom:15px;
}

.benefit-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.benefit-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

/* =========================
   CTA SECTION
========================= */

.benefits-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
}

.benefits-cta h2{
    font-size:42px;
    font-weight:800;
}

.benefits-cta p{
    max-width:700px;
    margin:20px auto;
    opacity:0.9;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   ABOUT HERO
========================= */

.about-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    text-align:center;
}

.about-hero h1{
    font-size:52px;
    font-weight:800;
    margin-top:10px;
}

.about-hero p{
    max-width:850px;
    margin:20px auto 0;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding:100px 0;
    background:#fff;
}

.about-img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.about-section h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:15px;
}

.about-section p{
    color:#64748b;
    line-height:1.8;
}

.about-points{
    margin-top:20px;
    color:#0f172a;
    font-weight:500;
}

.about-points div{
    margin-bottom:8px;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section{
    padding:100px 0;
    background:#f8fafc;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    height:100%;
}

.mission-card h3{
    font-size:24px;
    margin-bottom:10px;
}

/* =========================
   FEATURES
========================= */

.about-features{
    padding:100px 0;
    background:#fff;
}

.about-card{
    background:#f8fafc;
    padding:30px;
    border-radius:20px;
    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-10px);
    background:#2563eb;
    color:#fff;
}

.about-card .icon{
    font-size:40px;
    margin-bottom:10px;
}

/* =========================
   CTA
========================= */

.about-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
}

.about-cta h2{
    font-size:42px;
    font-weight:800;
}

.about-cta p{
    margin:20px auto;
    max-width:700px;
    opacity:0.9;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
}
/* =========================
   ICON BOX (REPLACES IMAGE)
========================= */

.about-icon-box{
    background:#f8fafc;
    padding:50px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.big-icon{
    font-size:80px;
    margin-bottom:20px;
}

/* =========================
   BIG MISSION / VISION
========================= */

.mission-big,
.vision-big{
    padding:60px 40px;
    border-radius:25px;
    color:#fff;
    min-height:260px;
}

.mission-big{
    background:linear-gradient(135deg,#2563eb,#1e40af);
}

.vision-big{
    background:linear-gradient(135deg,#0f172a,#334155);
}

.mission-tag{
    font-size:22px;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing:1px;
}

.mission-card p{
    font-size:16px;
    line-height:1.8;
    opacity:0.95;
}
/* =========================
   FEATURES HERO
========================= */

.features-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    color:#fff;
    text-align:center;
}

.features-hero h1{
    font-size:52px;
    font-weight:800;
    margin-top:10px;
}

.features-hero p{
    max-width:800px;
    margin:20px auto 0;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}

/* =========================
   FEATURE BOXES
========================= */

.features-page-section{
    padding:100px 0;
    background:#f8fafc;
}

.feature-box{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,0.15);
}

.feature-box .icon{
    font-size:40px;
    margin-bottom:15px;
}

.feature-box h4{
    font-size:20px;
    font-weight:700;
}

/* =========================
   HIGHLIGHT SECTION
========================= */

.features-highlight{
    padding:100px 0;
    background:#fff;
}

.highlight-box{
    background:#f8fafc;
    padding:30px;
    border-radius:20px;
    transition:0.3s;
}

.highlight-box:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-10px);
}

.highlight-box .icon{
    font-size:35px;
    margin-bottom:10px;
}

/* =========================
   CTA
========================= */

.features-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
}

.features-cta h2{
    font-size:42px;
    font-weight:800;
}

.features-cta p{
    max-width:700px;
    margin:20px auto;
    opacity:0.9;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
}
.modal-content{
    border-radius:18px;
    border:none;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
}

.modal-header{
    border-bottom:none;
}

.modal-title{
    font-weight:700;
}

.btn-primary{
    background:#2563eb;
    border:none;
    padding:12px;
    font-weight:600;
}

.btn-primary:hover{
    background:#1d4ed8;
}
.read-more-btn{
    display:inline-block;
    margin-top:15px;
    padding:8px 16px;
    background:#025554;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.read-more-btn:hover{
    background:#013a3a;
    transform:translateY(-2px);
}
.blog-detail-hero{
    padding:80px 0;
    background:#f5f9f9;
}

.blog-detail-hero h1{
    font-size:36px;
    margin-top:10px;
}

.blog-meta{
    color:#777;
    margin-top:10px;
}

.blog-detail-content{
    padding:60px 0;
}

.blog-image img{
    width:100%;
    border-radius:12px;
    margin-bottom:30px;
}

.blog-detail-content .content h2{
    margin-top:25px;
    color:#025554;
}

.blog-detail-content .content p,
.blog-detail-content .content ul{
    font-size:16px;
    line-height:1.8;
    color:#333;
}

.back-btn{
    margin-top:40px;
}

.back-btn a{
    text-decoration:none;
    color:#fff;
    background:#025554;
    padding:10px 20px;
    border-radius:6px;
}

.back-btn a:hover{
    background:#013a3a;
}