/* Services Section */
.services-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0984e3, #26de81); /* Logo gradient theme */
    color: #ffffff;
}

.services-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #0984e3, #26de81);
}

.service-card img {
    width: 100%;
    height: auto;         /* Full poster height */
    display: block;
    object-fit: contain;   /* Prevent cropping */
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(38, 222, 129, 0.45);
}

.service-card:hover img {
    transform: scale(1.02); /* subtle zoom */
}

/* Responsive */
@media (max-width: 992px) {
    .services-section { padding: 60px 20px; }
    .service-card { margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
}
