/* ==================== Services Page Section ==================== */
.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-main-title {
   
    color: var(--text-title);
    letter-spacing: 0.5px;
}

.services-main-desc {
  
    line-height: 1.7;
    color: var(--text-body);

    margin: 0 auto;
}

.service-card {
    background-color: #e0e9e7;
    border: none;
    border-radius: 8px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.service-card-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-title);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-card-text {

    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-main-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}
