/* About Services Section */
.zolar-about-services-section {
    padding: 120px 0 100px 0;
    background-color: #F6F8F7; /* Match screenshot light background */
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

/* Header */
.zolar-about-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.zolar-services-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 15px;
}

.zolar-subtitle-line {
    width: 40px;
    height: 1px;
    background-color: #ccc;
}

.zolar-about-services-heading {
    font-size: clamp(2rem, 1.5vw + 2rem, 3.5rem);
    font-weight: 700;
    color: #161616;
    line-height: 1.2;
    margin: 0;
    font-family: var(--zolar-heading-font, sans-serif);
}

/* Grid */
.zolar-about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.zolar-about-service-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    min-height: 444px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.zolar-about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Background Image */
.zolar-about-service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    z-index: 1;
}

/* Green Overlay */
.zolar-about-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CAE094;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Content */
.zolar-about-service-content {
    position: relative;
    z-index: 3;
}

/* Icon */
.zolar-about-service-icon {
    margin-bottom: 30px;
}

.zolar-about-service-icon img,
.zolar-about-service-icon svg {
    height: 70px;
    width: auto;
    max-width: 100%;
    /* To ensure black SVGs remain black on green */
    filter: brightness(0); 
}

/* Title */
.zolar-about-service-title {
    font-family: "Space Grotesk", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: rgb(22, 22, 22);
    margin: 0 0 15px 0;
}

/* Text */
.zolar-about-service-text {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(22, 22, 22, 0.65);
    margin: 0 0 30px 0;
    transition: color 0.4s ease;
}

/* Button - hidden as requested */
.zolar-about-service-btn {
    display: none;
}

/* --- HOVER EFFECTS --- */
.zolar-about-service-card:hover .zolar-about-service-bg {
    opacity: 1; /* Make background image fully visible */
    transform: scale(1);
}

.zolar-about-service-card:hover .zolar-about-service-overlay {
    opacity: 0.85; /* Semi-transparent green overlay so image shows through */
}

.zolar-about-service-card:hover .zolar-about-service-text {
    color: rgba(22, 22, 22, 0.85); /* Slightly darker for contrast on green */
}

/* Responsive */
@media (max-width: 1024px) {
    .zolar-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zolar-about-services-grid {
        grid-template-columns: 1fr;
    }
    .zolar-about-services-section {
        padding: 60px 0;
    }
    .zolar-about-service-card {
        padding: 40px 30px;
    }
}
