﻿
/* NAVBAR BRAND - FIXED LOGO FIT */
.brand-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-decoration: none;
}

    .brand-nav img {
        max-height: 44px; /* controls height */
        max-width: 120px; /* controls width */
        width: auto;
        height: auto;
        object-fit: contain; /* prevents distortion */
    }

    .brand-nav span {
        color: #3b4999;
        font-size: 30px;
        white-space: nowrap;
        font-weight:900;
    }
 

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(180deg, #020617, #020617);
    color: #cbd5f5;
    padding: 80px 0 30px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* BRAND */
.footer-brand .brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

    .footer-brand .brand-title img {
        height: 36px;
        width: auto;
    }

.footer-brand small {
    display: block;
    margin-bottom: 15px;
    color: #94a3b8;
}

/* DESCRIPTION */
.footer-desc {
    margin: 15px 0 20px;
    color: #94a3b8;
    line-height: 1.6;
}

/* CONTACT */
.footer p {
    margin: 6px 0;
    color: #94a3b8;
}

    .footer p i {
        margin-right: 8px;
        color: #6366f1;
    }

/* LINKS */
.footer h5 {
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer a {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer a:hover {
        color: #ffffff;
    }

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-size: 14px;
}
/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(180deg, #020617, #020617);
    color: #cbd5f5;
    padding: 80px 0 30px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}


/* ================= BRAND ================= */
.footer-brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* Logo box */
.footer-logo-wrap {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrap img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Brand text */
.footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
}

.footer-brand-tagline {
    font-size: 13px;
    color: #c7d2fe;
    margin-top: 2px;
}

/* Description */
.footer-desc {
    margin: 15px 0 20px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Contact */
.footer p {
    margin: 6px 0;
    color: #94a3b8;
}

.footer p i {
    margin-right: 8px;
    color: #6366f1;
}

/* ================= COMPANY LINKS ================= */
.footer-links-col h5 {
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-box {
        justify-content: center;
    }
}
/* ===== NOTIFICATION SYSTEM ===== */

.notification-bell {
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.notification-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Overlay background */
.notification-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 9998;
}

/* Slide panel */
.notification-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
}

    .notification-panel.open {
        right: 0;
    }

/* Header */
.panel-header {
    padding: 18px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .panel-header button {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

/* Body */
.panel-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

/* Notification card */
.notify-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 14px;
    margin-bottom: 12px;
}

.notify-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3b4999;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-title {
    font-weight: 700;
    font-size: 14px;
}

.notify-msg {
    font-size: 13px;
    color: #475569;
}

