
/* Services Section */
.services {
    width: 100%;
    padding:  80px 20px;
    background-color: #f8f8f8;
}

.services__container {
    max-width: 1400px;
    margin: 0 auto;
}

.services__title {
    font-size: clamp(2.5rem, 5vw, 3. 5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
}

/* Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: #fff;
    border:  1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform:  translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect - Black Border */
.service-card:hover {
    border-color:  #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Number Badge */
.service-card__number {
    width: 45px;
    height: 45px;
    background-color: #000;
    color: #fff;
    border-radius:  8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight:  700;
    margin-bottom: 20px;
}

/* Card Title */
.service-card__title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Card Description */
.service-card__description {
    font-size:  clamp(0.95rem, 1.2vw, 1.05rem);
    color: #666;
    line-height: 1.7;
}

/* Staggered Animation Delays */
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay:  0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        padding: 60px 20px;
    }
    
    .services__title {
        margin-bottom: 60px;
    }
    
    .services__grid {
        gap: 25px;
    }
    
    .service-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 15px;
    }
    
    .services__title {
        margin-bottom: 50px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 15px;
    }
    
    .services__title {
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card__number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}