*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#020617;
    color:#ffffff;
    line-height:1.7;
}

a{
    text-decoration:none;
}

/* ===== NAVBAR ===== */

.navbar{

width:92%;

max-width:1300px;

height:78px;

margin:20px auto;

padding:0 35px;

display:flex;

justify-content:space-between;

align-items:center;

position:sticky;

top:15px;

z-index:1000;

background:rgba(3,18,37,.92);

backdrop-filter:blur(18px);

border:1px solid rgba(59,130,246,.15);

border-radius:20px;

box-shadow:

0 10px 35px rgba(0,0,0,.35);

}


/* BRAND */

.brand{

display:flex;

align-items:center;

line-height:1;

margin-bottom:8px;

}

.logo{

display:flex;

flex-direction:column;

justify-content:center;

}

.logo-text{

font-size:34px;

font-weight:800;

color:#fff;

}

.logo-number{

font-size:34px;

font-weight:800;

margin-left:2px;

color:#60a5fa;

}


/* MENU */

.nav-links{

display:flex;

align-items:center;

gap:32px;

}


/* LINKS */

.nav-links a{

font-size:16px;

font-weight:600;

color:#cbd5e1;

transition:.3s;

position:relative;

}


/* HOVER */

.nav-links a:hover{

color:#fff;

}
.site-tagline{

font-size:14px;

font-weight:500;

color:#94a3b8;


letter-spacing:.3px;

}

/* ACTIVE */

.active::after{

content:"";

position:absolute;

left:0;

bottom:-12px;

width:100%;

height:3px;

background:#3b82f6;

border-radius:10px;

}


/* CONTACT BUTTON */

.cta{

padding:12px 22px;

border-radius:12px;

background:

linear-gradient(

135deg,

#2563eb,

#3b82f6

);

font-weight:700;

color:#fff !important;

}

.cta:hover{

transform:translateY(-2px);

}


/* HAMBURGER */

.menu-toggle{

display:none;

font-size:32px;

cursor:pointer;

}


/* MOBILE */

@media(max-width:900px){

.navbar{

height:85px;

padding:0 20px;

}

.logo-text{

font-size:28px;

}

.logo-number{

font-size:28px;

}

.menu-toggle{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:95px;

right:20px;

width:250px;

padding:25px;

flex-direction:column;

gap:22px;

background:#0f172a;

border:1px solid #1e293b;

border-radius:18px;

}

.nav-links.show{

display:flex;

}

}

.hero{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:90px 0 70px;
}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(59,130,246,.1);

    border:1px solid rgba(59,130,246,.3);

    border-radius:30px;

    color:#93c5fd;

    font-size:14px;

    margin-bottom:25px;
}

.hero h1{
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    color:#94a3b8;
    font-size:20px;
    max-width:850px;
}

.about-section{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding-bottom:100px;
}

.content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.about-card,
.info-box{
    background:#0f172a;
    border:1px solid #1e293b;
    border-radius:24px;
}

.about-card{
    padding:40px;
}

.about-card p{
    color:#cbd5e1;
    margin-bottom:24px;
}

.highlight{
    color:#60a5fa;
    font-weight:bold;
}

.list{
    padding-left:20px;
    margin:25px 0;
}

.list li{
    margin-bottom:14px;
    color:#cbd5e1;
}

.side-panel{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.info-box{
    padding:28px;
}

.info-box h3{
    margin-bottom:15px;
}

.info-box p{
    color:#94a3b8;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:#ffffff;
    padding:16px 28px;
    border-radius:12px;
    margin-top:25px;
}

.btn:hover{
    background:#3b82f6;
}

.linkedin-link{
    display:inline-block;
    margin-top:16px;
    color:#60a5fa;
    font-weight:600;
}

.linkedin-link:hover{
    color:#93c5fd;
}

footer{
    border-top:1px solid #1e293b;
    padding:30px;
    text-align:center;
    color:#64748b;
}

@media(max-width:900px){

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

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

.content-grid{
    grid-template-columns:1fr;
}

.nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:80px;
    right:20px;
    width:220px;
    background:#0f172a;
    padding:20px;
    border-radius:16px;
    border:1px solid #1e293b;
}

.nav-links.show{
    display:flex;
}

.menu-toggle{
    display:block;
}

}