/* ===========================
   GOOGLE FONT
=========================== */

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

body{
    background:#f3f6fb;
    color:#222;
}

/* ===========================
NAVBAR
=========================== */

nav{
    width:100%;
    height:75px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.logo h2{
    color:#2563eb;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#555;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

.right-nav{
    display:flex;
    align-items:center;
    gap:25px;
}

.notif{
    position:relative;
    font-size:23px;
    cursor:pointer;
}

.notif span{
    position:absolute;
    top:-8px;
    right:-10px;
    background:red;
    color:white;
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:10px;
}

.profile{
    position:relative;
}

#profileBtn{
    border:none;
    background:#2563eb;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

.dropdown{
    position:absolute;
    right:0;
    top:60px;
    background:white;
    width:220px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:none;
    overflow:hidden;
}

.dropdown p{
    padding:12px 20px;
}

.dropdown a{
    display:block;
    padding:12px 20px;
    text-decoration:none;
    color:#444;
    transition:.3s;
}

.dropdown a:hover{
    background:#f5f5f5;
}

.dropdown.show{
    display:block;
}

/* ===========================
HERO
=========================== */

.hero{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:white;
    padding:60px;
}

.hero h1{
    font-size:40px;
}

.hero p{
    margin-top:10px;
    opacity:.9;
}

/* ===========================
DASHBOARD
=========================== */

.dashboard{
    width:90%;
    margin:35px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:white;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h1{
    color:#2563eb;
    margin:15px 0;
}

.card h2{
    color:#2563eb;
    margin-top:15px;
}

.card p{
    color:#777;
}

/* ===========================
MAIN CONTAINER
=========================== */

.container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.left,
.right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.box{
    background:white;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.box h2{
    margin-bottom:20px;
}

/* ===========================
CALENDAR
=========================== */

#calendar{
    min-height:650px;
}

/* ===========================
TIME SLOT
=========================== */

.time-slots{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.time-slots button{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:white;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.time-slots button:hover{
    background:#1d4ed8;
}

/* ===========================
FORM
=========================== */

label{
    display:block;
    margin-top:18px;
    margin-bottom:6px;
    font-weight:600;
}

input,
textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px;
    outline:none;
    font-size:14px;
}

textarea{
    resize:none;
    height:110px;
}

.book-btn{
    width:100%;
    margin-top:20px;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#22c55e;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.book-btn:hover{
    background:#16a34a;
}

/* ===========================
PROGRESS
=========================== */

.progress-bar{
    width:100%;
    height:12px;
    background:#ddd;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:12px;
}

.progress-fill{
    width:80%;
    height:100%;
    background:#22c55e;
}

.milestone{
    margin-top:25px;
}

.milestone div{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.green{
    color:#22c55e;
    font-weight:600;
}

.orange{
    color:#f59e0b;
    font-weight:600;
}

.verify{
    margin-top:20px;
}

.verified{
    margin-top:12px;
    background:#22c55e;
    color:white;
    display:inline-block;
    padding:8px 15px;
    border-radius:8px;
}

/* ===========================
TABLE
=========================== */

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#2563eb;
    color:white;
    padding:12px;
}

table td{
    padding:12px;
    text-align:center;
    border-bottom:1px solid #eee;
}

/* ===========================
FULLCALENDAR
=========================== */

.fc-toolbar-title{
    font-size:22px !important;
}

.fc-button{
    background:#2563eb !important;
    border:none !important;
}

.fc-daygrid-day:hover{
    background:#eff6ff;
    cursor:pointer;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1100px){

.dashboard{
    grid-template-columns:repeat(2,1fr);
}

.container{
    grid-template-columns:1fr;
}

}

@media(max-width:700px){

nav{
    padding:20px;
    flex-wrap:wrap;
    height:auto;
    gap:15px;
}

nav ul{
    display:none;
}

.dashboard{
    grid-template-columns:1fr;
}

.hero{
    padding:35px;
}

.hero h1{
    font-size:30px;
}

.time-slots{
    grid-template-columns:1fr;
}

}