/* Enhanced Feature Cards Hover Effects for Technical School Section */
.technical-school-section .feature-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.technical-school-section .feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.technical-school-section .feature-card:hover::before {
    opacity: 1;
}

.technical-school-section .feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.technical-school-section .feature-card:hover i {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s ease;
}

.technical-school-section .feature-card:hover h5 {
    color: #ffd700 !important;
    transition: color 0.3s ease;
}

/* Pulse animation for icons on hover */
@keyframes iconPulseSchool {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.technical-school-section .feature-card:hover i {
    animation: iconPulseSchool 1.5s ease-in-out infinite;
}