/*=========================================================
NexaCore ERP
Global Styles
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Segoe UI",Arial,sans-serif;

    background:#ffffff;

    color:#1f2937;

    line-height:1.6;

}

a{

    color:inherit;

    text-decoration:none;

}

img{

    display:block;

    max-width:100%;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*=========================================================
Navigation
=========================================================*/

.navbar{

    background:#ffffff;

    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.navbar-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

}

.nav-menu{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-menu a{

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:#2563eb;

}

.nav-buttons{

    display:flex;

    gap:15px;

}

/*=========================================================
Buttons
=========================================================*/

.btn{

    padding:12px 26px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#2563eb;

    color:#ffffff;

}

.btn-primary:hover{

    background:#1d4ed8;

}

.btn-outline{

    border:1px solid #2563eb;

    color:#2563eb;

}

.btn-outline:hover{

    background:#2563eb;

    color:#ffffff;

}

/*=========================================================
Hero
=========================================================*/

.hero{

    padding:100px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#dbeafe;

    color:#2563eb;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#64748b;

    margin-bottom:35px;

}

.hero-actions{

    display:flex;

    gap:20px;

}

.hero-image{

    display:flex;

    justify-content:center;

}

/*=========================================================
Footer
=========================================================*/

.footer{

    margin-top:100px;

    background:#0f172a;

    color:#ffffff;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:40px 0;

}

/*=========================================================
Responsive
=========================================================*/

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-actions{

justify-content:center;

}

.navbar-container{

flex-direction:column;

height:auto;

padding:20px 0;

gap:20px;

}

.nav-menu{

flex-wrap:wrap;

justify-content:center;

}

.footer-content{

flex-direction:column;

gap:20px;

text-align:center;

}

}

/*=========================================================
Section Heading
=========================================================*/

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:42px;

    margin-bottom:20px;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    color:#64748b;

    font-size:18px;

}

/*=========================================================
Trusted
=========================================================*/

.trusted{

    padding:100px 0;

    background:#f8fafc;

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.trusted-card{

    background:#ffffff;

    padding:35px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.trusted-card:hover{

    transform:translateY(-8px);

}

.trusted-card h3{

    margin-bottom:15px;

    color:#0f172a;

}

.trusted-card p{

    color:#64748b;

    line-height:1.8;

}

/*=========================================================
Features
=========================================================*/

.features{

    padding:100px 0;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.feature-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:35px;

    transition:.3s;

}

.feature-card:hover{

    border-color:#2563eb;

    box-shadow:0 12px 30px rgba(37,99,235,.10);

    transform:translateY(-6px);

}

.feature-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.feature-card p{

    color:#64748b;

    line-height:1.8;

}

/*=========================================================
Dashboard Showcase
=========================================================*/

.dashboard-showcase{

    padding:120px 0;

    background:#f8fafc;

}

.dashboard-preview{

    margin-top:60px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 80px rgba(15,23,42,.15);

    transition:.4s;

}

.dashboard-preview:hover{

    transform:translateY(-10px);

}

.dashboard-preview img{

    width:100%;

    display:block;

}

.flash{

    padding:16px 20px;

    border-radius:8px;

    margin-bottom:20px;

    font-weight:600;

}

.flash-success{

    background:#e8f8ef;

    color:#107c41;

    border-left:5px solid #107c41;

}

.flash-error{

    background:#fdeaea;

    color:#c62828;

    border-left:5px solid #c62828;

}

.flash-warning{

    background:#fff8e1;

    color:#8d6e00;

    border-left:5px solid #ffb300;

}

.flash-info{

    background:#e8f4fd;

    color:#1565c0;

    border-left:5px solid #1565c0;

}