.service-detail-page {
    color: var(--uv-text-light);
}

.service-hero {
    background: linear-gradient(135deg, rgba(31, 40, 51, 0.95), rgba(11, 12, 16, 0.95));
    border: 1px solid rgba(69, 162, 158, 0.2);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/img/tech-pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.ai-ml-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/img/ai-pattern.svg');
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--uv-primary-color), var(--uv-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.gradient-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--uv-primary-color), var(--uv-secondary-color));
    border-radius: 3px;
}

.section-title {
    color: var(--uv-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--uv-primary-color), var(--uv-secondary-color));
    border-radius: 3px;
}

/* Service Highlight Card */
.service-highlight-card {
    background-color: var(--uv-dark-accent);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(69, 162, 158, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-highlight-card .icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-highlight-card h3 {
    color: var(--uv-light);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.highlight-list {
    list-style-type: none;
    padding-left: 0;
}

.highlight-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--uv-text-light);
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--uv-primary-color);
    font-weight: bold;
}

/* AI-ML Specific Styling */
.ai-ml .icon-container {
    background-color: rgba(155, 89, 182, 0.15); /* Purple */
    color: #9b59b6;
}

.service-area-card {
    background-color: var(--uv-dark-accent);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(69, 162, 158, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-area-card .card-header {
    background-color: rgba(155, 89, 182, 0.15); /* Purple for AI-ML */
    padding: 1.25rem;
    border-bottom: 1px solid rgba(155, 89, 182, 0.3);
}

.service-area-card .card-header h3 {
    margin: 0;
    color: var(--uv-light);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-area-card .card-body {
    padding: 1.5rem;
}

.service-feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--uv-text-light);
    font-size: 0.95rem;
}

.service-feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9b59b6; /* Purple for AI-ML */
    font-size: 1.2rem;
}

/* Case Study Section */
.case-study {
    background-color: var(--uv-dark-accent);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(69, 162, 158, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.case-study-content h3 {
    color: var(--uv-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-study-content h4 {
    color: #9b59b6; /* Purple for AI-ML */
    font-weight: 600;
    font-size: 1.1rem;
}

.achievement-list {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.achievement-list li {
    padding: 0.4rem 0;
    color: var(--uv-text-light);
}

.case-study-image img {
    border: 3px solid rgba(155, 89, 182, 0.3); /* Purple border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Technologies Section */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background-color: rgba(155, 89, 182, 0.15); /* Purple for AI-ML */
    color: var(--uv-light);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.05));
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.btn-primary {
    background-color: #9b59b6; /* Purple for AI-ML */
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #8e44ad;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}