/* Service Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    margin-bottom: 0;
}

.page-header-icon {
    font-size: 120px;
    color: rgba(255,255,255,0.2);
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0;
    top: 90px;
}

.sidebar-section {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    color: #6c757d;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background-color: var(--primary-color);
    color: white;
    padding-left: 1rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 90px;
}

.section-heading {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Capability Items */
.capability-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.capability-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.capability-item p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.7;
}

/* Platform Cards */
.platform-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.platform-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.platform-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.platform-card ul li {
    padding: 0.4rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.platform-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.platform-card .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

/* Case Studies */
.case-study {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-color);
}

.case-study h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.case-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.case-study p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.case-study ul {
    margin-bottom: 1rem;
}

.case-study ul li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Certifications */
.cert-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cert-badge:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cert-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Methodology Steps */
.methodology-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.methodology-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h5 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header-icon {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .case-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .methodology-step {
        flex-direction: column;
    }
    
    .methodology-step:after {
        display: none;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Highlight Active Section */
.sidebar-menu a.active {
    background-color: var(--primary-color);
    color: white;
}

