/* Services Section */
.services-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 70px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 189, 200, 0.9) 0%, rgba(90, 172, 183, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.service-card:hover .service-overlay i {
    transform: scale(1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.service-features li {
    font-size: 0.95rem;
    color: #4496a6;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #6dbdc8;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .service-content h3 {
        font-size: 1.3rem;
    }
}
