body{
    margin: 0;
    font-family: Arial;
    background: #111;
    color: white;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #000;
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin: 0 10px;
}

nav ul li a{
    color: white;
    text-decoration: none;
}

.hero{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #000, #333);
}

.hero h1{
    font-size: 40px;
}

.btn{
    padding: 10px 20px;
    background: orange;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.skills{
    text-align: center;
    padding: 50px;
    background: #181818;
}

.skills-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.skill{
    background: #222;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.skill :hover{
    background: orange;
    color: black;
}

.projects{
    padding: 50px;
    text-align: center;  
    
    
}  

.project-grid{
    display: flex;
    justify-content: center;
    gap: 20px;      
    
}

.project-card{
    background: #222;
    padding: 20px;     
   width: 250px;
    border-radius: 10px;
    transition: 0.3s;
}

.project-card :hover{
    transform: scale(1.05);
}

.project-card a{
    display: inline-block;
    margin-top: 10px;
    color: orange;
}

.contact{
    text-align: center;
    padding: 40px;
}

button{
    padding: 10px 20px;
    background: orange;
    border: none;
    cursor: pointer;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
  .container {
    display: grid; /* टैबलेट/डेस्कटॉप पर ग्रिड लेआउट */
    grid-template-columns: 1fr 1fr;
  }
}
