/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f7fb;
    color:#111827;
    overflow-x:hidden;
}

/* ================= TOPBAR ================= */

.topbar{
    width:100%;
    background:white;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#2563eb;
    display:flex;
    align-items:center;
    gap:10px;
}

.logo i{
    font-size:30px;
}

nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#2563eb;
}

.btn-login{
    padding:10px 20px;
    border:2px solid #2563eb;
    border-radius:10px;
    color:#2563eb;
}

.btn-register{
    padding:10px 20px;
    background:#2563eb;
    border-radius:10px;
    color:white;
}

.btn-register:hover{
    background:#1746b5;
    color:white;
}

/* ================= HERO ================= */

.hero{
    width:100%;
    min-height:90vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    gap:40px;
}

.hero-text{
    width:50%;
}

.hero-badge{
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.hero-text h1{
    font-size:65px;
    line-height:1.2;
    margin:25px 0;
    font-weight:800;
}

.hero-text p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
    max-width:600px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
}

.hero-buttons a{
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.start-btn{
    background:#2563eb;
    color:white;
}

.start-btn:hover{
    background:#1746b5;
}

.login-btn{
    border:2px solid #2563eb;
    color:#2563eb;
}

.login-btn:hover{
    background:#2563eb;
    color:white;
}

/* ================= HERO STATS ================= */

.hero-stats{
    margin-top:50px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:white;
    padding:20px;
    min-width:120px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.stat-box h2{
    color:#2563eb;
    margin-bottom:5px;
}

/* ================= HERO IMAGE ================= */

.hero-image{
    width:45%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle-bg{
    width:420px;
    height:420px;
    background:#2563eb;
    border-radius:50%;
    position:absolute;
    opacity:0.1;
}

.dashboard-card{
    width:380px;
    background:white;
    padding:30px;
    border-radius:25px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.dash-top{
    background:#2563eb;
    padding:25px;
    border-radius:20px;
    color:white;
}

.dash-top span{
    font-size:15px;
}

.dash-top h2{
    margin-top:10px;
    font-size:35px;
}

.mini-cards{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.mini-card{
    background:#f3f4f6;
    padding:20px 10px;
    text-align:center;
    border-radius:15px;
}

.mini-card i{
    font-size:25px;
    color:#2563eb;
    margin-bottom:10px;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    font-size:45px;
}

/* ================= FEATURES ================= */

.features{
    padding:100px 8%;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card .icon{
    width:70px;
    height:70px;
    background:#dbeafe;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.feature-card .icon i{
    font-size:30px;
    color:#2563eb;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#6b7280;
    line-height:1.8;
}

/* ================= PRICING ================= */

.pricing{
    padding:100px 8%;
}

.pricing-boxes{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.price-card{
    width:340px;
    background:white;
    padding:45px 35px;
    border-radius:25px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.price-card h3{
    font-size:28px;
}

.price{
    font-size:45px;
    font-weight:800;
    color:#2563eb;
    margin:20px 0;
}

.price-card p{
    color:#6b7280;
}

.price-card ul{
    list-style:none;
    margin:30px 0;
}

.price-card ul li{
    margin-bottom:18px;
    color:#374151;
}

.price-card ul li i{
    color:#2563eb;
    margin-right:10px;
}

.price-card a{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#2563eb;
    color:white;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.price-card a:hover{
    background:#1746b5;
}

.premium{
    border:3px solid #2563eb;
}

.popular{
    position:absolute;
    top:-15px;
    right:25px;
    background:#2563eb;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

/* ================= FOOTER ================= */

footer{
    background:#111827;
    color:white;
    margin-top:100px;
}

.footer-content{
    padding:60px 8%;
    text-align:center;
}

.footer-logo{
    font-size:35px;
    font-weight:700;
    margin-bottom:20px;
    color:#60a5fa;
}

.footer-content p{
    color:#d1d5db;
    margin-bottom:25px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:15px;
}

.socials a{
    width:45px;
    height:45px;
    background:#1f2937;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    background:#2563eb;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#9ca3af;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text,
.hero-image{
    width:100%;
}

.hero-text h1{
    font-size:45px;
}

.hero-buttons{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.hero-image{
    margin-top:50px;
}

}

@media(max-width:768px){

.topbar{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-text h1{
    font-size:38px;
}

.section-title h2{
    font-size:35px;
}

.dashboard-card{
    width:100%;
}

.circle-bg{
    width:300px;
    height:300px;
}

}/* ================= TOPBAR ================= */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 6%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo{
    font-size:24px;
    font-weight:700;
    color:#2563eb;
}

/* NAV */
nav{
    display:flex;
    align-items:center;
    gap:15px;
}

nav a{
    text-decoration:none;
    color:#111827;
    font-weight:500;
}

/* BUTTONS */
.btn-login,
.btn-register{
    padding:10px 15px;
    border-radius:10px;
}

.btn-login{
    background:#eff6ff;
    color:#2563eb;
}

.btn-register{
    background:#2563eb;
    color:white;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
    color:#2563eb;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:75px;
        left:0;
        right:0;
        background:white;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:15px;

        display:none;

        box-shadow:0 10px 20px rgba(0,0,0,0.08);
    }

    nav.show{
        display:flex;
    }

    nav a{
        width:100%;
    }

    .btn-login,
    .btn-register{
        width:100%;
        text-align:center;
    }

}