/* Technologies Page Styles */

/* Hero Section */
.technologies-hero {
    background: linear-gradient(135deg, #0c1838 0%, #1e40af 50%, #2563eb 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

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

.technologies-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.technologies-hero .highlight {
    color: #ffffff;
}

.technologies-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.technologies-content {
    padding: 80px 0;
    background: #f9fafb;
}

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

/* Tech Category */
.tech-category {
    margin-bottom: 70px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tech-category:last-child {
    margin-bottom: 0;
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.category-header svg {
    color: #2563eb;
    flex-shrink: 0;
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

/* Tech Logo Card */
.tech-logo-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

.tech-logo-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.tech-logo-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-logo-card:hover img {
    transform: scale(1.1);
}

.tech-logo-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    transition: color 0.3s ease;
}

.tech-logo-card:hover span {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .tech-category {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .technologies-hero {
        padding: 100px 0 60px;
    }
    
    .technologies-hero h1 {
        font-size: 2.2rem;
    }
    
    .technologies-hero p {
        font-size: 1.1rem;
    }
    
    .technologies-content {
        padding: 60px 0;
    }
    
    .tech-category {
        margin-bottom: 50px;
        padding: 25px;
    }
    
    .category-header {
        margin-bottom: 25px;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }
    
    .tech-logo-card {
        padding: 20px 10px;
        min-height: 120px;
    }
    
    .tech-logo-card img {
        width: 55px;
        height: 55px;
    }
    
    .tech-logo-card span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .technologies-hero h1 {
        font-size: 1.8rem;
    }
    
    .technologies-hero p {
        font-size: 1rem;
    }
    
    .tech-category {
        padding: 20px;
    }
    
    .category-header {
        gap: 10px;
    }
    
    .category-header svg {
        width: 24px;
        height: 24px;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }
    
    .tech-logo-card {
        padding: 15px 8px;
        min-height: 100px;
    }
    
    .tech-logo-card img {
        width: 45px;
        height: 45px;
    }
    
    .tech-logo-card span {
        font-size: 0.8rem;
    }
}