/* Services Page Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(18, 61, 0, 0.8) 0%, #000 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 204, 113, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.process-steps {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

/* Line connecting steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: rgba(46, 204, 113, 0.2);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 50%;
    color: #2ecc71;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
}

.step-content {
    padding-top: 10px;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Tech Section */
.tech-section {
    padding: 100px 0;
    background-color: #080808;
    position: relative;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.tech-category {
    width: 300px;
    text-align: center;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2ecc71;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tech-item {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(46, 204, 113, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .process-section,
    .tech-section {
        padding: 70px 0;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .tech-category {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .process-section,
    .tech-section {
        padding: 50px 0;
    }
    
    .process-steps::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}