/*=====================================================
ACP PRINT ERP
Premium SaaS Theme
Company : ACP IT ZONE
Website : https://acpprinterp.in
Version : 1.0
======================================================*/


/*=====================================================
GOOGLE FONT
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=====================================================
ROOT VARIABLES
======================================================*/

:root{

--primary:#0d6efd;
--primary-dark:#0b5ed7;
--secondary:#6610f2;

--success:#198754;
--danger:#dc3545;
--warning:#ffc107;
--info:#0dcaf0;

--white:#ffffff;
--black:#111111;

--dark:#0F172A;
--light:#F8FAFC;

--gray:#6c757d;
--gray-light:#f4f6f9;

--border:#e5e7eb;

--shadow:
0 10px 30px rgba(0,0,0,.08);

--radius:14px;

--transition:.35s;

}


/*=====================================================
RESET
======================================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:15px;

line-height:1.8;

color:#444;

background:#fff;

overflow-x:hidden;

}


/*=====================================================
TYPOGRAPHY
======================================================*/

h1,h2,h3,h4,h5,h6{

font-weight:700;

color:var(--dark);

}

h1{

font-size:58px;

line-height:70px;

}

h2{

font-size:42px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

h5{

font-size:20px;

}

p{

color:#666;

margin-bottom:15px;

}

a{

text-decoration:none;

transition:.3s;

}

img{

max-width:100%;

display:block;

}


/*=====================================================
SECTION
======================================================*/

section{

padding:90px 0;

}

.section-tag{

display:inline-block;

background:#e8f1ff;

color:var(--primary);

padding:8px 20px;

border-radius:30px;

font-size:14px;

font-weight:600;

}

.section-title{

margin-top:15px;

margin-bottom:20px;

}


/*=====================================================
PRELOADER
======================================================*/

#preloader{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader{

width:55px;

height:55px;

border-radius:50%;

border:5px solid #ddd;

border-top:5px solid var(--primary);

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}


/*=====================================================
TOP BAR
======================================================*/

.topbar{

background:var(--dark);

padding:10px 0;

font-size:14px;

color:#fff;

}

.topbar a{

color:#fff;

margin-left:18px;

}

.topbar i{

margin-right:6px;

color:#38bdf8;

}

.topbar a:hover{

color:#38bdf8;

}


/*=====================================================
NAVBAR
======================================================*/

.navbar{

padding:16px 0;

transition:.4s;

}

.navbar-brand{

font-size:30px;

font-weight:800;

color:var(--primary)!important;

}

.navbar-brand span{

color:#ff9800;

}

.navbar-nav .nav-link{

font-weight:500;

margin:0 10px;

color:#333;

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .active{

color:var(--primary)!important;

}

.navbar.sticky{

padding:10px 0;

background:#fff;

box-shadow:var(--shadow);

}


/*=====================================================
BUTTONS
======================================================*/

.btn{

border-radius:40px;

padding:13px 30px;

font-weight:600;

transition:.3s;

}

.btn-primary{

background:linear-gradient(135deg,#2563eb,#0d6efd);

border:none;

}

.btn-primary:hover{

transform:translateY(-3px);

box-shadow:0 12px 25px rgba(13,110,253,.35);

}

.btn-outline-primary{

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline-primary:hover{

background:var(--primary);

color:#fff;

}

.btn-dark{

border-radius:40px;

}


/*=====================================================
HERO
======================================================*/

.hero{

background:

linear-gradient(135deg,#eff6ff,#ffffff);

padding-top:120px;

padding-bottom:120px;

position:relative;

overflow:hidden;

}

.hero h1{

font-size:58px;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:18px;

color:#555;

}

.hero img{

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}


/*=====================================================
HERO COUNTER
======================================================*/

.hero-counter{

display:flex;

gap:45px;

margin-top:40px;

}

.hero-counter h3{

font-size:36px;

font-weight:700;

color:var(--primary);

margin-bottom:0;

}

.hero-counter p{

font-size:14px;

margin:0;

}


/*=====================================================
TRUSTED
======================================================*/

.trusted{

background:#fff;

}

.trusted h5{

font-weight:600;

margin-bottom:35px;

}

.trusted img{

filter:grayscale(100%);

opacity:.7;

transition:.4s;

margin:auto;

}

.trusted img:hover{

filter:none;

opacity:1;

transform:scale(1.08);

}


/*=====================================================
STATS
======================================================*/

.stats{

background:#f8fbff;

}

.stat-box{

background:#fff;

padding:40px;

border-radius:18px;

text-align:center;

box-shadow:var(--shadow);

transition:.3s;

}

.stat-box:hover{

transform:translateY(-10px);

}

.stat-box i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.stat-box h2{

font-size:40px;

color:var(--primary);

margin-bottom:5px;

}

.stat-box p{

margin:0;

}



/*=====================================================
FEATURES
======================================================*/

.features{

background:#fff;

}

.feature-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:var(--shadow);

border:1px solid var(--border);

transition:all .35s ease;

height:100%;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.feature-card i{

width:80px;

height:80px;

line-height:80px;

font-size:34px;

border-radius:50%;

background:#eaf2ff;

color:var(--primary);

margin-bottom:25px;

}

.feature-card h4{

margin-bottom:15px;

font-size:22px;

}

.feature-card p{

margin:0;

color:#666;

}


/*=====================================================
WORKFLOW
======================================================*/

.workflow{

background:#f8fbff;

}

.workflow-box{

background:#fff;

padding:30px 20px;

border-radius:18px;

box-shadow:var(--shadow);

transition:.35s;

position:relative;

height:100%;

}

.workflow-box:hover{

transform:translateY(-8px);

}

.workflow-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#2563eb,#60a5fa);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:34px;

margin-bottom:20px;

}

.workflow-box h5{

font-weight:600;

margin-bottom:0;

}


/*=====================================================
MODULES
======================================================*/

.modules{

background:#ffffff;

}

.module-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:18px;

box-shadow:var(--shadow);

border:1px solid #ececec;

transition:.35s;

height:100%;

}

.module-card:hover{

background:var(--primary);

transform:translateY(-10px);

}

.module-card i{

font-size:40px;

margin-bottom:20px;

color:var(--primary);

transition:.35s;

}

.module-card:hover i{

color:#fff;

}

.module-card h5{

font-weight:600;

margin-bottom:12px;

transition:.35s;

}

.module-card:hover h5{

color:#fff;

}

.module-card p{

margin:0;

transition:.35s;

}

.module-card:hover p{

color:#fff;

}


/*=====================================================
DASHBOARD
======================================================*/

.dashboard-preview{

background:#ffffff;

}

.dashboard-preview img{

border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

transition:.35s;

}

.dashboard-preview img:hover{

transform:scale(1.02);

}

.dashboard-list{

padding-left:0;

margin-top:30px;

}

.dashboard-list li{

list-style:none;

margin-bottom:15px;

font-size:16px;

font-weight:500;

}

.dashboard-list li i{

color:#198754;

margin-right:10px;

}


/*=====================================================
WHY US
======================================================*/

.why-us{

background:#f8fbff;

}

.why-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:var(--shadow);

transition:.35s;

text-align:center;

height:100%;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.why-card h4{

margin-bottom:15px;

font-size:22px;

}

.why-card p{

margin:0;

}


/*=====================================================
CTA STRIP
======================================================*/

.cta-strip{

background:linear-gradient(135deg,#2563eb,#0d6efd);

padding:70px 0;

color:#fff;

}

.cta-strip h2{

color:#fff;

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.cta-strip p{

color:#f5f5f5;

font-size:18px;

margin-bottom:0;

}

.cta-strip .btn{

padding:15px 35px;

font-size:18px;

font-weight:600;

}


/*=====================================================
SECTION ANIMATION
======================================================*/

.feature-card,
.module-card,
.workflow-box,
.why-card,
.stat-box{

transition:all .35s ease;

}

.feature-card:hover,
.module-card:hover,
.workflow-box:hover,
.why-card:hover,
.stat-box:hover{

transform:translateY(-10px);

}


/*=====================================================
IMAGE SHADOWS
======================================================*/

.shadow-soft{

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.rounded-xl{

border-radius:22px;

}


/*=====================================================
BACKGROUND SHAPES
======================================================*/

.hero::before{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:rgba(13,110,253,.06);

top:-180px;

right:-120px;

}

.hero::after{

content:"";

position:absolute;

width:250px;

height:250px;

border-radius:50%;

background:rgba(102,16,242,.05);

left:-100px;

bottom:-80px;

}


/*=====================================================
HOVER EFFECTS
======================================================*/

img{

transition:.35s;

}

img:hover{

transform:scale(1.02);

}


/*=====================================================
UTILITY CLASSES
======================================================*/

.text-primary{

color:var(--primary)!important;

}

.bg-primary-soft{

background:#eef4ff;

}

.radius{

border-radius:18px;

}

.shadow-hover:hover{

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.mt-80{

margin-top:80px;

}

.mb-80{

margin-bottom:80px;

}



/*=====================================================
PRICING SECTION
======================================================*/

.pricing{
    background:#ffffff;
    position:relative;
}

.pricing-card{

    background:#ffffff;
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #ececec;
    transition:.35s;
    position:relative;
    overflow:hidden;
    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.plan-name{

    display:inline-block;
    background:#eef4ff;
    color:#0d6efd;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

}

.pricing-card h2{

    font-size:56px;
    font-weight:800;
    color:#0d6efd;
    margin-bottom:5px;

}

.pricing-card h2 span{

    font-size:18px;
    color:#666;
    font-weight:500;

}

.pricing-card p{

    color:#777;

}

.pricing-card hr{

    margin:25px 0;

}

.pricing-card ul{

    list-style:none;
    padding:0;
    margin:0;

}

.pricing-card ul li{

    padding:12px 0;
    border-bottom:1px dashed #ececec;
    font-size:15px;
    color:#555;

}

.pricing-card ul li:last-child{

    border-bottom:none;

}

.pricing-card ul li i{

    margin-right:10px;
    color:#198754;

}

.pricing-card .btn{

    margin-top:25px;
    border-radius:40px;

}

/*=====================================================
FEATURED PLAN
======================================================*/

.featured{

    background:linear-gradient(135deg,#2563eb,#0d6efd);
    color:#ffffff;
    transform:scale(1.05);

}

.featured h2,
.featured h5,
.featured h4{

    color:#ffffff;

}

.featured p{

    color:#eef3ff;

}

.featured ul li{

    color:#ffffff;
    border-color:rgba(255,255,255,.15);

}

.featured .plan-name{

    background:#ffffff;
    color:#0d6efd;

}

.featured .btn{

    background:#ffffff;
    color:#0d6efd;
    border:none;

}

.featured .btn:hover{

    background:#111827;
    color:#ffffff;

}

.popular{

    position:absolute;
    top:20px;
    right:-45px;
    background:#ffc107;
    color:#111;
    padding:8px 50px;
    font-size:13px;
    font-weight:700;
    transform:rotate(45deg);

}

/*=====================================================
TESTIMONIALS
======================================================*/

.testimonials{

    background:#f8fbff;

}

.testimonial-card{

    background:#ffffff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border:1px solid #ececec;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#ffc107;
    font-size:22px;
    margin-bottom:18px;
    letter-spacing:2px;

}

.testimonial-card p{

    color:#555;
    line-height:1.9;
    margin-bottom:20px;

}

.testimonial-card hr{

    margin:20px 0;

}

.testimonial-card img{

    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #eef4ff;

}

.testimonial-card h6{

    margin-bottom:3px;
    font-weight:700;

}

.testimonial-card small{

    color:#777;

}

/*=====================================================
CUSTOMER AVATAR EFFECT
======================================================*/

.testimonial-card img:hover{

    transform:rotate(5deg) scale(1.08);

}

/*=====================================================
HOVER EFFECT
======================================================*/

.pricing-card,
.testimonial-card{

    transition:all .35s ease;

}

.pricing-card:hover,
.testimonial-card:hover{

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}




/*=====================================================
FAQ SECTION
======================================================*/

.faq-section{

    background:#ffffff;

}

.faq-section .accordion-item{

    border:none;
    margin-bottom:18px;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.faq-section .accordion-button{

    background:#ffffff;
    font-size:17px;
    font-weight:600;
    color:#0f172a;
    padding:22px 25px;
    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:#0d6efd;
    color:#ffffff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    padding:25px;
    color:#666;
    line-height:1.8;

}

/*=====================================================
CONTACT SECTION
======================================================*/

.contact-section{

    background:#f8fbff;

}

.contact-info{

    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;

}

.contact-item{

    display:flex;
    align-items:flex-start;
    margin-bottom:28px;

}

.contact-icon{

    width:65px;
    height:65px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0d6efd;
    font-size:22px;
    margin-right:18px;
    flex-shrink:0;
    transition:.35s;

}

.contact-item:hover .contact-icon{

    background:#0d6efd;
    color:#ffffff;
    transform:rotate(8deg);

}

.contact-item h6{

    margin-bottom:6px;
    font-weight:700;

}

.contact-item p{

    margin:0;
    color:#666;

}

/*=====================================================
CONTACT FORM
======================================================*/

.contact-form{

    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form .form-label{

    font-weight:600;
    color:#0f172a;

}

.contact-form .form-control{

    height:55px;
    border-radius:12px;
    border:1px solid #d9dee8;
    box-shadow:none;

}

.contact-form textarea.form-control{

    height:auto;
    min-height:180px;
    resize:vertical;

}

.contact-form .form-control:focus{

    border-color:#0d6efd;
    box-shadow:0 0 0 .18rem rgba(13,110,253,.15);

}

.contact-form .btn{

    padding:14px 36px;
    border-radius:40px;
    font-weight:600;

}

/*=====================================================
SOCIAL ICONS
======================================================*/

.social-icons{

    display:flex;
    gap:14px;
    flex-wrap:wrap;

}

.social-icons a{

    width:48px;
    height:48px;
    border-radius:50%;
    background:#eef4ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;

}

.social-icons a:hover{

    background:#0d6efd;
    color:#ffffff;
    transform:translateY(-5px);

}

/*=====================================================
GOOGLE MAP
======================================================*/

.map-section{

    line-height:0;

}

.map-section iframe{

    width:100%;
    height:450px;
    border:0;
    filter:grayscale(15%);

}

/*=====================================================
CONTACT CTA BOX
======================================================*/

.contact-cta{

    background:linear-gradient(135deg,#2563eb,#0d6efd);
    border-radius:20px;
    padding:40px;
    color:#ffffff;
    text-align:center;
    margin-top:40px;

}

.contact-cta h3{

    color:#ffffff;
    margin-bottom:15px;

}

.contact-cta p{

    color:#eef4ff;

}

.contact-cta .btn{

    background:#ffffff;
    color:#0d6efd;
    border:none;

}

.contact-cta .btn:hover{

    background:#111827;
    color:#ffffff;

}