
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1d4ed8, #3b82f6);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .skill-category {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .skill-category:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1d4ed8, #3b82f6);
        }

        .skill-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(29, 78, 216, 0.1);
            border-color: #3b82f6;
        }

        .skill-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-radius: 12px;
            color: #1d4ed8;
        }

        .skill-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .skill-list {
            list-style: none;
        }

        .skill-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            color: #475569;
            position: relative;
            padding-left: 28px;
            font-size: 0.95rem;
        }

        .skill-list li:last-child {
            border-bottom: none;
        }

        .skill-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1rem;
        }

        /* Animation for reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .skill-category {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .skill-category {
                padding: 20px;
            }
            
            .skill-icon {
                font-size: 2.4rem;
                width: 60px;
                height: 60px;
            }
            
            .skill-title {
                font-size: 1.3rem;
            }
        }

        /* Color variations for each category */
        .skill-category:nth-child(2) .skill-icon {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            color: #059669;
        }
        .skill-category:nth-child(2):before {
            background: linear-gradient(90deg, #059669, #10b981);
        }

        .skill-category:nth-child(3) .skill-icon {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            color: #d97706;
        }
        .skill-category:nth-child(3):before {
            background: linear-gradient(90deg, #d97706, #f59e0b);
        }

        .skill-category:nth-child(4) .skill-icon {
            background: linear-gradient(135deg, #f5f3ff, #ede9fe);
            color: #7c3aed;
        }
        .skill-category:nth-child(4):before {
            background: linear-gradient(90deg, #7c3aed, #8b5cf6);
        }

        .skill-category:nth-child(5) .skill-icon {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            color: #dc2626;
        }
        .skill-category:nth-child(5):before {
            background: linear-gradient(90deg, #dc2626, #ef4444);
        }

        .skill-category:nth-child(6) .skill-icon {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            color: #0369a1;
        }
        .skill-category:nth-child(6):before {
            background: linear-gradient(90deg, #0369a1, #0ea5e9);
        }

       /* Base Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Team Member Cards */
.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-member:hover::before {
    transform: scaleX(1);
}

/* Member Photo Container */
.member-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, #e0e6eb 100%);
    padding: 5px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--secondary), var(--accent)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

/* Actual Photo Image */
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
    filter: grayscale(20%);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.team-member:hover .member-photo::after {
    opacity: 1;
}

.team-member:hover .member-photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Member Info */
.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    transition: var(--transition);
}

.team-member:hover .member-name {
    color: var(--secondary);
}

.member-role {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.member-credentials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.credential {
    background: linear-gradient(135deg, var(--light) 0%, #e8ecee 100%);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.team-member:hover .credential {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

.team-member p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    padding: 0 10px;
    transition: var(--transition);
}

.team-member:hover p {
    color: var(--primary-light);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .team-member {
        padding: 30px 25px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .member-photo {
        width: 110px;
        height: 110px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .team-member:hover {
        transform: none;
    }
    
    .team-member:hover .member-photo,
    .team-member:hover .credential {
        transform: none;
    }
}


/* Sectors Section - High Performance */
.sectors-section {
    padding: 5rem 1.25rem;
    background: #fafafa;
    position: relative;
}

.sectors-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sectors-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sectors-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sectors-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

/* Sector Cards */
.sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.sector-card:hover {
    transform: translateY(-4px);
}

/* Optimized Image Loading */
.sector-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #e0e0e0;
}

/* Content Overlay */
.sector-content {
    padding: 1.5rem;
}

.sector-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sector-card-desc {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* Performance Optimizations */
.sector-image {
    loading: lazy;
    decoding: async;
}

.sector-card {
    will-change: transform;
    contain: content;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sectors-section {
        padding: 3rem 1rem;
    }
    
    .sectors-title {
        font-size: 2rem;
    }
    
    .sectors-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-image {
        height: 180px;
    }
    
    .sectors-title {
        font-size: 1.75rem;
    }
}

/* No-JS Fallback */
.no-js .sector-image {
    opacity: 1;
}