/* =====================================================
   emergiTEL Cyber Security Awareness Training
   Version 3
   July 15, 2026
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f8fb;

    color:#222;

    overflow-x:hidden;

}

/*==============================
HEADER
==============================*/

.top-header{

    height:80px;

    background:#ffffff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    position:fixed;

    top:0;

    left:0;

    right:0;

    z-index:999;

}

.logo-section{

    display:flex;

    align-items:center;

}

.company-logo{

    width:170px;

    margin-right:20px;

}

.company-title h1{

    color:#0066b3;

    font-size:26px;

    font-weight:700;

}

.company-title p{

    color:#777;

    font-size:14px;

}

/*==============================
BUTTON
==============================*/

.themeButton{

    background:#0099d8;

    color:white;

    border:none;

    padding:12px 24px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.themeButton:hover{

    background:#0079b3;

}

/*==============================
SIDEBAR
==============================*/

.sidebar{

    position:fixed;

    top:80px;

    left:0;

    width:250px;

    height:100%;

    background:#0c4d7a;

    color:white;

    padding-top:30px;

}

.sidebar ul{

    list-style:none;

}

.sidebar li{

    padding:18px 30px;

    cursor:pointer;

    font-size:17px;

    transition:.3s;

}

.sidebar li:hover{

    background:#0088cc;

}

.sidebar .active{

    background:#0099d8;

}

/*==============================
MAIN CONTENT
==============================*/

.main-content{

    margin-left:250px;

    margin-top:90px;

    padding:40px;

}

/*==============================
HERO
==============================*/

.hero{

    display:flex;

    justify-content:space-between;

    gap:40px;

    margin-bottom:50px;

}

.hero-left{

    width:60%;

}

.hero-left h2{

    font-size:42px;

    color:#0066b3;

    margin-bottom:10px;

}

.hero-left h3{

    font-size:28px;

    margin-bottom:20px;

    color:#222;

}

.hero-left p{

    line-height:1.8;

    font-size:18px;

    color:#555;

}

/*==============================
START BUTTON
==============================*/

.primaryButton{

    margin-top:30px;

    background:#00a651;

    color:white;

    border:none;

    padding:18px 40px;

    border-radius:10px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.primaryButton:hover{

    background:#008c44;

}

/*==============================
WELCOME CARD
==============================*/

.welcome-card{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.welcome-card h3{

    margin-bottom:20px;

    color:#0066b3;

}

.welcome-card li{

    margin-bottom:14px;

}

/*==============================
DASHBOARD
==============================*/

.dashboard{

    margin-top:50px;

}

.dashboard h2{

    margin-bottom:30px;

    color:#0066b3;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.card{

    background:white;

    border-radius:15px;

    padding:30px;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h1{

    font-size:42px;

    margin:15px 0;

    color:#0099d8;

}

.card h3{

    color:#0c4d7a;

}

/*==============================
PROGRESS
==============================*/

#progressCircle{

    width:120px;

    height:120px;

    background:#00a651;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin:20px auto;

}

/*==============================
FOOTER
==============================*/

footer{

    margin-top:70px;

    text-align:center;

    color:#777;

    padding:30px;

}
/* ==============================
   TRAINING MODULE
==============================*/

.training-module{

    margin-top:50px;

}

.module-card{

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.module-card h1{

    color:#0066b3;

    margin-bottom:20px;

}

.module-card h2{

    color:#00a651;

}

.module-card ul{

    margin-top:20px;

    margin-bottom:30px;

}

.module-card li{

    margin-bottom:12px;

    font-size:18px;

}
/* Sidebar Links */

.sidebar a{

    color:white;

    text-decoration:none;

    display:block;

    width:100%;

}

.sidebar li:hover{

    background:#3498db;

}

.sidebar li.active{

    background:#3498db;

}