/* Our Services Section Styling */
.services-section {
    padding: 80px 0;
    background-color: #fcfdfe;
    font-family: 'Inter', sans-serif;
}

.services-container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-header h2 span {
    color: #28a745;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-img-wrapper {
    width: 100%;
    height: 200px;
    background: #f0f4f8;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Custom Read More Button - Styled per Sample */
.btn-read-more-wrapper {
    position: relative;
    width: fit-content;
    margin-top: auto;
}

.btn-read-more-bg {
    position: absolute;
    top: 5px;
    left: -5px;
    width: 100%;
    height: 100%;
    background: #28a745; /* Green background */
    border-radius: 4px;
    z-index: 1;
}

.btn-read-more {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    background: #1a1a1a; /* Dark top part */
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); /* Skewed trapezoid shape */
    transition: transform 0.2s ease;
}

.btn-read-more-wrapper:hover .btn-read-more {
    transform: translate(-3px, -3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
