

.bulb-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide on screens smaller than 768px (mobile) */
@media screen and (max-width: 767px) {
    .bulb-container {
        display: none !important;
    }
}

.bulb {
    position: absolute;
    width: 120px;
    height: 120px;
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: #0a9087;
   
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
       
    }
    50% {
        transform: scale(1.05);
       
    }
    100% {
        transform: scale(1);
        
    }
}

.circle-path {
    position: absolute;
    width: 350px;
    height: 350px;
 
    border-radius: 50%;
}

.icon-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #66FCF1;
    font-size: 24px;
   
    transition: all 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(102, 252, 241, 1));
}

/* Fix for presentation icon since it's not in standard Font Awesome */
.fa-presentation:before {
    content: "\f6ec"; /* Using chalkboard-teacher icon as fallback */
}