/*==================================================
GOOGLE RESET
==================================================*/

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

body{

    font-family:'Inter',sans-serif;

    background:linear-gradient(135deg,#071426,#0f274d);

    color:#fff;

    overflow-x:hidden;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/*==================================================
HEADER
==================================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    background:rgba(7,20,38,.75);

    backdrop-filter:blur(15px);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.logo{

    font-size:30px;

    font-weight:800;

}

.logo span{

    color:#3B82F6;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#3B82F6;

}

.social-icons{

    display:flex;

    gap:18px;

}

.social-icons a{

    color:white;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    color:#3B82F6;

    transform:translateY(-4px);

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

}

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

.hero-text h1{

    font-size:78px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:25px;

}

.hero-text span{

    color:#3B82F6;

}

.hero-text p{

    color:#d6d6d6;

    font-size:20px;

    line-height:1.8;

    max-width:620px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#3B82F6;

    color:white;

    text-decoration:none;

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(59,130,246,.45);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.15);

    color:white;

    text-decoration:none;

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn-secondary:hover{

    background:white;

    color:#071426;

}

.hero-image{

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#2563EB;

    border-radius:50%;

    filter:blur(120px);

    opacity:.28;

    z-index:-1;

}

.hero-image img{

    width:420px;

    border-radius:25px;

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:15px;

}

.section-title p{

    color:#c7d2e4;

    font-size:18px;

}

/*==================================================
ABOUT
==================================================*/

.about{

    padding:140px 0;

}

.about-container{

    display:grid;

    grid-template-columns:400px 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:360px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.about-content h2{

    font-size:48px;

    margin-bottom:30px;

}

.about-content p{

    color:#d4d4d4;

    line-height:1.9;

    margin-bottom:22px;

    font-size:18px;

}

.about-content strong{

    color:#3B82F6;

}

/*==================================================
SKILLS
==================================================*/

.skills{

    padding:140px 0;

}

.skills-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.skill-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.skill-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.skill-card h3{

    margin-bottom:30px;

    font-size:24px;

}

.skill-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.skill-tags span{

    background:#1D4ED8;

    color:white;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    transition:.3s;

}

.skill-tags span:hover{

    background:#3B82F6;

    transform:scale(1.05);

}

/*==================================================
PROJECTS
==================================================*/

.projects{

    padding:140px 0;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.project-card{

    background:#102443;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

    font-size:26px;

}

.project-content p{

    color:#c9d2e4;

    line-height:1.8;

    margin-bottom:25px;

}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.project-tags span{

    background:#1D4ED8;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

}

.project-btn{

    display:inline-block;

    text-decoration:none;

    color:white;

    background:#3B82F6;

    padding:14px 26px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.project-btn:hover{

    background:#2563EB;

}

/*==================================================
FOOTER
==================================================*/

footer{

    padding:80px 0;

    margin-top:120px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-container h2{

    font-size:34px;

    margin-bottom:12px;

}

.footer-container p{

    color:#bfc8d6;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:25px;

    margin:35px 0;

}

.footer-social a{

    color:white;

    font-size:26px;

    transition:.3s;

}

.footer-social a:hover{

    color:#3B82F6;

    transform:translateY(-5px);

}

.copyright{

    margin-top:30px;

    color:#8FA5C8;

    font-size:15px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.hero-container,
.about-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:50px;

}

.skills-grid{

grid-template-columns:1fr;

}

.projects-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

}

@media(max-width:768px){

.hero-text h1{

font-size:52px;

}

.section-title h2{

font-size:38px;

}

.about-content h2{

font-size:38px;

}

.hero-image img{

width:300px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:230px;

text-align:center;

}

}

/*==============================
SCROLL ANIMATIONS
==============================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/*==============================
ACTIVE NAVIGATION
==============================*/

nav a.active{

    color:#3B82F6;

}

/*==============================
HEADER SCROLL
==============================*/

.header-scroll{

    background:rgba(7,20,38,.95);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}
