/* =========================
   APARADE.LK PREMIUM UI
========================= */

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

body{
    background:#f5f7fb;
    color:#222;
    min-height:100vh;
    padding-top:60px;
    flex-direction:column;
}


/* HEADER */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background:#fff;

border-bottom:1px solid #e5e5e5;

box-shadow:0 2px 10px rgba(0,0,0,.08);

    transition: all .35s ease;
}


.header .container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:9px 40px;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#222;
    font-size:28px;
    font-weight:bold;
}

.logo img{
    width:55px;
    margin-right:10px;
}

.navbar{
    display:flex;
    gap:30px;
}

.navbar a{
    color:#222;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#ff6b00;
}

.navbar a:last-child{
    margin-right:30px;
}

.header-right{
    display:flex;
    gap:12px;
}

.login-btn,
.register-btn{
    padding:10px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.login-btn{
    background:#34c759;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.login-btn:hover{
    background:#28a745;
}

.register-btn{
    background:#ff6b00;
    color:#fff;
}




/* ==========================================
             FOOTER
========================================== */

.footer{
    background:#1f2937;
    color:#fff;
    padding:60px 30px 25px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:18px;
}

.footer-logo{
    width:60px;
    margin-bottom:15px;
}

.footer-box p{
    color:#d1d5db;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#ff6b00;
    padding-left:6px;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.social-links{
    display:flex;
    gap:18px;
}

.social-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    color:#ff6b00;
}




.notification-icon{

    position: relative;

    font-size: 24px;

    text-decoration: none;

    margin-right: 15px;

    color: #333;

}

.notification-count{

    position: absolute;

    top: -8px;

    right: -10px;

    background: red;

    color: white;

    font-size: 11px;

    min-width: 18px;

    height: 18px;

    border-radius: 50%;

    display: none;

    align-items: center;

    justify-content: center;

    font-weight: bold;

}