/* Services Section Styles - Starry Black & Yellow Theme */
.services {
    padding: 100px 0;
	background: var(--bg-0);
    position: relative;
    overflow: hidden;
}

/* Removed dotted background animation for clean minimalist design */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
	background: rgba(var(--primary-rgb), 0.05);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
	box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.3);
    transition: all 0.4s ease;
	border: 1px solid rgba(var(--primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.2);
	background: rgba(var(--primary-rgb), 0.1);
	border-color: rgba(var(--primary-rgb), 0.4);
}

.service-icon {
    width: 100px;
    height: 100px;
	background: linear-gradient(135deg, var(--secondary), var(--primary), var(--primary-2), var(--secondary));
    background-size: 200% 200%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
	box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
	background: linear-gradient(45deg, var(--primary), var(--primary-2), var(--primary), var(--primary-2), var(--primary));
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.5rem;
	color: var(--primary-contrast);
	text-shadow: 0 2px 10px rgba(var(--black-rgb), 0.3);
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
	color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--subheading);
	font-weight: bold;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
} 