/* Highlights Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00d4aa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Career Conversion Programme */
.career-c-prog {
    background: white;
}

.career-c-prog-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.career-c-prog-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(78,84,200,0.3);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

.tech-image i {
    color: white;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.career-c-prog-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.career-c-prog-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    border-radius: 2px;
}

.career-c-prog-text p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.career-c-prog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.career-c-prog-feature {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.career-c-prog-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.career-c-prog-feature i {
    font-size: 2.5rem;
    color: #4e54c8;
    margin-bottom: 15px;
}

.career-c-prog-feature h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.career-c-prog-feature p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Technology Innovation Section */
.tech-innovation {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.innovation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1) rotate(5deg);
}

.innovation-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.innovation-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.innovation-metrics {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Industry Recognition Section */
.industry-recognition {
    background: white;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recognition-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recognition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.recognition-item:hover::before {
    transform: scaleX(1);
}

.recognition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.recognition-item:hover .recognition-icon {
    transform: scale(1.1);
}

.recognition-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.recognition-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .career-c-prog-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-image {
        width: 250px;
        height: 250px;
    }
    
    .innovation-grid,
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .career-c-prog-features {
        grid-template-columns: 1fr;
    }
    
    .innovation-metrics {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
