body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b0b0f;
  background-image: radial-gradient(circle at top left, #1f1f2e, #0b0b0f);
  color: #e0e0e0;
  text-align: center;
}

/* Navbar */
.navbar {
  background-color: #12121a;
  width: 90%;
  max-width: 1100px;
  margin: 20px auto;
  padding: 15px 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 15px rgba(90, 90, 255, 0.2);
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #6f8cff;
}

/* Hero Section */
.hero {
  margin-top: 100px;
}

.hero h1 {
  font-size: 56px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(111, 140, 255, 0.5);
}

.hero span {
  color: #6f8cff;
}

.hero p {
  max-width: 650px;
  margin: 20px auto;
  line-height: 1.6;
  color: #bbbbbb;
}

/* Button */
button {
  padding: 12px 24px;
  font-size: 15px;
  background-color: #6f8cff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #8faaff;
  box-shadow: 0 0 15px rgba(111, 140, 255, 0.4);
}

/* Projects Section */
.projects-section {
  padding: 60px 20px;
}

.projects-section h2 {
  color: #6f8cff;
  font-size: 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-box {
  background-color: #17171f;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(111, 140, 255, 0.1);
  transition: transform 0.3s ease;
}

.project-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(111, 140, 255, 0.3);
}

.project-box h3 {
  margin-top: 0;
  color: #ffffff;
}

.project-box p {
  color: #cfcfcf;
}

.project-box a {
  display: inline-block;
  margin-top: 10px;
  color: #6f8cff;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #12121a;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  color: #aaa;
}


/* Contact Section */
.section {
  padding: 60px 20px;
  max-width: 700px;
  margin: auto;
  background-color: #12121a;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(111, 140, 255, 0.08);
  margin-top: 60px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  color: #6f8cff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(111, 140, 255, 0.4);
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 15px;
  background-color: #1c1c26;
  border: 1px solid #303040;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 16px;
  resize: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #6f8cff;
  outline: none;
  box-shadow: 0 0 10px rgba(111, 140, 255, 0.3);
}

/* Submit Button */
button[type="submit"] {
  background-color: #6f8cff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #8faaff;
  box-shadow: 0 0 15px rgba(111, 140, 255, 0.4);
}