/*=========================================================
    CRAVE ERP
    Modern SaaS Style
    Version : 2.0
==========================================================*/


/*=========================================================
                GOOGLE FONT
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');


/*=========================================================
                RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Hind Siliguri',sans-serif;

    font-size:16px;

    line-height:1.8;

    color:#475569;

    background:#ffffff;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:.35s;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input{

    font-family:inherit;

}



/*=========================================================
                ROOT COLOR
==========================================================*/

:root{

    --primary:#2563EB;

    --secondary:#7C3AED;

    --dark:#0F172A;

    --white:#ffffff;

    --light:#F8FAFC;

    --text:#64748B;

    --border:#E2E8F0;

    --success:#10B981;

    --danger:#EF4444;

    --warning:#F59E0B;

    --gradient:linear-gradient(135deg,#2563EB,#7C3AED);

    --shadow:0 20px 45px rgba(15,23,42,.08);

    --radius:20px;

}



/*=========================================================
                CONTAINER
==========================================================*/

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 20px;

}



/*=========================================================
                SECTION
==========================================================*/

section{

    padding:100px 0;

    position:relative;

}

.section-title{

    max-width:800px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#EEF4FF;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    margin-bottom:18px;

}

.section-title h2{

    font-size:48px;

    color:var(--dark);

    line-height:1.2;

    font-weight:800;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:var(--text);

}



/*=========================================================
                HEADING
==========================================================*/

h1{

    font-size:64px;

    line-height:1.15;

    font-weight:800;

    color:var(--dark);

}

h2{

    font-size:46px;

    line-height:1.2;

    color:var(--dark);

}

h3{

    font-size:26px;

    color:var(--dark);

}

p{

    color:var(--text);

}



/*=========================================================
                BUTTON
==========================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:58px;

    padding:0 30px;

    border-radius:16px;

    background:var(--gradient);

    color:#fff;

    font-weight:700;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:58px;

    padding:0 30px;

    border-radius:16px;

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

    font-weight:700;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}



/*=========================================================
                CARD
==========================================================*/

.card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    box-shadow:var(--shadow);

}



/*=========================================================
                GLASS EFFECT
==========================================================*/

.glass{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.45);

}



/*=========================================================
                ANIMATION
==========================================================*/

.transition{

    transition:.35s;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:24px;

}



/*=========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.container{

max-width:100%;

padding:0 25px;

}

}

@media(max-width:992px){

section{

padding:80px 0;

}

.section-title h2{

font-size:38px;

}

h1{

font-size:48px;

}

}

@media(max-width:768px){

.container{

padding:0 18px;

}

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:16px;

}

h1{

font-size:36px;

line-height:1.3;

}

.btn-primary,

.btn-secondary{

width:100%;

}

}

@media(max-width:480px){

section{

padding:70px 0;

}

}
/*=========================================================
                    HERO SECTION
==========================================================*/

.hero{

    position:relative;

    overflow:hidden;

    padding:90px 0 120px;

    background:linear-gradient(180deg,#F8FBFF 0%,#EEF4FF 100%);

}

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:#2563EB;

    opacity:.05;

    border-radius:50%;

    top:-220px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#7C3AED;

    opacity:.05;

    border-radius:50%;

    left:-180px;

    bottom:-180px;

}



/*=========================================================
                HERO GRID
==========================================================*/

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:56% 44%;

    align-items:center;

    gap:60px;

}



/*=========================================================
                LEFT
==========================================================*/

.hero-content{

    max-width:680px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:#ffffff;

    border:1px solid #DDE7FF;

    border-radius:50px;

    color:#2563EB;

    font-weight:700;

    box-shadow:0 8px 25px rgba(37,99,235,.08);

    margin-bottom:25px;

}

.hero-content h1{

    margin-bottom:25px;

    font-size:64px;

    line-height:1.15;

}

.hero-content h1 span{

    display:block;

    color:#2563EB;

}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:35px;

    color:#64748B;

}



/*=========================================================
                BUTTON
==========================================================*/

.hero-btns{

    display:flex;

    gap:18px;

    margin-bottom:35px;

    flex-wrap:wrap;

}



/*=========================================================
                FEATURE
==========================================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:16px;

    font-weight:600;

    color:#334155;

}

.hero-features i{

    color:#10B981;

    font-size:20px;

}



/*=========================================================
                IMAGE
==========================================================*/

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:680px;

    border-radius:24px;

    border:1px solid #E2E8F0;

    box-shadow:

    0 40px 90px rgba(15,23,42,.12);

}



/*=========================================================
            FLOATING EFFECT
==========================================================*/

.hero-image img{

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}



/*=========================================================
                MOBILE
==========================================================*/

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

}

.hero-content{

max-width:100%;

text-align:center;

}

.hero-btns{

justify-content:center;

}

.hero-features{

max-width:500px;

margin:auto;

}

.hero-image{

margin-top:60px;

}

}



@media(max-width:768px){

.hero{

padding:70px 0;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.hero-features{

grid-template-columns:1fr;

gap:14px;

}

.hero-btns{

flex-direction:column;

}

.hero-btns a{

width:100%;

}

}
/*=========================================================
                    TRUST BAR
==========================================================*/

.trust-bar{

    padding:70px 0;

    background:#ffffff;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust-item{

    text-align:center;

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:20px;

    padding:35px 25px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.trust-item:hover{

    transform:translateY(-8px);

    border-color:#2563EB;

    box-shadow:0 25px 50px rgba(37,99,235,.12);

}

.trust-item h2{

    font-size:42px;

    color:#2563EB;

    margin-bottom:10px;

}

.trust-item p{

    color:#64748B;

    font-size:16px;

}



/*=========================================================
                SOFTWARE SECTION
==========================================================*/

.software-section{

    background:#F8FAFC;

}

.software-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



/*=========================================================
                SOFTWARE CARD
==========================================================*/

.software-card{

    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.9);

    border-radius:24px;

    padding:35px;

    transition:.35s;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.software-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(37,99,235,.12);

}

.software-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563EB,#7C3AED);

    transform:scaleX(0);

    transition:.35s;

}

.software-card:hover::before{

    transform:scaleX(1);

}



/*=========================================================
                    ICON
==========================================================*/

.software-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.software-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#0F172A;

}

.software-card p{

    min-height:95px;

    color:#64748B;

    margin-bottom:25px;

    line-height:1.9;

}

.software-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-weight:700;

}

.software-card a i{

    width:auto;

    height:auto;

    margin:0;

    background:none;

    color:#2563EB;

    font-size:18px;

}

.software-card:hover a{

    gap:16px;

}



/*=========================================================
                FEATURED CARD
==========================================================*/

.software-highlight{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

}

.software-highlight h3,

.software-highlight p{

    color:#fff;

}

.software-highlight i{

    background:rgba(255,255,255,.15);

}

.highlight-badge{

    position:absolute;

    top:20px;

    right:20px;

    padding:8px 15px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.btn-card{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:56px;

    border-radius:16px;

    background:#fff;

    color:#2563EB !important;

    font-weight:700;

    margin-top:25px;

}

.btn-card:hover{

    background:#F8FAFC;

}



/*=========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.software-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.software-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.trust-grid,

.software-grid{

grid-template-columns:1fr;

}

.trust-item h2{

font-size:36px;

}

.software-card{

padding:28px;

}

}
/*=========================================================
                WHY CHOOSE US
==========================================================*/

.why-section{

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.why-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#2563EB;

    opacity:.04;

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.why-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    position:relative;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid #E2E8F0;

    transition:.35s;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:linear-gradient(#2563EB,#7C3AED);

    transform:scaleY(0);

    transition:.35s;

    transform-origin:top;

}

.why-card:hover::before{

    transform:scaleY(1);

}

.why-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    font-size:32px;

    margin-bottom:22px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#64748B;

    line-height:1.9;

}



/*=========================================================
                MODULE SECTION
==========================================================*/

.module-section{

    background:#F8FAFC;

}

.module-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.module-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 20px;

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:16px;

    transition:.35s;

    font-size:16px;

    font-weight:600;

    color:#334155;

}

.module-item i{

    color:#10B981;

    font-size:20px;

}

.module-item:hover{

    transform:translateY(-6px);

    background:#EEF4FF;

    border-color:#2563EB;

    box-shadow:0 15px 35px rgba(37,99,235,.10);

}



/*=========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.module-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.module-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.module-grid{

grid-template-columns:1fr;

}

.why-card{

padding:28px;

}

}
/*=========================================================
                SCREENSHOT SECTION
==========================================================*/

.screenshot-section{

    background:#ffffff;

}

.screenshot-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.screen-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    border:1px solid #E2E8F0;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:.35s;

}

.screen-card img{

    width:100%;

    display:block;

    transition:.45s;

}

.screen-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.screen-card:hover img{

    transform:scale(1.05);

}



/*=========================================================
                VIDEO SECTION
==========================================================*/

.video-section{

    background:#F8FAFC;

}

.video-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.video-content h2{

    margin:18px 0;

}

.video-content p{

    margin-bottom:30px;

}

.video-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}

.video-list li{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.video-list i{

    color:#10B981;

}

.video-box{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.video-box img{

    width:100%;

    display:block;

}

.play-button{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    font-size:38px;

    box-shadow:0 20px 50px rgba(37,99,235,.35);

    transition:.35s;

}

.play-button:hover{

    transform:translate(-50%,-50%) scale(1.1);

}



/*=========================================================
                TESTIMONIAL
==========================================================*/

.testimonial-section{

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:24px;

    padding:35px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.rating{

    color:#F59E0B;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    line-height:1.9;

    margin-bottom:25px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    font-size:18px;

    margin-bottom:5px;

}

.client span{

    color:#64748B;

    font-size:14px;

}



/*=========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.screenshot-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.video-wrapper{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.screenshot-grid,

.testimonial-grid{

grid-template-columns:1fr;

}

.video-list{

grid-template-columns:1fr;

}

.play-button{

width:70px;

height:70px;

font-size:30px;

}

}
/*=========================================================
                    FAQ SECTION
==========================================================*/

.faq-section{

    background:#F8FAFC;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:20px;

    padding:28px;

    margin-bottom:20px;

    transition:.35s;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.faq-item:hover{

    border-color:#2563EB;

    transform:translateY(-5px);

}

.faq-item h3{

    margin-bottom:15px;

    font-size:22px;

    color:#0F172A;

}

.faq-item p{

    color:#64748B;

    line-height:1.9;

}



/*=========================================================
                    TOOLS
==========================================================*/

.tools-section{

    background:#ffffff;

}

.tools-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.tool-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.tool-card:hover{

    transform:translateY(-8px);

    border-color:#2563EB;

}

.tool-card i{

    font-size:42px;

    color:#2563EB;

    margin-bottom:18px;

}

.tool-card h3{

    font-size:22px;

}



/*=========================================================
                    BLOG
==========================================================*/

.blog-section{

    background:#F8FAFC;

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.blog-card{

    overflow:hidden;

    background:#fff;

    border-radius:24px;

    border:1px solid #E2E8F0;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.blog-card:hover{

    transform:translateY(-8px);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.blog-card h3{

    padding:25px;

    font-size:24px;

    line-height:1.5;

}

.blog-card a{

    display:block;

    padding:0 25px 25px;

    color:#2563EB;

    font-weight:700;

}



/*=========================================================
                    CTA
==========================================================*/

.final-cta{

    padding:120px 0;

}

.cta-wrapper{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    border-radius:32px;

    padding:80px;

    text-align:center;

    color:#fff;

}

.cta-wrapper h2{

    color:#fff;

    margin-bottom:20px;

    font-size:50px;

}

.cta-wrapper p{

    color:rgba(255,255,255,.92);

    font-size:20px;

    margin-bottom:35px;

}

.cta-wrapper .hero-btns{

    justify-content:center;

}



/*=========================================================
                    FOOTER
==========================================================*/

footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:80px 0 30px;

}

footer h3{

    color:#fff;

    margin-bottom:20px;

}

footer p{

    color:#CBD5E1;

}

footer a{

    color:#CBD5E1;

}

footer a:hover{

    color:#ffffff;

}



/*=========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.tools-grid{

grid-template-columns:repeat(2,1fr);

}

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:992px){

.tools-grid,

.blog-grid{

grid-template-columns:1fr;

}

.cta-wrapper{

padding:60px 30px;

}

.cta-wrapper h2{

font-size:38px;

}

}



@media(max-width:768px){

.faq-item{

padding:22px;

}

.tool-card,

.blog-card{

border-radius:18px;

}

.cta-wrapper{

padding:40px 25px;

}

.cta-wrapper h2{

font-size:30px;

}

.cta-wrapper p{

font-size:16px;

}

}
/*=========================================================
        FOOTER BIG LINKS
==========================================================*/

.footer-big-links{

    margin:70px 0;

    padding:45px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

}

.footer-big-links h2{

    color:#fff;

    font-size:32px;

    margin-bottom:15px;

}

.footer-big-links p{

    color:#CBD5E1;

    margin-bottom:30px;

}

.footer-link-grid{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-link-grid a{

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#E2E8F0;

    transition:.3s;

    font-size:14px;

}

.footer-link-grid a:hover{

    background:#2563EB;

    color:#fff;

}

@media(max-width:768px){

.footer-big-links{

padding:25px;

}

.footer-big-links h2{

font-size:24px;

}

}
.form-control{

width:100%;

height:55px;

padding:15px;

border:1px solid #E2E8F0;

border-radius:12px;

margin-top:8px;

font-size:15px;

font-family:inherit;

}

textarea.form-control{

height:auto;

resize:vertical;

min-height:120px;

}

.form-control:focus{

outline:none;

border-color:#2563EB;

box-shadow:0 0 0 3px rgba(37,99,235,.15);

}

@media(max-width:768px){

.row{

grid-template-columns:1fr !important;

}

}