/* Services Pages Styles */

/* Page Background */
body {
    background: var(--dark-color);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
    min-height: 100vh;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-dark);
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Content Card */
.content-card {
    border-left: 4px solid var(--primary-color);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-dark);
}

/* Content Text */
.content-text {
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Info Card for Contact Page */
.info-card {
    border-left: 4px solid var(--primary-color);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-dark);
    transition: transform 0.2s ease-in-out;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark-lg);
}

/* Animation */
.animate__fadeInUp {
    animation-duration: 0.6s;
}

/* Services specific card styling */
.services-content .card {
    transition: transform 0.2s ease-in-out;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-dark);
}

.services-content .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark-lg);
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation Delay */
.animate__delay-1s {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 2rem !important;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}
