/* ===================================
   OUR SERVICES SECTION
   =================================== */
.services-section {
    background: #0a0e14;
    padding: 30px 0;
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
}

.services-heading {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 30px !important;
    letter-spacing: 0.02em;
}

.services-heading .highlight {
    color: #FF677E;
    font-weight: 500;
}

/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 103, 126, 0.3);
} */

/* Service Image */
.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;

}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 10px;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Heart Icon */
.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-icon:hover {
    background: #FF677E;
    transform: scale(1.1);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    fill: #FF677E;
    transition: fill 0.3s ease;
}

.service-icon:hover svg {
    fill: white;
}

/* Service Content */
.service-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 17px;
    font-weight: 400 !important;
    color: var(--text-white);
    margin-bottom: 20px !important;
    line-height: 1.4;
    color: #FF677E !important;
    margin-top: 10px !important;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #FF677E;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 10px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-list li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 15px;
    }
}