
/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

    .hero-section h1 {
        color: var(--primary-navy);
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--text-muted);
    }

.hero-stats .stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hero-stats .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Expertise Section */
.expertise-section {
    background-color: var(--white);
}

.expertise-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

    .expertise-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-orange);
    }

.expertise-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    flex-shrink: 0;
}

    .expertise-icon img {
        width: 75px;
        height: 75px;
        object-fit: cover;
        border-radius: 10px;
    }

.expertise-content h3 {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .expertise-features li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        color: var(--text-muted);
    }

.expertise-content .btn {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

    .expertise-content .btn:hover {
        background-color: var(--primary-navy);
        color: white;
    }

/* Technologies Section */
.technologies-section h2 {
    color: var(--primary-navy);
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-orange);
    }

.tech-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    display: inline-block;
}

.tech-card h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Certifications Section */
.certifications-section h2 {
    color: var(--primary-navy);
}

.cert-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

    .cert-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-orange);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

.cert-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.cert-card h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Case Examples Section */
.case-examples-section h2 {
    color: var(--primary-navy);
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .case-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .case-content h4 {
        color: var(--primary-navy);
        font-weight: 600;
        margin-bottom: 1rem;
    }

.case-results {
    list-style: none;
    padding: 0;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

    .case-results li {
        margin-bottom: 0.5rem;
        color: var(--text-muted);
        font-size: 0.95rem;
    }

        .case-results li strong {
            color: var(--primary-orange);
            font-weight: 700;
        }

/* Industries Served Section */
.industries-served-section h2 {
    color: var(--primary-navy);
}

.industry-badge {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .industry-badge:hover {
        border-color: var(--primary-orange);
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .industry-badge i {
        font-size: 2.5rem;
        color: var(--primary-navy);
        display: block;
        margin-bottom: 1rem;
    }

    .industry-badge span {
        color: var(--primary-navy);
        font-weight: 600;
        font-size: 1rem;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1a2e 100%);
    color: white;
}

    .cta-section h2 {
        color: white;
    }

.cta-buttons .btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    padding: 0.75rem 2rem;
    font-weight: 600;
}

    .cta-buttons .btn-primary:hover {
        background-color: #d97706;
        border-color: #d97706;
    }

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

    .cta-buttons .btn-outline-primary:hover {
        background-color: white;
        color: var(--primary-navy);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .expertise-card {
        flex-direction: column;
    }

    .expertise-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .expertise-icon,
    .tech-icon {
        font-size: 2rem;
    }
}
