.page-main-section {
  width: 80vw;
  margin: auto;
}

.page-main-section h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2px;
}

.page-main-section-underline {
  height: 8px;
  width: 130px;
  border-radius: 10px;
  background-color: #0f172a;
  margin-bottom: 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.skill-card {
  background: #111827;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.skill-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 14px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill {
  background: #0f172a;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#contactForm {
  max-width: 520px;
  margin: 60px auto;
  background-color: #0f172a; 
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contactForm label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

#contactForm input,
#contactForm textarea {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contactForm textarea {
  resize: none;
  min-height: 120px;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: white;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

#contactForm button {
  margin-top: 10px;
  background-color: white;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contactFormrm button:hover {
  background-color: #0f172a;
  color: white;
  outline: 2px solid white;
}

@media (max-width: 600px) {
  for#contactFormm {
    margin: 40px 16px;
    padding: 24px;
  }
}

.about-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 800px;
  text-align: center;
  color: #0f172a;
}

.about-container h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-underline {
  width: 80px;
  height: 4px;
  background-color: #0f172a;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.about-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #0f172a;
}

#main-form-status {
  color: white;
}

@media (max-width: 600px) {
  .about-container h1 {
    font-size: 32px;
  }

  .about-intro {
    font-size: 16px;
  }

  .page-main-section h1 {
    margin-top: 40px;
  }
}


