*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,Arial,sans-serif;
}


body{
    display:flex;
    min-height:100vh;
    background:#f8fafc;
    color:#0f172a;
}



/* SIDEBAR */

.sidebar{

    width:260px;
    height:100vh;
    background:linear-gradient(180deg,#0067ff,#0047b8);
    color:white;
    padding:30px 20px;
    position:fixed;
}


.sidebar h2{

    font-size:26px;
    margin-bottom:45px;
}


.sidebar a{

    display:flex;
    align-items:center;
    padding:14px 18px;
    margin-bottom:12px;
    color:white;
    text-decoration:none;
    border-radius:14px;
    transition:.3s;
}


.sidebar a:hover,
.sidebar .active{

    background:white;
    color:#0067ff;
}





/* MAIN */

.main{

    margin-left:260px;
    width:calc(100% - 260px);
    padding:35px;

}




header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;

}


header h1{

    font-size:32px;
}





/* BUTTON */

button{

    border:none;
    background:#0067ff;
    color:white;
    padding:13px 20px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}


button:hover{

    transform:translateY(-2px);
    background:#0054d4;

}





/* STATS */

.stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;

}



.stat{

    background:white;
    padding:25px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);

}


.stat h3{

    color:#64748b;
    font-size:15px;

}


.stat h1{

    margin-top:10px;
    font-size:35px;

}


.green{

    color:#16a34a;

}

.red{

    color:#dc2626;

}

.blue{

    color:#2563eb;

}





/* TITLE */

.title{

    margin:35px 0 20px;
    font-size:22px;

}





/* CARDS */


.grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;

}



.connect-card{

    background:white;
    padding:28px;
    border-radius:25px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}


.connect-card:hover{

    transform:translateY(-5px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.1);

}



.connect-card h2{

    margin-bottom:15px;

}


.connect-card p{

    color:#64748b;
    line-height:1.6;
    margin-bottom:20px;

}





/* ICON */


.icon{

    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:28px;
    font-weight:bold;

    background:#eff6ff;
    margin-bottom:18px;

}



.whatsapp{

    background:#25d366;
    color:white;

}


.facebook{

    background:#1877f2;
    color:white;

}





/* POPUP */


.popup{

    display:none;
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    justify-content:center;
    align-items:center;

    z-index:999;

}



.popup-box{

    background:white;
    width:420px;
    max-width:90%;

    padding:35px;

    border-radius:25px;

    text-align:center;

}



.close{

    float:right;
    font-size:30px;
    cursor:pointer;

}





/* COPYRIGHT */


.copyright{

    margin-top:60px;
    padding:25px 0;

    text-align:center;

    color:#64748b;

    border-top:1px solid #e2e8f0;

    font-size:14px;

}





/* MOBILE */


@media(max-width:900px){


.sidebar{

    width:100%;
    height:auto;

    position:relative;

}


body{

    display:block;

}



.main{

    margin-left:0;
    width:100%;
    padding:20px;

}


.stats{

    grid-template-columns:repeat(2,1fr);

}



}



@media(max-width:600px){


header{

    flex-direction:column;
    align-items:flex-start;
    gap:20px;

}


.stats{

    grid-template-columns:1fr;

}


.grid{

    grid-template-columns:1fr;

}



.sidebar{

    padding:20px;

}


header h1{

    font-size:25px;

}


}




/* Sidbae ******************* */

/* Mobile Menu */

.menu-btn{
    display:none;
    border:none;
    background:#0067ff;
    color:white;
    font-size:24px;
    width:45px;
    height:45px;
    border-radius:10px;
    cursor:pointer;
}

.overlay{
    display:none;
}

@media (max-width:768px){

body{
    display:block;
}

.sidebar{

    position:fixed;
    left:-270px;
    top:0;

    width:260px;
    height:100vh;

    z-index:1000;

    transition:.3s;
}

.sidebar.show{

    left:0;

}

.overlay{

    display:none;
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.4);

    z-index:999;

}

.overlay.show{

    display:block;

}

.main{

    margin-left:0;
    width:100%;
    padding:18px;

}

.menu-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

}

header{

    gap:15px;

}

.stats{

    grid-template-columns:1fr;
}

.grid{

    grid-template-columns:1fr;
}

}