/* ======================= CARDS ======================= */
.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-cards .card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s, opacity 0.8s;
    opacity: 0;
    transform: translateY(20px);
}

.service-cards .card.active {
    opacity: 1;
    transform: translateY(0);
}

.service-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #0d6efd, #ffc107);
    color: #fff;
}

.service-cards .card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
}

/* ======================= HEADERS ======================= */
h1, h2, h3 {
    background: linear-gradient(90deg,#0d6efd,#ffc107);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ======================= LOGO SPIN ======================= */
.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffc107;
    animation: spin 10s linear infinite;
}

.logo-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ======================= FADE-IN ======================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.active { opacity:1; transform:translateY(0); }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 992px) {
    .service-cards { flex-direction: column; align-items: center; }
}
