/* ========================================= */
/* BOOTSTRAP 3 TO MODERN UI UPGRADE PATCH    */
/* ========================================= */

/* Soft Background for whole site */
body.layout-top-nav {
    background-color: #f8f9fa !important;
}

/* Modern Card Design (Replaces old .box) */
.modern-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.modern-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.modern-card-header {
    background: #1e293b; /* Dark sleek header */
    padding: 40px 20px;
    border-bottom: 4px solid #f26520; /* Orange accent */
    color: #ffffff;
}

.modern-card-body {
    padding: 40px;
}

/* Typography Improvements */
h2.modern-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.modern-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* Highlighted Contact Box */
.modern-contact-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
}

.modern-contact-box ul {
    list-style: none;
    padding-left: 0;
}

.modern-contact-box ul li {
    font-size: 16px;
    color: #334155;
    margin-bottom: 12px;
}

.modern-contact-box i {
    color: #f26520;
    margin-right: 10px;
    font-size: 18px;
}