/* Expertise Pages Styles */

/* Hero Section */
.expertise-hero {
    background-color: #002B49;
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
}

/* Remove any overlay or pattern */
.expertise-hero::before {
    display: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb i {
    font-size: 0.8rem;
    color: white;
}

.breadcrumb span {
    color: white;
}

.expertise-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    color: white;
}

/* Services Grid */
.services {
    padding: 6rem 0;
    background-color: var(--light-background);
}

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

.service-card {
    background: #002B49;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #002B49, #002B49);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 43, 73, 0.3);
    background: #002B49;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #002B49, #002B49);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Case Studies */
.case-studies {
    padding: 6rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #002B49, #002B49);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 43, 73, 0.15);
}

.case-study:hover::after {
    transform: scaleX(1);
}

.case-study h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.case-study p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Expertise CTA */
.expertise-cta {
    padding: 6rem 0;
    background: #002B49;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.expertise-cta::before {
    display: none;
}

.expertise-cta .cta-content {
    position: relative;
    z-index: 1;
}

.expertise-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.expertise-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-hero {
        padding: 6rem 0 3rem;
    }

    .expertise-hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .case-study {
        padding: 2rem;
    }

    .expertise-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .expertise-hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
} 