* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: linear-gradient(135deg, #89a617, #007bff);
  color: #fff;
  padding: 1.5rem 0;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #ff0073;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  display: none;
}



.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

h1{
  font-size: 2.0rem;
  margin: -10px;
  padding: 5px;
  margin-left: 16px;
  padding-left: -12px;
  margin-top: -91px;
  margin-right:150px

}
p1{
  font-size: 0.8rem;
  margin: -10px;
  padding: -10px;
  
  padding-right: 175px;
  margin-top:-60px;

}
/*
.header-text span {
  color: #ff0073;
}
*/
.header-text p {
  margin: 0.5rem 0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: #ff0073;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background: #e60063;
}

.header-img img {
  max-width: 180px;
  border-radius: 50%;
}
.div{
  background-color: rgb(131, 148, 148);
}
/* Sections */
section {
  padding: 3rem 0;
  
}


section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #007bff;

}

/* About */
#about p {
  text-align: center;
  margin: 1rem 0;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #919096;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  margin-bottom: 0.5rem;
  color: #007bff;
}

/* Contact */
#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact form input,
#contact form textarea,
#contact form button {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#contact form button {
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

#contact form button:hover {
  background: #0056b3;
}

/* Footer */
footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #007bff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  nav ul.show {
    display: block;
  }

  .hamburger {
    display: block;
    color: #fff;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .header-img img {
    margin-top: 1rem;
  }
}