/* What We Do Detail Page Custom CSS */
.whatwedo-detail-header {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.whatwedo-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.whatwedo-detail-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.whatwedo-detail-header__title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.whatwedo-detail-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatwedo-detail-breadcrumb li {
    color: #ffffff;
    font-size: 16px;
}

.whatwedo-detail-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatwedo-detail-breadcrumb li a:hover {
    color: #f5a425;
}

.whatwedo-detail-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #ffffff;
}

.whatwedo-detail-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.whatwedo-detail-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.whatwedo-detail-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.whatwedo-detail-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.whatwedo-detail-image:hover img {
    transform: scale(1.05);
}

.whatwedo-detail-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.whatwedo-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.whatwedo-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.whatwedo-detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.whatwedo-detail-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.whatwedo-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f5a425;
}

.whatwedo-detail-sidebar {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.whatwedo-detail-sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5a425;
    color: #222;
}

.whatwedo-detail-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatwedo-detail-sidebar-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.whatwedo-detail-sidebar-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.whatwedo-detail-sidebar-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.whatwedo-detail-sidebar-list li a:hover {
    color: #f5a425;
}

.whatwedo-detail-sidebar-list li a i {
    margin-right: 10px;
    color: #f5a425;
}

.whatwedo-detail-cta {
    background-color: #f5a425;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.whatwedo-detail-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.whatwedo-detail-cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.whatwedo-detail-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #f5a425;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatwedo-detail-cta-btn:hover {
    background-color: #222;
    color: #ffffff;
}

.whatwedo-detail-progress {
    margin-top: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.whatwedo-detail-progress-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.whatwedo-detail-progress-bar {
    height: 10px;
    background-color: #e9e9e9;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.whatwedo-detail-progress-bar-fill {
    height: 100%;
    background-color: #f5a425;
    border-radius: 5px;
}

.whatwedo-detail-progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.whatwedo-detail-progress-stat {
    text-align: center;
}

.whatwedo-detail-progress-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #f5a425;
    margin-bottom: 5px;
}

.whatwedo-detail-progress-stat-label {
    font-size: 14px;
    color: #666;
}

@media (max-width: 991px) {
    .whatwedo-detail-header__title {
        font-size: 36px;
    }
    
    .whatwedo-detail-title {
        font-size: 30px;
    }
    
    .whatwedo-detail-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .whatwedo-detail-header {
        padding: 80px 0;
    }
    
    .whatwedo-detail-header__title {
        font-size: 28px;
    }
    
    .whatwedo-detail-title {
        font-size: 24px;
    }
    
    .whatwedo-detail-content {
        padding: 25px;
    }
}
