/* Custom Styles for Homepage Consistency */

/* Unified Dark Theme for FAQ, Support, and Testimonials */
.bg-dark-blue {
    background-color: #0d2436 !important; /* Deep navy blue */
}

/* Ensure seamless transition */
.section-unified-dark {
    background-color: #0d2436;
}

.testimonial-dark-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-dark-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

/* Enterprise Services - Clean List Style */
.service-list-item {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.service-list-item:hover {
    background-color: #fff;
    border-color: rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(21, 101, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.service-icon-wrapper i {
    font-size: 22px;
    color: #1565D8;
}

.service-content {
    flex-grow: 1;
    text-align: left;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #183b56;
    margin-bottom: 10px;
    font-family: 'hk_groteskbold', sans-serif;
}

.service-desc {
    font-size: 15px;
    color: #5a7184;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'OpenSans', sans-serif;
}
