/* Services Page Styles */

.services-hero {
    background: #f0faf5;
    position: relative;
    overflow: hidden;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    color: #2c3e50;
}

.services-hero p.lead {
    color: #6c757d;
}

.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Core Services */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    text-align: center;
}

.service-card h4 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-cta {
    margin-top: auto;
}

.service-cta .btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Service Process */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d5a, #4caf50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(46, 125, 90, 0.3);
}

.process-step h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Specialized Programs */
.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-header {
    border-radius: 0;
}

.program-header h4 {
    margin: 0;
    font-weight: 600;
}

.program-body {
    flex-grow: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Technology Section */
.tech-features {
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #4a5568;
}

.tech-feature i {
    font-size: 1.3rem;
}

.platform-preview {
    border: 3px solid #f7fafc;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #2e7d5a;
    background-color: #f0faf5;
}

.feature-item i {
    font-size: 1.5rem;
    display: block;
}

.feature-item small {
    color: #4a5568;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #f0faf5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .tech-feature {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 3rem 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .hero-badges .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .program-card {
        margin-bottom: 1rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.program-card,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
}