.services-section {
    /* padding: 90px 0; */
    /* background: #f8f9fc; */
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.services-header p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
}

/* Accent Border */
.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d224a, #f4ba18);
}

/* Hover */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(13,34,74,0.25);
}

/* Icon */
.service-icon {
    width: 85px;
    height: 85px;
    background: rgba(13,34,74,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: #0d224a;
}

.service-icon i {
    font-size: 34px;
    color: #0d224a;
    transition: color 0.4s;
}

.service-card:hover .service-icon i {
    color: #f4ba18;
}

/* Text */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 32px;
    }
}
