/* ========================================
   BORU SERVICES SECTION
   ======================================== */

.boru-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

/* Service Card */
.boru-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #4ECDC4;
    display: flex;
    flex-direction: column;
}

.boru-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Icon */
.boru-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ECDC4, #45B7AA);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s;
}

.boru-service-card:hover .boru-service-icon {
    transform: scale(1.1);
}

/* Service Title */
.boru-service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

/* Service Description */
.boru-service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Service Features List */
.boru-service-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.boru-service-features li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.boru-service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4ECDC4;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .boru-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 80px auto;
    }
}

@media (max-width: 480px) {
    .boru-services-grid {
        margin: 60px auto;
        padding: 0 15px;
    }

    .boru-service-card {
        padding: 30px 20px;
    }

    .boru-service-card h3 {
        font-size: 20px;
    }

    .boru-service-card p {
        font-size: 15px;
    }

    .boru-service-features li {
        font-size: 14px;
    }
}