* {
    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,
.about-hero,
.about-box,
.cta {
    position:relative;
    z-index:2;
}
.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::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);
}
.nav-links .active {
    background:rgba(0, 255, 255, 0.14);
    color:#19e3ff;
    box-shadow:0 0 18px rgba(25, 227, 255, 0.35);
}
@media(max-width:900px) {
    .navbar {
        flex-direction:column;
        gap:25px;
    }
    .navlinks {
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }
    .navlinks li a {
        font-size:16px;
        padding:12px 20px;
    }
}
.about-hero {
    width:100%;
    padding:80px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}
.about-text {
    flex:1;
    min-width:300px;
}
.mini-text {
    color:#00f0ff;
    letter-spacing:3px;
    margin-bottom:20px;
}
.about-text h1 {
    font-size:70px;
    line-height:1.2;
    margin-bottom:25px;
}
.about-text h1 span {
    color:#00f0ff;
    text-shadow:0 0 15px #00f0ff;
}
.desc {
    color:#d4d4d4;
    line-height:1.8;
    font-size:18px;
    max-width:650px;
}
.about-buttons {
    margin-top:40px;
    display:flex;
    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 {
    border:1px solid rgba(255, 255, 255, 0.15);
    color:white;
}
.profile-card {
    width:340px;
    background:rgba(255, 255, 255, 0.04);
    border-radius:1px solid rgba(255, 255, 255, 0.08);
    border-radius:28px;
    padding:40px;
    text-align:center;
    backdrop-filter:blur(15px);
}
.profile-circle {
    width:120px;
    height:120px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#00f0ff;
    color:black;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    font-weight:bold;
    box-shadow:0 0 25px #00f0ff;
}
.proflie-card h2 {
    margin-bottom:10px;
    font-size:30px;
}
.profile-card p {
    color:#d4d4d4;
}
.about-box {
    width:100%;
    padding:40px 8% 100px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.box {
    background:rgba(255 255 255, 0.04);
    border:1px solid rgba(255, 255, 255, 0.08);
    border-radius:24px;
    padding:35px;
    backdrop-filter:blur(15px);
    transition:0.3s;
}
.box:hover {
    transform:translateY(-8px);
    border-color:#00f0ff;
}
.box h2 {
    margin-bottom:20px;
    font-size:28px;
}
.box p {
    color:#d4d4d4;
    line-height:1.8;
}
.cta {
    text-align:center;
    padding:100px 8%;
}
.cta h2 {
    font-size:55px;
    margin-bottom:20px;
}
.cta h2 span {
    color:#d4d4d4;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:40px;
}
.cta p {
    color:#d4d4d4;
    max-width:auto;
    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.3s;
}
.cta-btn:hover {
    transform:scale(1.05);
}
@media(max-width:900px) {
    .logo {
        font-size:34px;
        text-align:center;
    }
    .about-text h1 {
        font-size:45px;
    }
    .desc {
        font-size:16px;
    }
    .profile-cad {
        width:100%;
    }
    .cta h2 {
        font-size:38px;
    }
}