@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

height:100vh;

display:flex;
justify-content:center;
align-items:center;

overflow:hidden;

background:#000;

color:#fff;

}

/* Background Video */

#bg-video{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:-3;

}

/* Dark Overlay */

.overlay{

position:fixed;

inset:0;

background:

linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65));

z-index:-2;

}

/* Container */

.container{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:20px;

}

/* Glass Card */

/* ==========================================
   Premium Glass Card
========================================== */

.glass{

    position:relative;

    overflow:hidden;

    width:100%;
    max-width:620px;

    padding:45px;

    border-radius:30px;

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

    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);

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

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        inset 0 1px 1px rgba(255,255,255,.10);

    animation:
        fadeUp 1s ease,
        floating 6s ease-in-out infinite;

    transition:.4s ease;

}
@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}
/* .glass::after{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:32px;

    padding:2px;

    background:linear-gradient(
        45deg,
        #0A84FF,
        #7C3AED,
        #00C7FF,
        #0A84FF
    );

    background-size:300% 300%;

    animation:borderGlow 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

} */

/* Hover */

.glass:hover{

    transform:
        translateY(-8px)
        scale(1.02);

    box-shadow:
        0 40px 80px rgba(10,132,255,.35);

}

/* Logo */

.logo{

font-size:38px;

font-weight:800;

letter-spacing:4px;

}

.logo span{

color:#0A84FF;

}

/* Badge */

.badge{

display:inline-block;

margin-top:20px;

padding:10px 22px;

border-radius:50px;

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

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

font-size:14px;

}

/* Heading */

h1{

margin-top:25px;

font-size:46px;

font-weight:700;

line-height:1.2;

}

/* Description */

p{

margin-top:18px;

font-size:16px;

line-height:1.8;

color:#ddd;

}

/* Service Tags */

.services{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:12px;

margin-top:30px;

}

.services span{

padding:10px 18px;

border-radius:30px;

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

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

font-size:14px;

transition:.3s;

}

.services span:hover{

background:#0A84FF;

}

/* Buttons */

.buttons{

display:flex;

justify-content:center;

gap:15px;

margin-top:35px;

flex-wrap:wrap;

}

.btn{

width:180px;

height:52px;

display:flex;

justify-content:center;

align-items:center;

gap:10px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.whatsapp{

background:#25D366;

color:#fff;

}

.whatsapp:hover{

background:#1ebe5d;

transform:translateY(-4px);

}

.call{

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

color:#fff;

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

}

.call:hover{

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

transform:translateY(-4px);

}

/* Footer */

.footer{

margin-top:35px;

font-size:13px;

color:#bbb;

}

/* Mobile */

@media(max-width:768px){

.glass{

padding:30px 22px;

}

.logo{

font-size:30px;

}

h1{

font-size:34px;

}

.btn{

width:100%;

}

}