*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    
    font-family:'Inter',sans-serif;
    background:#0f172a;
    color:white;
    
    }
    
    .navbar{
    
    position:fixed;
    top:0;
    width:100%;
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    
    padding:18px 60px;
    
    background:rgba(15,23,42,0.7);
    backdrop-filter:blur(10px);
    
    z-index:1000;
    
    }
    
    .logo{
    
    font-weight:700;
    font-size:22px;
    color:#38bdf8;
    
    }
    
    .nav-links a{
    
    margin-left:25px;
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
    
    }
    
    .nav-links a:hover{
    
    color:#38bdf8;
    
    }
    
    
    
    .hero{
    
    height:100vh;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    text-align:center;
    
    padding:100px 20px;
    
    }
    
    .hero h1{
    
    font-size:60px;
    margin-bottom:10px;
    
    }
    
    .hero h2{
    
    font-size:24px;
    color:#38bdf8;
    margin-bottom:20px;
    
    }
    
    .hero p{
    
    max-width:600px;
    margin:auto;
    opacity:0.8;
    
    }
    
    .hero-buttons{
    
    margin-top:30px;
    
    }
    
    .btn{
    
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    margin:10px;
    display:inline-block;
    transition:0.3s;
    
    }
    
    .primary{
    
    background:#38bdf8;
    color:black;
    
    }
    
    .secondary{
    
    border:1px solid #38bdf8;
    
    }
    
    .primary:hover{
    
    transform:translateY(-3px);
    
    }
    
    
    
    .section{
    
    padding:120px 10%;
    text-align:center;
    
    }
    
    .section-title{
    
    font-size:36px;
    margin-bottom:50px;
    
    }
    
    
    
    .projects-grid{
    
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    
    }
    
    .project-card{
    
    background:#1e293b;
    border-radius:12px;
    overflow:hidden;
    
    transition:0.4s;
    
    }
    
    .project-card:hover{
    
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
    
    }
    
    .project-card img{
    
    width:100%;
    height:200px;
    object-fit:cover;
    
    }
    
    .project-info{
    
    padding:20px;
    
    }
    
    .project-info h3{
    
    margin-bottom:10px;
    
    }
    
    .project-info a{
    
    color:#38bdf8;
    text-decoration:none;
    
    }
    
    
    
    .skills-grid{
    
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px;
    
    }
    
    .skills-grid span{
    
    background:#1e293b;
    padding:12px;
    border-radius:8px;
    
    }
    
    
    
    .dark{
    
    background:#020617;
    
    }
    
    
    
    .contact-card{
    
    max-width:400px;
    margin:auto;
    background:#1e293b;
    padding:30px;
    border-radius:10px;
    
    }
    
    .contact-card a{
    
    color:#38bdf8;
    display:block;
    margin-bottom:20px;
    
    }
    
    
    
    footer{
    
    text-align:center;
    padding:30px;
    opacity:0.6;
    
    }