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

.announcement-hero {
    padding: 40px 0 50px;
    background: #f7faff;
}

.announcement-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.announcement-breadcrumb a {
    text-decoration: none;
    color: #6b7280;
}

.announcement-breadcrumb span {
    margin: 0 10px;
    color: #9ca3af;
}

.announcement-breadcrumb .active {
    color: #0d6efd;
    font-weight: 600;
}

.announcement-hero h1 {
    font-size: 58px;
    font-weight: 800;
    color: #0a2540;
    line-height: 1.1;
    margin-top: 20px;
}

.announcement-hero h1 span {
    display: block;
    color: #0d6efd;
}

.announcement-hero p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 25px;
}

/* MINI CARDS */

.announcement-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.announcement-mini-cards .mini-card {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: 0.3s;
}

.announcement-mini-cards .mini-card:hover {
    transform: translateY(-3px);
}

.announcement-mini-cards .mini-card i {
    display: block;
    color: #0d6efd;
    font-size: 22px;
    margin-bottom: 10px;
}

.announcement-mini-cards .mini-card span {
    font-size: 14px;
    font-weight: 600;
}

/* HERO IMAGE */

.hero-image-wrap {
    text-align: center;
}

.hero-image-wrap img {
    max-height: 580px;
}

/* FACT CARD */

.announcement-facts-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8edf7;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.announcement-facts-card .fact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #eef2f8;
}

.announcement-facts-card .fact-item:last-child {
    border-bottom: none;
}

.announcement-facts-card .fact-item i {
    width: 25px;
    font-size: 22px;
    color: #0d6efd;
}

.announcement-facts-card small {
    display: block;
    color: #6b7280;
    font-size: 12px;
}

.announcement-facts-card strong {
    display: block;
    font-size: 22px;
    color: #0a2540;
}

/* ===================================
   LATEST ANNOUNCEMENTS
=================================== */

.latest-announcements {
    background: #fff;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0a2540;
}

.view-all-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.announcement-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08);
}

.notice-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    background: #22c55e;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    padding: 4px 10px;

    border-radius: 20px;
}

.announcement-icon {
    width: 70px;
    height: 70px;

    margin: 15px auto;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.announcement-icon.blue {
    background: #eef4ff;
    color: #0d6efd;
}

.announcement-icon.green {
    background: #eefcf4;
    color: #16a34a;
}

.announcement-icon.purple {
    background: #f5f0ff;
    color: #8b5cf6;
}

.announcement-icon.orange {
    background: #fff6ec;
    color: #f59e0b;
}

.announcement-card h5 {
    min-height: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
}

.announcement-date {
    color: #6b7280;
    margin: 15px 0;
    font-size: 14px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* ===================================
   QUICK CATEGORIES
=================================== */

.quick-categories-section {
    background: #fff;
}

.quick-category-card {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 18px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    height: 100%;
    transition: 0.3s;
}

.quick-category-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08);
}

.quick-category-card i {
    font-size: 34px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.quick-category-card span {
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
}

/* ===================================
   OFFICIAL NOTIFICATIONS
=================================== */

.notifications-card {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.notifications-table {
    margin: 0;
}

.notifications-table thead {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
}

.notifications-table th {
    padding: 18px;
    border: none;
    font-weight: 600;
}

.notifications-table td {
    padding: 18px;
    vertical-align: middle;
}

.notifications-table tbody tr {
    border-bottom: 1px solid #eef2f8;
}

.notifications-table tbody tr:last-child {
    border-bottom: none;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-title i {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #eef5ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.notice-title strong {
    display: block;
    color: #0a2540;
    margin-bottom: 3px;
}

.notice-title small {
    color: #6b7280;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #eef5ff;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.pdf-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* ===================================
   IMPORTANT DATES
=================================== */

.important-dates-section {
    background: #f8fbff;
}

.dates-card {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.date-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.date-timeline::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 30px;
    height: 2px;
    background: #dce6fb;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid #dce6fb;
    color: #4c6fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.timeline-item h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 6px;
}

.timeline-item p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Highlight Current Step */

.timeline-item.active .timeline-icon {
    background: #e9f9ef;
    border-color: #22c55e;
    color: #16a34a;
}

.timeline-item.active p {
    color: #16a34a;
    font-weight: 700;
}

/* ===================================
   DOWNLOADS
=================================== */

.downloads-section {
    background: #fff;
}

.download-card {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.08);
}

.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.download-icon.blue {
    background: #eef5ff;
    color: #0d6efd;
}

.download-icon.green {
    background: #eefcf4;
    color: #16a34a;
}

.download-icon.orange {
    background: #fff6ec;
    color: #f59e0b;
}

.download-icon.purple {
    background: #f5f0ff;
    color: #8b5cf6;
}

.download-card h5 {
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 12px;
}

.download-card p {
    color: #6b7280;
    font-size: 14px;
    min-height: 70px;
}
