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

html{
    scroll-behavior:smooth;
}

body{
    background:#081018;
    color:#ffffff;
    line-height:1.6;
}

body{
    cursor:crosshair;
}

body::before{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    background:#00ff9d;
    filter:blur(250px);
    opacity:0.08;

    top:-200px;
    right:-100px;

    z-index:-3;
}
/* NAVBAR */
.cyber-grid{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:
    linear-gradient(rgba(0,255,157,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,157,0.05) 1px, transparent 1px);

    background-size:50px 50px;

    z-index:-2;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:sticky;
    top:0;
    background:rgba(8,16,24,0.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(0,255,157,0.15);
}

.logo{

    color:#00ff9d;
    font-size:28px;
    font-weight:800;

    padding:8px 16px;

    border:2px solid rgba(0,255,157,0.35);
    border-radius:8px;

    box-shadow:
        0 0 8px rgba(0,255,157,0.15);

    transition:all 0.3s ease;
}

.logo:hover{

    transform:translateY(-2px);

    box-shadow:
        0 0 15px rgba(0,255,157,0.35);
}
.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#00ff9d;
}

/* HERO */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
}

.hero-content{
    max-width:900px;
}

.hero-tag{
    color:#00ff9d;
    letter-spacing:2px;
    font-size:14px;
}

.hero h1{

    font-size:80px;
    font-weight:200;
    letter-spacing:2px;

    margin-top:20px;
    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #00ff9d,
        #7fffd4,
        #ffffff,
        #7fffd4,
        #00ff9d
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

    filter:drop-shadow(
        0 0 12px rgba(0,255,157,0.25)
    );

    animation:glowText 16s linear infinite;
}

@keyframes glowText{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }

}

.hero h2{
    font-size:24px;
    color:#b8c4d6;
    margin-bottom:25px;
}

.hero p{
    max-width:750px;
    margin:auto;
    color:#d3d3d3;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 28px;
    text-decoration:none;
    border-radius:8px;
    margin:10px;
    transition:.3s;
}

.btn-primary{
    background:#00ff9d;
    color:black;
    font-weight:600;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid #00ff9d;
    color:#00ff9d;
}

.btn-secondary:hover{
    background:#00ff9d;
    color:black;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:60px 8%;
}

.stat-card{
    background:#111b27;
    padding:35px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card h3{
    color:#00ff9d;
    font-size:40px;
}

.stat-card p{
    color:#d3d3d3;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    color:#b8c4d6;
}

/* EXPERTISE */

.expertise{
    padding:100px 8%;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.card{
    background:#111b27;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:15px;
}

/* PROJECTS */

.projects{
    padding:100px 8%;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.project-card{
    background:#111b27;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-5px);
}

.project-card h3{
    margin-bottom:15px;
    color:#00ff9d;
}

/* WHY ME */

.why-me{
    padding:100px 8%;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.trust-grid div{
    background:#111b27;
    padding:30px;
    border-radius:15px;
}

.trust-grid h3{
    color:#00ff9d;
    margin-bottom:10px;
}

/* CONTACT */

.contact{
    text-align:center;
    padding:100px 8%;
}

.contact h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact p{
    max-width:700px;
    margin:auto;
}

.contact-buttons{
    margin-top:35px;
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#b8c4d6;
}

/* MOBILE */

@media(max-width:768px){

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:18px;
    }

    .stats,
    .expertise-grid,
    .project-grid,
    .trust-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}
