/* ==============================================
   TECHNOLOGY PAGE STYLES - technology.css
   ============================================== */

/* Technology Stack Section */
.quantum-tech-matrix {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.quantum-tech-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 246, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 26, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tech-intro {
    text-align: center;
    margin-bottom: 60px;
}

.tech-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f6ff, #001aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.tech-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Technology Grid */
.tech-grid {
    display: grid;
    gap: 50px;
}

.tech-category-section {
    margin-bottom: 40px;
}

.tech-category-title {
    font-size: 2rem;
    color: #00f6ff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.tech-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #001aff, #00f6ff);
    border-radius: 2px;
}

.tech-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Technology Items */
.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 246, 255, 0.1), transparent);
    transition: left 0.6s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: #00f6ff;
    box-shadow: 0 15px 35px rgba(0, 246, 255, 0.2);
}

.tech-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.tech-icon {
    font-size: 3rem;
    color: #00f6ff;
    text-shadow: 0 0 20px rgba(0, 246, 255, 0.5);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.tech-featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.tech-content {
    text-align: center;
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-description {
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Expertise Level */
.tech-expertise {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.expertise-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    min-width: 70px;
}

.expertise-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.expertise-fill {
    height: 100%;
    background: linear-gradient(90deg, #001aff, #00f6ff);
    border-radius: 3px;
    transition: width 1.5s ease-out;
    position: relative;
}

.expertise-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.expertise-value {
    font-size: 0.9rem;
    color: #00f6ff;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

.tech-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: radial-gradient(circle at center, rgba(0, 246, 255, 0.1) 0%, transparent 70%);
    transition: opacity 0.3s ease;
}

.tech-item:hover .tech-hover-effect {
    opacity: 1;
}

/* Technology Philosophy */
.tech-philosophy {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.philosophy-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 246, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 246, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.1);
}

.philosophy-icon {
    font-size: 4rem;
    color: #00f6ff;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 30px rgba(0, 246, 255, 0.5);
}

.philosophy-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Innovation Timeline */
.innovation-timeline {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #001aff, #00f6ff, #001aff);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transition: all 0.6s ease-out;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-year {
    background: linear-gradient(135deg, #001aff, #00f6ff);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 246, 255, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 0 60px;
    max-width: 400px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #00f6ff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.5;
}

/* Technology Services */
.tech-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #00f6ff;
    box-shadow: 0 15px 35px rgba(0, 246, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    color: #a0a0a0;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00f6ff;
}

/* Call to Action */
.tech-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #001aff 0%, #00f6ff 100%);
    text-align: center;
}

.tech-cta .cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-cta .cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-category-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: center;
    }
    
    .timeline-content {
        padding: 60px 20px 0;
        max-width: 100%;
    }
    
    .timeline-year {
        position: relative;
        margin-bottom: 20px;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .tech-container,
    .philosophy-container,
    .services-container,
    .timeline-container {
        padding: 0 15px;
    }
    
    .tech-item,
    .philosophy-item,
    .service-item {
        padding: 20px;
    }
}