/* ===================================================
   Services Banner - Crisp Light Theme Override
   =================================================== */

.hr-services-banner-light {
    background-color: #D9E6FF; 
    padding: 80px 0;
    /* Adds a subtle line to separate it from the dark section below */
    border-bottom: 1px solid #e5e7eb; 
    position: relative;
    z-index: 0;
}

/* Section Title Styling */
.services-title-wrap-light {
    margin-bottom: 50px;
}

.accent-subtitle-light {
    color: #c5a059; /* Keeps the gold accent from the dark theme */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.services-title-light {
    color: #111827; /* Very dark gray/almost black for high contrast */
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 850px;
    margin: 0 auto;
}

/* Cards Layout */
.services-card-grid-light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual CTA Card - Light */
.service-cta-card-light {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 40px 30px;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    display: block;
    position: relative;
    box-shadow: 0 4px 6px -1px rgb(14 52 81), 0 2px 4px -1px rgb(3 12 18)
}

/* Hover Effect: Lift and stronger shadow */
.service-cta-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb;
}

.card-icon-light {
    font-size: 36px;
    color:var(--color-2);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-cta-card-light:hover .card-icon-light {
    color: #c5a059; /* Switches to gold on hover */
}

.service-cta-card-light h3 {
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-cta-card-light p {
    color: #4b5563; /* Medium gray text */
    font-size: 1.2vw;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Button-like Text Link */
.btn-link-light {
    display: inline-block;
    color: #111827;
    font-size: 1.2vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-cta-card-light:hover .btn-link-light {
    color: #c5a059;
}

.btn-link-light i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-cta-card-light:hover .btn-link-light i {
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-card-grid-light {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title-light {
        font-size: 22px;
    }
    
    .hr-services-banner-light {
        padding: 50px 0;
    }
}