.coming-section {
    height: 100vh;
    background: linear-gradient(135deg, #060d39, #2d5db3);
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.coming-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
    top: 20%;
    left: 10%;
}

.coming-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
    bottom: 10%;
    right: 10%;
}
