﻿/* Technologies Page Specific Styles */
.technologies-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .tech-stat:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    flex-shrink: 0;
}

.stat-content .stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-glow);
}

/* Floating Tech Large */
.floating-tech-large {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-orb.large {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-neon);
    border: 3px solid rgba(0, 243, 255, 0.3);
    animation: floatTechLarge 10s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

    .tech-orb.large:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .tech-orb.large:nth-child(2) {
        top: 60%;
        right: 15%;
        animation-delay: -3s;
    }

    .tech-orb.large:nth-child(3) {
        bottom: 25%;
        left: 20%;
        animation-delay: -6s;
    }

    .tech-orb.large:nth-child(4) {
        top: 40%;
        right: 25%;
        animation-delay: -9s;
    }

@keyframes floatTechLarge {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translateY(-15px) rotate(180deg) scale(1.2);
    }

    75% {
        transform: translateY(-25px) rotate(270deg) scale(1.1);
    }
}

/* Tech Categories */
.tech-categories {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .category-card:hover::before {
        left: 100%;
    }

    .category-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-glow);
    font-family: 'Orbitron', sans-serif;
    flex: 1;
}

.category-count {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-neon);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.technologies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .tech-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
    }

.tech-logo {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    flex-shrink: 0;
}

.tech-info {
    flex: 1;
}

    .tech-info h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-glow);
        margin-bottom: 0.2rem;
    }

    .tech-info p {
        font-size: 0.9rem;
        opacity: 0.7;
        color: var(--text-glow);
        margin: 0;
    }

.tech-level {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 80px;
}

.level-bar {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.level-progress {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    border-radius: 3px;
    transition: width 1s ease;
}

.tech-level span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-neon);
    min-width: 30px;
}

/* Tech Partners */
.tech-partners {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .partner-logo:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

    .partner-logo i {
        font-size: 3rem;
        color: var(--accent-neon);
    }

    .partner-logo span {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-glow);
        text-align: center;
    }

/* CTA Section */
.tech-cta {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .tech-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-orb.large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .tech-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .tech-level {
        width: 100%;
        justify-content: center;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}
