/* =============================================
   AMANAH CAPITALS - Technology Page Styles
   ============================================= */

/* Section text - starts hidden for scroll animation */
.section-text {
    opacity: 0;
    transform: translateX(-30px);
}

.section-text h2 {
    margin-bottom: var(--space-lg);
}

.section-text p {
    margin-bottom: var(--space-md);
}

/* Tech Stack Visual */
.tech-stack-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tech-node {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    font-weight: 500;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(30px);
}

.tech-node:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-blue);
}

/* CTA Section special styling */
.cta-section {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 168, 255, 0.03) 50%,
        transparent 100%
    );
}

.cta-section .hero-cta {
    justify-content: center;
    opacity: 1;
    transform: none;
}
