/* =========================================================
 *  🇮🇳 NIELIT GORAKHPUR
 *  INDEPENDENCE DAY TRICOLOUR BACKGROUND
 *  ========================================================= */

html,
body {
    min-height: 100%;
}


/* Main page background */
body {

    background:
    linear-gradient(
        120deg,
        #e86f00 0%,
        #ff9933 22%,
        #ffffff 50%,
        #138808 78%,
        #087f23 100%
    ) !important;

    background-attachment: fixed;

    background-repeat: no-repeat;

    background-size: cover;

}


/* Subtle white overlay for better readability */
body::before {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
    linear-gradient(
        120deg,
        rgba(255, 153, 51, .10),
                    rgba(255, 255, 255, .30),
                    rgba(19, 136, 8, .10)
    );

}


/* =========================================================
 *  OPTIONAL: SUBTLE TRICOLOUR GLOW
 *  ========================================================= */

body::after {

    content: "";

    position: fixed;

    width: 500px;

    height: 500px;

    top: -180px;

    left: -180px;

    border-radius: 50%;

    background: rgba(255, 153, 51, .12);

    filter: blur(100px);

    pointer-events: none;

    z-index: -1;

}
