
.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.service-container {
    position: relative;
    z-index: 2;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--white); 
    margin: 0 auto 3rem;
    line-height: 1.6;
}
.services-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.process-list {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.custom-nav-item {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 200px;
}
.custom-nav-link {
    padding: 6px;
    color: var(--white) !important; 
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background: #4f5a659c;
    width: 100%;
}
.custom-nav-link.active {
    background: var(--secondary); 
    transform: scale(1.02);
}
.custom-nav-link:hover {
    background: var(--theme-color);
    transform: scale(1.02);
}
.innenr-process-number {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color); 
    border-radius: 50%;
    flex-shrink: 0;
}

.custom-nav-item h5 {
    font-size: 17px;
}
.innenr-process-number1 {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color); 
    border-radius: 50%;
}
.tab-content {
    width: 100%;
    flex: 1;
    height: 100%;
}
.tab-pane {
    transition: opacity 0.4s ease;
    padding: 25px;
    background: rgba(0,0,0,0.7); 
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-height: 97%;
}
.process-details p {
    line-height: 1.7;
    color: var(--white); 
    margin-top: 15px;
}
.process-details ul li {
    margin-bottom: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: var(--white); 
}
.process-details ul li i {
    font-size: 17px;
    margin-right: 10px;
    color: var(--theme-color); 
}



/* Mobile Collapse Styling */
.accordion {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 15px;
}

.collapse-item {
    margin-bottom: 10px;
}

.collapse-header {
    width: 100%;
    text-align: left;
    border: none;
    padding: 6px;
    color: var(--white) !important;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.collapse-header.active,
.collapse-header[aria-expanded="true"] {
    background: var(--secondary);
    transform: scale(1.02);
}

.collapse-header:hover {
    background: var(--theme-color);
    transform: scale(1.02);
}

.collapse-content {
    padding: 25px;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 10px;
}


