
        label {
            display: block;  
        }
        input[type="text"],
        input[type="email"],

        input[type="checkbox"]

        input[type="submit"] 
    
        
        textarea {
            width: 300px;
            padding: 5px;
    
        }
        textarea {
            height: 100px;
        }



body {
  font-family: 'Poppins', sans-serif;
  background:white;
  color: #222;
  line-height: 1.6;
}

header {
  background:black;
  color: white;
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6b6b;
}



.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, black, rgb(56, 56, 56));
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero span {
  color: #ff6b6b;
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #ff6b6b;
  color:white;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4040;
}


section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 20px auto;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px black;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}


.contact p {
  margin-bottom: 10px;
}


footer {
  background: black;
  color:lightgrey;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}


footer {
  background: #f8f8f8;
  color: #555;
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #666;
  margin: 0 15px;
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: black; 
  transform: translateY(-4px);
}

.skills {
  background:blacl;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.skill {
  background: #474646;
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.skill:hover {
  background: #ff6b6b;
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-link {
  display: inline-block;
  margin-top: 10px;
  color: white;
  background: #ff6b6b;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-link:hover {
  background: #ff4040;
}
