/* Services Page Styles */
.servicespage-hero-section {
    position: relative;
    height: 400px;
    background-image: url('./assets/services.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(26 26 26 / 70%);
    z-index: 1;
}

.servicespage-hero-section .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    text-align: left;
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

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

.breadcrumb-nav a:hover {
    color: #3bb4e5;
}

.breadcrumb-nav .separator {
    color: white;
    font-weight: 600;
}

.breadcrumb-nav .current {
    color: #3bb4e5;
    font-weight: 600;
}



/* Services Section */
.services-section {
    padding: 25px 0;
    background: #f5f5f5;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3bb4e5;
    margin-bottom: 20px;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar {
    background: #fff;
    padding: 0;
}

.service-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-nav-item {
    border-bottom: 1px solid #f6fafd;
}

.service-nav-item:last-child {
    border-bottom: none;
}

.service-nav-link {
    display: block;
    padding: 20px 25px;
    color: #0b3a5c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    line-height: 1.4;
}

.service-nav-link:hover {
    background: #d0e3f2;
    padding-left: 30px;
}

.service-nav-link.active {
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    border-left: 4px solid #2563eb;
    padding-left: 21px;
}

.content-area {
    padding: 0;
}

.service-image-container {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 40px 45px;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: justify;
    margin: 0;
}

/* Tab Styles (if needed) */
.tab-btn {
    padding: 12px 24px;
    background: #e8f0f7;
    border: 1px solid #d0dfe9;
    color: #2563eb;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #d0e3f2;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.tab-pane {
    display: none;
    padding: 30px;
    background: white;
}

.tab-pane.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-wrapper {
        grid-template-columns: 220px 1fr;
    }
    
    .service-nav-link {
        font-size: 0.9rem;
        padding: 18px 20px;
    }
    
    .service-content {
        padding: 35px 40px;
    }
    
    .services-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .servicespage-hero-section {
        height: 300px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        background: white;
        border-bottom: 2px solid #e8f0f7;
    }
    
    .service-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-nav-item {
        border-bottom: none;
        border-right: 1px solid #d0dfe9;
    }
    
    .service-nav-item:nth-child(2n) {
        border-right: none;
    }
    
    .service-nav-link {
        padding: 18px 15px;
        text-align: center;
        font-size: 0.85rem;
        background: #f8fafc;
    }
    
    .service-nav-link:hover {
        padding-left: 15px;
    }
    
    .service-nav-link.active {
        background: #e8f0f7;
        border-left: none;
        border-bottom: 3px solid #2563eb;
        padding-left: 15px;
    }
    
    .service-image-container {
        height: 300px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .servicespage-hero-section {
        height: 250px;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-wrapper {
        margin: 0 10px;
    }
    
    .service-nav {
        grid-template-columns: 1fr;
    }
    
    .service-nav-item {
        border-right: none;
        border-bottom: 1px solid #d0dfe9;
    }
    
    .service-nav-link {
        text-align: left;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .service-nav-link.active {
        border-bottom: none;
        border-left: 4px solid #2563eb;
        padding-left: 16px;
    }
    
    .service-image-container {
        height: 250px;
        border-width: 2px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-description {
        font-size: 0.875rem;
        text-align: left;
    }
}