.pulse-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Screen ka 80% hissa */
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#dotCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pulse-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.reveal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    letter-spacing: -2px;
    /* Blur Transition Effect */
    filter: blur(15px);
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Jab section screen par aaye to ye class trigger hogi */
.reveal-text.active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}

.reveal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 1000;
    line-height: 1.1;
    font-size: 100px;
    letter-spacing: -2px;
    position: relative;
    
    /* Default Color */
    color: #000; 
    
    /* Spotlight Gradient Setup */
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        #ff0080 0%,    /* Pink */
       #ffdb00 30%,   /* Purple */
        #ff4d4d 60%,   /* Red */
        #000 100%      /* Back to Black */
    );
    
    /* Isse gradient sirf text ke andar nazar ayega */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Smooth reveal transitions */
    filter: blur(15px);
    opacity: 0;
    transform: scale(0.9);
    transition: filter 1.5s ease, opacity 1.5s ease, transform 1.5s ease;
    
    /* Mouse tracking ke waqt text ka original color transparent hona chahiye */
    -webkit-text-fill-color: transparent; 
}

.reveal-text.active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .reveal-text {
        font-size: 60px;
    }
}