* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior:smooth;
}
body {
    background:#050505;
    color:white;
    overflow-x:hidden;
    position:relative;
    padding-bottom:120px;
}
.bg-blur {
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}
.blur1 {
    width:280px;
    height:280px;
    background:#00f0ff;
    top:-120px;
    right:-100px;
    opacity:0.18;
}
.blur2 {
    width:250px;
    height:250px;
    background:#0066ff;
    bottom:-100px;
    left:-100px;
    opacity:0.12;
}
.navbar {
   position:fixed;
   bottom:20px;
   left:50%;
   transform:translateX(-50%);
   width:88%;
   max-width:430px;
   z-index:9999;
   display:flex;
   justify-content:center;
   padding:12px;
   background:rgba(10, 10, 10, 0.70);
   backdrop-filter:blur(14px);
   border-radius:30px;
   border:1px solid rba(255, 255, 255, 0.05);
   box-shadow:0 10px 35px rgba(0, 0, 0, 0.45);
}
.logo {
    display:none;
}
.logo span {
    color:#00f0ff;
    text-shadow:0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
}
.nav-links {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    list-style:none;
    padding:0;
    margin:0;
}
.nav-links li {
    flex:1;
}
.nav-links li a {
    display:block;
    text-align:center;
    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:600;
    padding:15px 0;
    border-radius:20px;
    transition:0.3s ease;
}
.nav-links li a:hover {
    color:#19e3ff;
}
.nav-links li a.active {
    background:rgba(0, 255, 255, 0.14);
    color:#19e3ff;
    box-shadow:0 0 18px rgba(25, 227, 255, 0.35);
}
.nav-links li a::before {
    content:'';
    position:relative;
    inset:0;
    border-radius:14px;
    background:rgba(121, 247, 255, 0.08);
    opacity:0;
    transition:0.3s;
    z-index:-1;
}
.nav-links li a:hover::before {
    opacity:1;
    box-shadow:0 0 15px rgba(121, 247, 255, 0.5),0 0 35px rgba(121, 247, 255, 0.3);
}
@media(max-width:900px) {
    .navbar {
        flex-direction:column;
        gap:25px;
    }
    .logo {
        font-size:32px;
        text-align:center;
    }
    .navlinks {
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }
    .navlinks li a {
        font-size:16px;
        padding:12px 20px;
    }
}
.hero {
    width:100%;
    padding:70px 8%;
    text-align:center;
}
.mini-text {
    color:#00f0ff;
    letter-spacing:3px;
    margin-bottom:20px;
    font-size:14px;
}
.hero h1 {
    font-size:70px;
    line-height:1.2;
    margin-bottom:25px;
}
.hero h1 span {
    color:#00f0ff;
    text-shadow:0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
}
.desc {
    max-width:800px;
    margin:auto;
    color:#d6d6d6;
    font-size:18px;
    line-height:1.8;
}
.hero-buttons {
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.btn-primary,
.btn-secondary {
    text-decoration:none;
    padding:16px 30px;
    border-radius:16px;
    font-weight:bold;
    transition:0.3s;
}
.btn-primary {
    background:#00f0ff;
    color:black;
    box-shadow:0 0 20px #00f0ff;
}
.btn-primary:hover {
    transform:translateY(-5px);
}
.btn-secondary:hover {
    background:rgba(255, 255, 255, 0.08);
}
.services {
    width:100%;
    padding:50px 8% 100px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.card {
    background:rgba(255, 255, 255, 0.04);
    border-radius:24px;
    padding:35px;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(15px);
    transition:0.4s;
}
.card::before {
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:#00f0ff;
    filter:blur(80px);
    top:-20px;
    right:-20px;
    opacity:0;
    transition:0.4s;
}
.card:hover::before {
    opacity:0.2;
}
.card:hover {
    transform:translateY(-8px);
    border-color:#00f0ff;
}
.icon {
    font-size:42px;
    margin-bottom:20px;
}
.card h2 {
    font-size:26px;
    margin-bottom:15px;
}
.card p {
    color:#d5d5d5;
    line-height:1.7;
}
.cta {
    width:100%;
    padding:100px 8%;
    text-align:center;
}
.cta h2 {
    font-size:55px;
    margin-bottom:20px;
}
.cta h2 span {
    color:#00f0ff;
    text-shadow:0 0 10px #00f0ff, 0 0 20px #00f0ff;
}
.cta p {
    max-width:700px;
    margin:auto;
    color:#d4d4d4;
    line-height:1.8;
    margin-bottom:40px;
}
.cta-btn {
    display:inline-block;
    text-decoration:none;
    background:#00f0ff;
    color:black;
    padding:18px 35px;
    border-radius:16px;
    font-weight:bold;
    box-shadow:0 0 25px #00f0ff;
    transition:0.33s;
}
.cta-btn:hover {
    transform:scale(1.05);
}
@media(max-width:786px) {
    .logo {
        font-size:34px;
        text-align:center;
    }
    .nav-menu {
        width:100%;
        gap:12px;
        padding:12px;
        overflow-x:auto;
    }
    .nav-menu a {
        font-size:16px;
        padding:12px 18px;
        white-space:nowrap;
    }
    .hero h1 {
        font-size:42px;
    }
    .desc {
        font-size:16px;
    }
    .cta h2 {
        font-size:36px;
    }
}