*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:
    radial-gradient(circle at top left,
    #1e3a8a 0%,
    #020617 45%,
    #000814 100%);

    color:white;

    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 5%;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    position:sticky;

    top:0;

    z-index:1000;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    width:90px;

    height:55px;

    object-fit:contain;

    background:white;

    padding:5px 10px;

    border-radius:12px;
}

.logo h2{

    font-size:24px;
}

.nav-links{

    display:flex;

    gap:28px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:0.3s;
}

.nav-links a:hover{

    color:#60a5fa;
}

.dropdown{

    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:35px;

    left:0;

    background:#0f172a;

    min-width:240px;

    border-radius:16px;

    padding:12px 0;

    display:none;

    box-shadow:0 20px 40px rgba(0,0,0,0.4);

    border:1px solid rgba(255,255,255,0.08);
}

.dropdown-menu a{

    display:block;

    padding:14px 20px;

    color:white;

    text-decoration:none;

    transition:0.3s;
}

.dropdown-menu a:hover{

    background:rgba(37,99,235,0.25);

    color:#60a5fa;
}

.dropdown:hover .dropdown-menu{

    display:block;
}

.demo-btn{

    background:
    linear-gradient(to right,#2563eb,#1d4ed8);

    color:white;

    padding:14px 26px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.45);
}

/* =========================
HERO
========================= */

.hero{

    padding:100px 6%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;
}

.hero-left{

    flex:1;
}

.hero-left h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;
}

.hero-left h1 span{

    color:#60a5fa;
}

.hero-left p{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    background:
    linear-gradient(to right,#2563eb,#1d4ed8);

    border:none;

    color:white;

    padding:16px 30px;

    border-radius:14px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    text-decoration:none;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.45);
}

.secondary-btn{

    background:rgba(255,255,255,0.08);

    color:white;

    border:1px solid rgba(255,255,255,0.1);

    padding:16px 30px;

    border-radius:14px;

    cursor:pointer;

    text-decoration:none;
}

/* =========================
RIGHT DASHBOARD
========================= */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;
}

.dashboard{

    width:520px;

    background:rgba(255,255,255,0.05);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;
}

.dashboard-header h3{

    font-size:26px;
}

.status{

    background:#16a34a;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;
}

.analytics-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.analytics-card{

    background:rgba(255,255,255,0.06);

    padding:25px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,0.08);

    text-align:center;

    transition:0.4s;
}

.analytics-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(37,99,235,0.35);
}

.analytics-card i{

    font-size:38px;

    color:#60a5fa;

    margin-bottom:15px;
}

.analytics-card h2{

    font-size:36px;

    margin-bottom:10px;
}

.analytics-card p{

    color:#cbd5e1;
}

/* =========================
FEATURES
========================= */

.features{

    padding:90px 6%;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:52px;

    margin-bottom:15px;
}

.section-title p{

    color:#cbd5e1;
}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{

    background:rgba(255,255,255,0.05);

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;

    backdrop-filter:blur(18px);
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(37,99,235,0.35);
}

.feature-card i{

    width:80px;

    height:80px;

    border-radius:20px;

    background:
    linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;
}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.feature-card p{

    color:#cbd5e1;

    line-height:1.8;
}

/* =========================
WORKFLOW
========================= */

.workflow{

    padding:80px 6%;
}

.workflow-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.workflow-step{

    background:rgba(255,255,255,0.05);

    padding:35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);
}

.workflow-step h2{

    font-size:42px;

    color:#60a5fa;

    margin-bottom:20px;
}

.workflow-step p{

    color:#cbd5e1;

    line-height:1.7;
}

/* =========================
TECH STACK
========================= */

.tech-stack{

    padding:90px 6%;
}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;
}

.tech-box{

    background:rgba(255,255,255,0.05);

    padding:30px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.tech-box:hover{

    transform:translateY(-8px);
}

.tech-box i{

    font-size:48px;

    margin-bottom:20px;

    color:#60a5fa;
}

/* =========================
CTA
========================= */

.cta{

    margin:90px 6%;

    background:
    linear-gradient(135deg,#2563eb,#1d4ed8);

    padding:70px;

    border-radius:35px;

    text-align:center;

    box-shadow:
    0 20px 60px rgba(37,99,235,0.35);
}

.cta h2{

    font-size:52px;

    margin-bottom:20px;
}

.cta p{

    font-size:20px;

    margin-bottom:35px;

    color:#dbeafe;
}

.cta button{

    background:white;

    color:#1d4ed8;

    border:none;

    padding:18px 36px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;
}

/* =========================
FOOTER
========================= */

.footer{

    background:#00184a;

    padding:35px;

    text-align:center;

    color:#cbd5e1;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.feature-grid{
    grid-template-columns:1fr 1fr;
}

.tech-grid{
    grid-template-columns:repeat(3,1fr);
}

.workflow-container{
    grid-template-columns:1fr 1fr;
}

.hero{
    flex-direction:column;
}

}

@media(max-width:768px){

.feature-grid,
.tech-grid,
.workflow-container{
    grid-template-columns:1fr;
}

.hero-left h1{
    font-size:46px;
}

.dashboard{
    width:100%;
}

.analytics-grid{
    grid-template-columns:1fr;
}

.nav-links{
    display:none;
}

}


