body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #5761b2, #1fc5a8);
  color: #333;
  line-height: 1.6;
  background-attachment: fixed;
  background-size: cover;
}
header {
  background: #ee6b6e; /* Coral with slight transparency */
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(5px);
}
#hero {
  padding: 100px 20px;
  color: #fff;
  background: linear-gradient(135deg, #f7dba7, #f0ab86);
  border-radius: 20px;
  border-spacing: 50px;
  width: auto;
}


nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 1.3s;
}
.project-card {
  background: rgba(255,255,255,0.7);
  border: 3px solid black;
  padding: 20px;
  margin: 20px auto;
  width: 70%;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  border-color: #6a359c;
background: linear-gradient(135deg,  #264653, #2a9d8f);
}



form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}
form input, form textarea {
  padding: 12px;
  margin: 10px 0;
  border: 2px solid rgba(93,173,226,0.8);
  border-radius: 6px;
  background: rgba(255,255,255,0.7);
  color: #333;
}
form input:focus, form textarea:focus {
  border-color: rgba(255,111,97,0.8);
  outline: none;
}

form button {
  background: #f69697;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

form button:hover {
  background: #6a359c;
}
#hero { border-color: #6a359c; text-align: center;}
#about { border-color: #6a359c;
text-align: center; }
#projects { border-color: #6a359c;
text-align: center; }
#contact { border-color: #6a359c; 
align-items: center;
text-align: center;
}
#projects {
    background-color: #f0f0f0;   /* background color */
      padding: 20px;              /* space inside the box */
      margin: 20px auto;          /* space outside the box */
      width: 90%;                 /* control width */
      border-radius: 10px;        /* rounded corners */
      box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* soft shadow */
}