* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter", sans-serif;
}


html {
    scroll-behavior:smooth;
}


body {
    background:#050b18;
    color:white;
    overflow-x:hidden;
}


/* Background */

body::before {

    content:"";
    position:fixed;

    width:600px;
    height:600px;

    background:#2563eb;

    filter:blur(180px);

    opacity:.18;

    top:-200px;
    left:-200px;

    z-index:-1;
}




/* NAVBAR */


header {

    width:100%;
    padding:30px 8%;

}



nav {

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.logo {

    font-size:32px;
    font-weight:800;

}



.logo span {

    color:#3b82f6;

}



.nav-links {

    display:flex;
    gap:35px;

}



.nav-links a {

    color:#94a3b8;
    text-decoration:none;
    font-weight:500;

    transition:.3s;

}



.nav-links a:hover {

    color:white;

}




.language-btn {


    background:#111827;

    border:1px solid #2563eb;

    color:white;

    padding:10px 20px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}



.language-btn:hover {

    background:#2563eb;

    transform:translateY(-3px);

}





/* HERO */


.hero {

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 8%;

    text-align:center;

}



.hero-content {

    max-width:850px;

}



.hero h1 {

    font-size:80px;

    font-weight:800;

}



.hero h1 span {

    color:#60a5fa;

    text-shadow:
    0 0 20px #3b82f6;

}



.hero h2 {

    margin-top:20px;

    font-size:38px;

    color:#94a3b8;

}



#typing-text {

    color:#60a5fa;

}



.hero p {

    margin-top:25px;

    color:#94a3b8;

    font-size:19px;

    line-height:1.7;

}




/* BUTTONS */


.hero-buttons {

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

}



.btn {

    padding:15px 30px;

    border-radius:14px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}



.primary {

    background:#2563eb;

    color:white;

    box-shadow:
    0 0 25px rgba(37,99,235,.5);

}



.secondary {

    border:1px solid #2563eb;

    color:white;

}



.btn:hover {

    transform:translateY(-5px);

}





/* STATS */


.stats {

    padding:80px 8%;

}



.stats-container {

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.stat-card {


    background:#111827;

    border:1px solid #1e293b;

    padding:30px;

    border-radius:22px;

    text-align:center;

    transition:.3s;

}



.stat-card:hover {


    transform:translateY(-10px);

    border-color:#3b82f6;

}



.stat-card h2 {

    font-size:40px;

    color:#60a5fa;

}



.stat-card p {

    color:#94a3b8;

}





/* GENERAL SECTIONS */


section {

    padding:100px 8%;

}



section h2 {

    font-size:45px;

    text-align:center;

    margin-bottom:50px;

}



section h2 span {

    color:#60a5fa;

}





/* ABOUT */


.about-container {

    max-width:900px;

    margin:auto;

}



.about-text {

    text-align:center;

}



.about-text p {

    color:#94a3b8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:20px;

}



.about-tags {

    margin-top:35px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}



.about-tags div {

    background:#111827;

    border:1px solid #1e293b;

    padding:12px 20px;

    border-radius:20px;

    transition:.3s;

}



.about-tags div:hover {

    border-color:#3b82f6;

    transform:translateY(-5px);

}





/* CARDS */


.project-grid {

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



.project-card,
.skill-card,
.experience-card {


    background:#111827;

    border:1px solid #1e293b;

    padding:30px;

    border-radius:22px;

    transition:.3s;

}



.project-card:hover,
.skill-card:hover,
.experience-card:hover {


    transform:translateY(-10px);

    border-color:#3b82f6;

    box-shadow:
    0 0 30px rgba(37,99,235,.2);

}



.project-role {

    color:#60a5fa;

    margin:10px 0;

}



.project-card p,
.skill-card p,
.experience-card p {

    color:#94a3b8;

    line-height:1.7;

}



.project-tags,
.experience-tags {

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:20px;

}



.project-tags span {

    background:#0b1120;

    border:1px solid #334155;

    padding:7px 14px;

    border-radius:20px;

    color:#cbd5e1;

}





/* GRID SKILLS */


.skills-grid {

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}





/* EXPERIENCE */


.experience-container {

    max-width:1000px;

    margin:auto;

}



.experience-title {

    margin:40px 0 25px;

    color:#60a5fa;

}



.experience-header {

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}



.experience-header span {

    color:#60a5fa;

}





/* REVEAL */


.reveal {

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}



.reveal.active {

    opacity:1;

    transform:translateY(0);

}





/* MOBILE */


@media(max-width:900px){


.nav-links {

    display:none;

}


.hero h1 {

    font-size:50px;

}


.stats-container,
.skills-grid,
.project-grid {

    grid-template-columns:1fr;

}


.hero-buttons {

    flex-direction:column;

}


section {

    padding:70px 5%;

}


}
/* =====================
   CONTACT SECTION
===================== */

.contact {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contact-container {
    max-width: 800px;
    width: 100%;
    text-align: center;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 50px 40px;

    border-radius: 20px;

    backdrop-filter: blur(10px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}



.contact-container h2 {

    font-size: 42px;
    margin-bottom: 20px;

}



.contact-container h2 span {

    color: #3b82f6;

}



.contact-container p {

    color: #9ca3af;
    font-size: 18px;

    max-width: 600px;
    margin: 0 auto 35px;

    line-height: 1.6;

}




.contact-buttons {

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}



.contact-buttons .btn {

    min-width: 160px;

    text-align: center;

}
footer {

    text-align: center;

    padding: 30px 20px;

    margin-top: 80px;

    color: #9ca3af;

    font-size: 14px;

}
.built-with {
    margin-top: 10px;
    opacity: 0.6;
    font-size: 14px;
}