*

{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(
        180deg,
        #020b16,
        #071b31,
        #0c2444
    );
    color:white;
    overflow-x:hidden;
}




#loader{
    position:fixed;
    inset:0;

    background:
    linear-gradient(
        180deg,
        #020b16,
        #071b31,
        #0c2444
    );

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    transition:1s;
}

.loader-content{
    text-align:center;
}

.temple-icon{
    font-size:90px;

    animation:
    glow 2s infinite ease-in-out;
}

.loader-content h1{
    margin-top:20px;
    font-size:2rem;
}

.loader-content p{
    color:#cfe6ff;
    margin-top:10px;
}

.loading-dots{
    margin-top:25px;
}

.loading-dots span{
    width:12px;
    height:12px;

    border-radius:50%;

    background:#66c0ff;

    display:inline-block;

    margin:0 5px;

    animation:bounce 1.2s infinite;
}

.loading-dots span:nth-child(2){
    animation-delay:.2s;
}

.loading-dots span:nth-child(3){
    animation-delay:.4s;
}

.loader-temple{
    width:100px;
    height:auto;
    display:block;
    margin:0 auto 20px;

    filter:
    drop-shadow(0 0 15px #66c0ff);
}

@keyframes glow{

    0%,100%{
        transform:scale(1);
        text-shadow:
        0 0 20px #66c0ff;
    }

    50%{
        transform:scale(1.1);
        text-shadow:
        0 0 50px #66c0ff;
    }

}

@keyframes bounce{

    0%,80%,100%{
        transform:translateY(0);
    }

    40%{
        transform:translateY(-10px);
    }

}

/* Navbar */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
    margin-right:auto;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#79c7ff;
}

/* Hero */


.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    ),
    url("../assets/images/Virtual_Poson_Hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.hero::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:200px;

    background:
    linear-gradient(
        transparent,
        #07172c
    );
}

.hero-content{
    max-width:900px;
    position:relative;
    z-index:10;

    margin:auto;
}





.badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    margin-bottom:25px;
}

.hero h1{
    font-size:6rem;
    text-align:center;
    margin-bottom:20px;
}


.hero h1 span{
    display:block;
}

.hero p{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    color:white;
    background:#299bff;
    margin:10px;
    box-shadow:
    0 0 20px #299bff,
    0 0 50px rgba(41,155,255,.5);
}

.btn-secondary{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.2);
    margin:10px;
}

/* Moon */

.moon{
    position:absolute;
    top:100px;
    right:10%;
    width:260px;
    height:260px;
    border-radius:50%;
    background:white;

    box-shadow:
    0 0 40px white,
    0 0 80px #66c0ff,
    0 0 180px #66c0ff,
    0 0 300px rgba(102,192,255,.6);

    animation:floatMoon 5s ease-in-out infinite;
}

@keyframes floatMoon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* About */

.about{
    padding:100px 10%;
    text-align:center;
}

.about h2{
    font-size:3rem;
    margin-bottom:20px;
}

.about p{
    max-width:900px;
    margin:auto;
    color:#cfe6ff;
    line-height:1.8;
}

/* Cards */
.card1{
    transform:translateY(0);
}

.card2{
    transform:translateY(60px);
}

.card3{
    transform:translateY(0);
}

.card4{
    transform:translateY(60px);
}

.card5{
    transform:translateY(0);
}

.card6{
    transform:translateY(60px);
}

.cards-section{
    position:relative;
    padding:100px 10%;
    min-height:1600px;
}

.cards-section h2{
    font-size:3rem;
    margin-bottom:50px;
}




.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1400px;
    margin:80px auto;
}



.card-content{
    padding:25px;
}

.card-content h3{
    font-size:1.4rem;
    margin-bottom:15px;
    color:#fff;
}

.card-content p{
    color:#d6e6ff;
    line-height:1.8;
}


/* Feedback */

.feedback{
    padding:100px 10%;
    text-align:center;
}

.feedback h2{
    font-size:3rem;
    margin-bottom:20px;
}

.feedback p{
    color:#d5e8ff;
}

/* Footer */

footer{
    padding:40px;
    text-align:center;
    background:rgba(255,255,255,.03);
    margin-top:50px;
}

footer p{
    margin:5px 0;
}

/* Responsive */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .moon{
        width:160px;
        height:160px;
        top:120px;
        right:20px;
    }

    .about h2,
    .cards-section h2,
    .feedback h2{
        font-size:2rem;
    }
}


/* Zig-Zag */

.card1,
.card3,
.card5{
    margin-top:0;
}

.card2,
.card4,
.card6{
    margin-top:80px;
}

.glass-card{

    background:linear-gradient(
        180deg,
        rgba(10,20,40,.95),
        rgba(5,10,25,.95)
    );

    position:relative;
    overflow:hidden;

    backdrop-filter:blur(20px);

    border:1px solid rgba(102,192,255,.12);

    border-radius:25px;

    overflow:hidden;

    min-height:420px;

    display:flex;
    flex-direction:column;

    transition:.4s ease;

    box-shadow:
        0 10px 40px rgba(0,0,0,.45),
        0 0 25px rgba(0,80,180,.12);
}

.card-content{
    padding:25px;

    display:flex;
    flex-direction:column;

    height:100%;
}

.glass-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;

    -webkit-mask-image:
    linear-gradient(
        to bottom,
        black 70%,
        transparent 100%
    );

    mask-image:
    linear-gradient(
        to bottom,
        black 70%,
        transparent 100%
    );
}

.glass-card h3{
    padding:20px;
}




.glass-card::before{
    content:'';

    position:absolute;

    top:140px;
    left:0;

    width:100%;
    height:120px;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(5,12,25,.95)
    );

    z-index:1;

    pointer-events:none;
}

.glass-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 0 25px rgba(102,192,255,.25),
        0 0 60px rgba(102,192,255,.15),
        0 15px 50px rgba(0,0,0,.5);
}

.glass-card:hover::before{
    left:100%;
}


.card-btn{

    margin-top:auto;

    align-self:center;

    display:inline-block;

    padding:12px 25px;

    background:#299bff;

    color:white;

    text-decoration:none;

    border-radius:30px;

    transition:.3s ease;
}

.card-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 0 20px #299bff,
        0 0 40px rgba(41,155,255,.4);

}






@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero,
.about,
.cards-section,
.feedback{
    animation:fadeUp 1.2s ease;
}


.stars{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-image:
    radial-gradient(white 1px, transparent 1px);
    background-size:50px 50px;
    opacity:.4;
    animation:starsMove 120s linear infinite;
    z-index:-1;
}

@keyframes starsMove{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-500px);
    }
}



.countdown-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.time-card{
    width:130px;
    height:130px;
    border-radius:20px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 0 20px rgba(77,166,255,.2);
}

.time-card span{
    font-size:2.5rem;
    font-weight:700;
    color:#66c0ff;
}

.time-card p{
    margin-top:10px;
    color:white;
}

@media(max-width:768px){

    .countdown-box{
        gap:12px;
    }

    .time-card{
        width:100px;
        height:100px;
    }

    .time-card span{
        font-size:1.8rem;
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px;
    }

    .logo{
        margin-bottom:15px;
    }

    .nav-links{
        justify-content:center;
        flex-wrap:wrap;
    }
}



@media(max-width:992px){

    .cards{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .cards{
        grid-template-columns:1fr;
    }

    .card1,
    .card2,
    .card3,
    .card4,
    .card5,
    .card6{
        transform:none;
    }

}






/* ===========================
   Cursor Glow
=========================== */

.cursor{
    position:fixed;
    width:25px;
    height:25px;
    border-radius:50%;
    background:rgba(102,192,255,.4);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:9999;

    box-shadow:
    0 0 15px #66c0ff,
    0 0 30px #66c0ff,
    0 0 60px #66c0ff;
}

/* ===========================
   Mouse Particles
=========================== */

.particle{
    position:absolute;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#66c0ff;

    pointer-events:none;

    z-index:9998;

    animation:particleAnim .8s linear forwards;
}

@keyframes particleAnim{

    0%{
        opacity:1;
        transform:scale(1);
    }

    100%{
        opacity:0;
        transform:
        translateY(-40px)
        scale(0);
    }

}

/* ===========================
   Scroll Reveal
=========================== */

.about,
.feedback,
.countdown-section,
.glass-card{
    opacity:1;
    transform:none;
    transition:.8s ease;
}

.active{

    opacity:1 !important;

    transform:
    translateY(0) !important;

}

/* ===========================
   Countdown
=========================== */

.countdown-section{

    padding:100px 20px;

    text-align:center;

}

.countdown-section h2{

    font-size:3rem;

    margin-bottom:40px;

}

.countdown-box{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.time-card{

    width:140px;

    height:140px;

    border-radius:25px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.1);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 0 20px rgba(102,192,255,.15);

}

.time-card span{

    font-size:3rem;

    font-weight:700;

    color:#66c0ff;

}

.time-card p{

    margin-top:10px;

    color:white;

}

/* ===========================
   Premium Cards
=========================== */




.glass-card::before{

    content:"";

    position:absolute;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;

    background:
    linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transform:rotate(30deg);

    transition:.8s;

}

.glass-card:hover::before{

    left:100%;

}

.glass-card:hover{
    transform:scale(1.05) rotate(0deg) !important;
}

/* ===========================
   Stars Background
=========================== */

.stars{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-2;

    background-image:
    radial-gradient(
        white 1px,
        transparent 1px
    );

    background-size:
    50px 50px;

    opacity:.25;

    animation:
    starsMove 150s linear infinite;

}

@keyframes starsMove{

    from{
        transform:
        translateY(0);
    }

    to{
        transform:
        translateY(-600px);
    }

}

/* ===========================
   Button Hover
=========================== */

.btn-primary,
.btn-secondary{

    transition:
    .3s ease;

}

.btn-primary:hover{

    box-shadow:
    0 0 25px #299bff,
    0 0 60px rgba(41,155,255,.4);

}

.btn-secondary:hover{

    background:
    rgba(255,255,255,.08);

}

/* ===========================
   Footer Glow
=========================== */

footer{

    border-top:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(10px);

}

/* ===========================
   Mobile
=========================== */

@media(max-width:768px){

    .countdown-section h2{
        font-size:2rem;
    }

    .time-card{

        width:100px;
        height:100px;

    }

    .time-card span{
        font-size:2rem;
    }

    .cursor{
        display:none;
    }

}

