/* services-pages.css - Shared CSS for all service pages */
:root {
    --primary: #1a5276;
    --secondary: #2e86c1;
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: var(--primary);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 12px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
}

/* Service Page Hero */
.service-hero {
    background: linear-gradient(rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.95)), 
                url('https://images.unsplash.com/photo-1581094794329-cd6d5d3c3c95?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Service Content Sections */
.service-content {
    padding: 80px 0;
}

.service-section {
    margin-bottom: 60px;
}

.service-section h2 {
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Technology Showcase */
.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Back to Services */
.back-to-services {
    margin-bottom: 40px;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

/* Footer */
.service-footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-section h2 {
        font-size: 1.6rem;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
}