@charset "UTF-8";

/* =========================================
   Home / Landing Page Styles
   Target: index.jsp
   ========================================= */

.main-container {
    padding-top: 30px;
    padding-bottom: 50px;
    max-width: 1140px;
    /* Reduced further from 1260px (~10%) */
}

/* --- Dashboard Cards (Notice/News) --- */
.dash-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    margin-bottom: 20px;
    background: white;
    height: 100%;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dash-header {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dash-header i {
    color: #0d47a1;
    margin-right: 5px;
}

.dash-list {
    padding: 10px 15px;
    min-height: 150px;
}

.dash-list table {
    width: 100%;
}

.dash-list td {
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.9rem;
}

.dash-list tr:last-child td {
    border-bottom: none;
}

.dash-list a {
    color: #555;
    text-decoration: none;
}

.dash-list a:hover {
    color: #073a7e;
    font-weight: 500;
}

/* --- Business Service Cards --- */
.service-card {
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    padding: 30px 15px;
    height: 100%;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #073a7e 0%, #052c65 100%);
    color: white;
    border-color: transparent;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #073a7e;
    transition: color 0.3s;
}

.service-card:hover .icon {
    color: white;
}

.service-title {
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- Partners Section --- */
.partner-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    background: white;
}

.partner-img {
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
}

.partner-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-item img {
    border-radius: 10px;
}