/* Technology Components - Timeline Style Design */
.technology-components {
    background: transparent;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.technology-components h3 {
    color: var(--secondary-color);
    margin-bottom: 4rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    position: relative;
    padding: 0;
    background: transparent;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(10px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.tech-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.tech-content {
    flex: 1;
}

.tech-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.tech-item p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Roadmap - Vertical Timeline Style */
.roadmap {
    margin-top: 0;
    background: transparent;
    padding: 5rem 0;
}

.roadmap h3 {
    color: var(--secondary-color);
    margin-bottom: 4rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.roadmap-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6B35 0%, #3B82F6 50%, #10B981 100%);
}

.roadmap-item {
    position: relative;
    padding-left: 90px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateX(10px);
}

.roadmap-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-number {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.roadmap-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
}

.roadmap-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-grid::before {
        left: 20px;
    }
    
    .roadmap-item {
        padding-left: 70px;
    }
    
    .roadmap-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
