body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f2833;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 24px;
  color: #66fcf1;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #c5c6c7;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #66fcf1;
}

/* Section */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  color: #66fcf1;
  text-align: center;
  margin-bottom: 30px;
}

.section-intro {
  font-size: 1rem;
  color: #c5c6c7;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #1f2833;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #45a29e;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #66fcf1;
}

.service-card h3 {
  color: #66fcf1;
  font-size: 1.2rem;
  margin-top: 15px;
}

.service-card p {
  color: #c5c6c7;
  margin-top: 10px;
  line-height: 1.6;
}

.service-card i {
  width: 36px;
  height: 36px;
  color: #66fcf1;
}

/* Hire Me CTA */
.hire-me {
  text-align: center;
  margin-top: 60px;
}

.hire-button {
  display: inline-block;
  margin-top: 10px;
  background-color: #66fcf1;
  color: #0b0c10;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hire-button:hover {
  background-color: #45a29e;
}

/* Inquiry Form */
.inquiry-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background: #c5c6c7;
  color: #0b0c10;
  font-size: 15px;
}

.inquiry-form button {
  padding: 12px;
  background-color: #66fcf1;
  color: #0b0c10;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.inquiry-form button:hover {
  background-color: #45a29e;
}

/* Footer */
footer {
  background-color: #1f2833;
  color: #c5c6c7;
  text-align: center;
  padding: 1rem;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
