/* Tech Stack Section Specific Styles */
.tech-section {
    padding: 80px 20px;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff00 0%, #f8f9ff 50%, #ffffff 100%);
}

.tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.tech-header h2 span {
    color: #7c3aed;
}

.tech-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tech Cards Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Tech Card */
.tech-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: #7c3aed;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

/* Logo Container - Fixed to match HTML */
.tech-logo {
    width: 100%;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition, all 0.3s ease);
}

.tech-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-logo img {
    transform: scale(1.05);
}

/* Tech Card Content */
.tech-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Feature Badges */
.tech-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f3f0ff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7c3aed;
    transition: all 0.3s ease;
}

.tech-badge svg {
    width: 14px;
    height: 14px;
    stroke: #7c3aed;
}

.tech-card:hover .tech-badge {
    background: #7c3aed;
    color: white;
}

.tech-card:hover .tech-badge svg {
    stroke: white;
}

/* Bottom CTA */
.tech-cta {
    text-align: center;
    margin-top: 40px;
}

.tech-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 25px;
}

.tech-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #7c3aed;
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tech-cta-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.tech-cta-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .tech-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 60px 15px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tech-header h2 {
        font-size: 1.75rem;
    }
    
    .tech-card {
        padding: 30px 25px;
    }
    
    .tech-logo {
        height: 100px;
    }
}

/* Animation on load */
.tech-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tech-card:nth-child(1) { animation-delay: 0.1s; }
.tech-card:nth-child(2) { animation-delay: 0.2s; }
.tech-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}   