
/* Modern Features Styling */

#fh5co-sidebar .fh5co-nav-links {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
}

#fh5co-sidebar .fh5co-nav-links h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

#fh5co-sidebar .fh5co-nav-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#fh5co-sidebar .fh5co-nav-links ul li {
    margin-bottom: 5px;
}

#fh5co-sidebar .fh5co-nav-links ul li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #666;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#fh5co-sidebar .fh5co-nav-links ul li a img {
    width: 28px;
    height: 28px;
    margin-top: 12px;
    margin-right: 12px;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#fh5co-sidebar .fh5co-nav-links ul li a span {
    font-size: 15px;
    line-height: 1.4;
}

#fh5co-sidebar .fh5co-nav-links ul li a:hover {
    background: #f8f9fa;
    color: #007bff;
}

#fh5co-sidebar .fh5co-nav-links ul li.active a {
    background: #e7f1ff;
    color: #007bff;
    font-weight: 600;
}

#fh5co-sidebar .fh5co-nav-links ul li.active a img,
#fh5co-sidebar .fh5co-nav-links ul li a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Content Area Styling */
#fh5co-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    min-height: 500px;
    transition: opacity 0.3s ease;
}

#fh5co-content h2 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #222;
}

#fh5co-content h2 img {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.feature-row {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
}

.feature-row p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}

.feature-row img {
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sidebar Awards */
.fh5co-side-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
}

.fh5co-side-section h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.fh5co-side-section img {
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.fh5co-side-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.content-loading .loading-spinner {
    display: block;
}
