
/*==================================================
                RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    overflow:hidden;

    background:#000;

    color:#fff;

}


/*==================================================
                PAGE LOADER
==================================================*/

.page-loader{

    position:fixed;

    inset:0;

    background:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:30px;

    z-index:99999;

}

.loader-circle{

    width:80px;

    height:80px;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.12);

    border-top:3px solid var(--primary);

    animation:loaderSpin 1.2s linear infinite;

}

.page-loader h2{

    font-family:

    "Noto Serif Devanagari",

    serif;

    color:var(--primary);

    font-size:2.1rem;

    letter-spacing:4px;

}

@keyframes loaderSpin{

    to{

        transform:rotate(360deg);

    }

}


/*==================================================
                LANDING PAGE
==================================================*/

.landing-page{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}


/*==================================================
                BACKGROUND VIDEO
==================================================*/

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:1;

    transition:

        filter .6s ease,

        transform 8s linear;

}


/*==================================================
                VIDEO OVERLAY
==================================================*/

.video-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.35),

    rgba(0,0,0,.55));

    z-index:2;

}


/*==================================================
                CONTENT WRAPPER
==================================================*/

.landing-content{

    position:relative;

    z-index:5;

    width:100%;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    text-align:center;

    padding:40px;

}


/*==================================================
                BLUE GLOW
==================================================*/

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    pointer-events:none;

    z-index:3;

}

.glow-1{

    width:350px;

    height:350px;

    background:

    rgba(37,167,222,.18);

    left:-120px;

    top:-80px;

}

.glow-2{

    width:300px;

    height:300px;

    background:

    rgba(37,167,222,.14);

    right:-100px;

    bottom:-100px;

}
/*==================================================
                LANDING LABEL
==================================================*/

.landing-label{

    display:inline-block;

    padding:10px 24px;

    margin-bottom:28px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:50px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(14px);

    color:rgba(255,255,255,.88);

    font-size:.78rem;

    letter-spacing:4px;

    text-transform:uppercase;

    animation:fadeUp 1.1s ease;

}


/*==================================================
                MAIN TITLE
==================================================*/

.landing-title{

    font-family:

    "Noto Serif Devanagari",

    serif;

    font-size:clamp(3rem,7vw,6.5rem);

    font-weight:600;

    line-height:1.15;

    color:#ffffff;

    margin-bottom:26px;

    animation:fadeUp 1.2s ease;

}

.landing-title span{

    color:var(--primary);

    text-shadow:

        0 0 25px rgba(37,167,222,.35),

        0 0 50px rgba(37,167,222,.18);

}


/*==================================================
                DESCRIPTION
==================================================*/

.landing-description{

    max-width:760px;

    margin:auto;

    color:rgba(255,255,255,.82);

    font-size:1.05rem;

    line-height:2;

    font-weight:300;

    animation:fadeUp 1.4s ease;

}


/*==================================================
                ENTER LINK
==================================================*/

.landing-link{

    margin-top:600px;

    display:inline-flex;

    align-items:center;

    gap:16px;

    text-decoration:none;

    color:var(--primary);

    font-size:1.15rem;

    font-weight:600;

    letter-spacing:1px;

    position:relative;

    transition:.45s ease;

    animation:fadeUp 1.6s ease;

}


/*==================================================
                LINE
==================================================*/

.link-line{

    width:0;

    height:2px;

    background:var(--primary);

    transition:.45s ease;

}

.landing-link i{

    transition:.45s ease;

}


/*==================================================
                LINK HOVER
==================================================*/

.landing-link:hover{

    letter-spacing:2px;

    text-shadow:

        0 0 18px rgba(37,167,222,.45);

}

.landing-link:hover .link-line{

    width:90px;

}

.landing-link:hover i{

    transform:translateX(8px);

}


/*==================================================
            VIDEO BLUR ON HOVER
==================================================*/

.landing-page:has(.landing-link:hover)

.hero-video{

    filter:

        blur(6px)

        brightness(.72);

    transform:scale(1.04);

}


/*==================================================
            CONTENT GLOW
==================================================*/

.landing-page:has(.landing-link:hover)

.landing-title span{

    text-shadow:

        0 0 25px rgba(37,167,222,.75),

        0 0 70px rgba(37,167,222,.45);

}


/*==================================================
            SMOOTH FADE UP
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:

        translateY(45px);

    }

    to{

        opacity:1;

        transform:

        translateY(0);

    }

}
/*==================================================
                PAGE TRANSITION
==================================================*/

.page-transition{

    position:fixed;

    inset:0;

    background:#000;

    z-index:99998;

    opacity:0;

    visibility:hidden;

    transition:

        opacity .8s ease,

        visibility .8s ease;

}

.page-transition.active{

    opacity:1;

    visibility:visible;

}


/*==================================================
                FLOATING GLOW
==================================================*/

.glow{

    animation:

        glowFloat 12s ease-in-out infinite;

}

.glow-2{

    animation-delay:6s;

}

@keyframes glowFloat{

    0%{

        transform:

        translate(0,0)

        scale(1);

    }

    50%{

        transform:

        translate(40px,-35px)

        scale(1.12);

    }

    100%{

        transform:

        translate(0,0)

        scale(1);

    }

}


/*==================================================
                VIDEO CINEMATIC
==================================================*/

.hero-video{

    animation:

        slowZoom 18s linear infinite alternate;

}

@keyframes slowZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}


/*==================================================
                CONTENT PARALLAX
==================================================*/

.landing-content{

    transition:

        transform .35s ease;

}


/*==================================================
                LOADER HIDE
==================================================*/

.page-loader.hide{

    opacity:0;

    visibility:hidden;

    transition:

        opacity .8s ease,

        visibility .8s ease;

}


/*==================================================
                SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    display:none;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .landing-title{

        font-size:4rem;

    }

    .landing-description{

        max-width:90%;

        font-size:1rem;

    }

}


@media(max-width:768px){

    .landing-content{

        padding:25px;

    }

    .landing-label{

        letter-spacing:2px;

        font-size:.72rem;

        padding:8px 18px;

    }

    .landing-title{

        font-size:2.9rem;

        line-height:1.25;

    }

    .landing-description{

        font-size:.95rem;

        line-height:1.8;

        margin-top:8px;

    }

    .landing-link{

        margin-top:45px;

        font-size:1rem;

    }

    .landing-link:hover .link-line{

        width:60px;

    }

}


@media(max-width:480px){

    .landing-title{

        font-size:2.2rem;

    }

    .landing-description{

        font-size:.9rem;

    }

    .landing-link{

        gap:12px;

        font-size:.95rem;

    }

}


/*==================================================
            REDUCE MOTION SUPPORT
==================================================*/

@media(prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

    }

}


/*==================================================
                GPU OPTIMIZATION
==================================================*/

.hero-video,

.glow,

.landing-content,

.landing-link{

    will-change:

        transform,

        opacity,

        filter;

    backface-visibility:hidden;

    transform:translateZ(0);

}

















/*==================================================
                VOLUME BUTTON
==================================================*/

.volume-btn{

    position:absolute;

    bottom:30px;

    right:30px;

    z-index:6;

    width:50px;

    height:50px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:1.1rem;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.35s ease;

}

.volume-btn:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:scale(1.08);

}

@media(max-width:768px){

    .volume-btn{

        bottom:20px;

        right:20px;

        width:44px;

        height:44px;

        font-size:1rem;

    }

}