/* Root Variables */
:root {
    --primary-color: #1a2b4a;
    --primary-dark: #0f1829;
    --accent-color: #ff8c42;
    --accent-hover: #ff7425;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-muted);
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 100px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

    .process-step:last-child {
        margin-bottom: 0;
    }

    .process-step::before {
        content: "";
        position: absolute;
        left: -68px;
        top: 50px;
        width: 2px;
        height: calc(100% + 3rem);
        background: var(--accent-color);
        opacity: 0.3;
    }

    .process-step:last-child::before {
        display: none;
    }

.step-number {
    position: absolute;
    left: -100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
}

    .step-content h4 {
        color: var(--primary-color);
        font-weight: bold;
        margin-bottom: 0.75rem;
    }

    .step-content p {
        color: var(--text-muted);
        margin: 0;
    }

/* Benefits Cards */
.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Case Study Cards */
.case-study-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

    .case-study-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.case-image {
    overflow: hidden;
    height: 200px;
}

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.case-study-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 1.5rem;
}

.case-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.case-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.case-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .case-results li {
        color: var(--text-dark);
        padding: 0.25rem 0;
        font-size: 0.95rem;
    }

    .case-results i {
        color: var(--accent-color);
        margin-right: 0.5rem;
    }

/* Technologies */
.tech-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .tech-card i {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 0.75rem;
    }

    .tech-card p {
        margin: 0;
        font-weight: 600;
        color: var(--primary-color);
    }

/* Industry Badges */
.industry-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

    .industry-badge:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }

    .industry-badge i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .industry-badge span {
        font-weight: 600;
        color: var(--primary-color);
    }

/* Related Services */
.related-service-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

    .related-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .related-service-card i {
        font-size: 3rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
    }

    .related-service-card h4 {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .related-service-card p {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
    }

    .cta-section .container {
        position: relative;
        z-index: 1;
    }

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
}

    .footer h5 {
        color: var(--accent-color);
    }

    .footer a {
        color: var(--text-muted);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer a:hover {
            color: var(--accent-color);
        }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

/* Responsive Design */
@media (max-width: 991px) {
    .process-timeline {
        padding-left: 80px;
    }

    .step-number {
        left: -80px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-step::before {
        left: -55px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .hero-stat {
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .process-timeline {
        padding-left: 0;
    }

    .step-number {
        position: static;
        margin: 0 auto 1rem;
    }

    .process-step::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
