/*====================================================
NOTIFICATIONS.CSS
AMROS PROJECTS LLP
======================================================*/

/* Notifications Info Section */
.notifications-section {
    padding: 60px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #eaf4ff;
    color: #005BAA;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Search and Filter Box */
.filter-box {
    background: #f8fbfd;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #e5edf5;
    margin-bottom: 40px;
}

.filter-box .form-control,
.filter-box .form-select {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e5edf5;
    background: #fff;
    font-size: 14px;
}

/* Notification Item Cards */
.notification-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e8eef5;
    margin-bottom: 25px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.notification-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #e8eef5;
    transition: 0.3s;
}

.notification-card.featured::before {
    background: #005BAA;
}

.notification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: #005BAA;
}

.notification-card:hover::before {
    background: #0A84FF;
    width: 6px;
}

.notification-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.noti-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-update {
    background: #eaf4ff;
    color: #005BAA;
}

.badge-alert {
    background: #fef3c7;
    color: #d97706;
}

.badge-event {
    background: #ecfdf5;
    color: #059669;
}

.noti-date {
    font-size: 13px;
    color: #98a2b3;
    font-weight: 500;
}

.noti-date i {
    margin-right: 5px;
}

.notification-card h3 {
    font-size: 20px;
    color: #081c34;
    margin-bottom: 12px;
    line-height: 1.4;
}

.notification-card p {
    font-size: 15px;
    color: #667085;
    margin-bottom: 20px;
    line-height: 1.7;
}

.noti-link {
    font-weight: 600;
    font-size: 14px;
    color: #005BAA;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.noti-link:hover {
    color: #0A84FF;
    gap: 10px;
}

/* Sidebar Box */
.sidebar-box {
    background: #f8fbfd;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #e8eef5;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.sidebar-box h3 {
    font-size: 22px;
    color: #081c34;
    margin-bottom: 15px;
    border-bottom: 2px solid #e8eef5;
    padding-bottom: 12px;
}

.sidebar-box p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 25px;
}

.sidebar-box .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5edf5;
    background: #fff;
    margin-bottom: 15px;
}

.btn-primary-custom {
    padding: 14px 28px;
    background: linear-gradient(135deg, #005BAA, #0A84FF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    justify-content: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 91, 170, 0.2);
    color: #fff;
}
