/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at center, #0a0f2c, #02030a);
  color: white;
  overflow-x: hidden;
}

/* =========================
   CONSULT SECTION
========================= */
.consult {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

/* STAR BACKGROUND */
.consult::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.15;
}

/* CONTENT */
.consult-box {
  max-width: 900px;
  z-index: 2;
}

/* TAG */
.consult-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #00eaff;
  color: #00eaff;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* HEADING */
.consult h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* GRADIENT TEXT */
.grad {
  background: linear-gradient(90deg, #00eaff, #7b61ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.consult-desc {
  color: #9aa3b2;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BUTTON */
.consult-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;

  color: black;
  background: linear-gradient(90deg, #00eaff, #00ff88);

  box-shadow:
    0 0 10px #00ff88,
    0 0 30px rgba(0,255,136,0.5);

  transition: 0.3s;
}

/* HOVER */
.consult-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 20px #00ff88,
    0 0 60px rgba(0,255,136,0.8);
}

/* =========================
   TECH STACK SECTION
========================= */
.tech {
  padding: 120px 20px;
  text-align: center;
}

/* HEADING */
.tech h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #e5e7eb;
}

/* GRID */
.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

/* PILLS */
.tech-grid span {
  padding: 10px 18px;
  border-radius: 25px;

  font-size: 13px;
  color: #cbd5e1;

  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}

/* HOVER */
.tech-grid span:hover {
  color: #fff;
  border-color: #00eaff;
  box-shadow:
    0 0 10px rgba(0,234,255,0.4),
    0 0 20px rgba(0,234,255,0.2);

  transform: translateY(-3px);
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  padding: 120px 20px;
  text-align: center;
}

/* HEADING */
.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.contact-sub {
  color: #8aa0da;
  margin-bottom: 50px;
}

/* FORM */
.contact-form {
  max-width: 800px;
  margin: auto;
}

/* ROW */
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUT GROUP */
.input-group {
  flex: 1;
  text-align: left;
}

/* LABEL */
.input-group label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #879edf;
  display: block;
  margin-bottom: 8px;
}

/* INPUT + TEXTAREA */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;

  border: 1px solid rgba(199, 197, 197, 0.26);
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(20px);

  color: white;
  font-size: 14px;

  outline: none;
  transition: 0.3s;
}

/* TEXTAREA HEIGHT */
.input-group textarea {
  height: 140px;
  resize: none;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #00eaff;
  box-shadow: 0 0 10px rgba(0,234,255,0.3);
}

/* FULL WIDTH */
.full {
  margin-bottom: 30px;
}

/* BUTTON */
.contact-btn {
  padding: 16px 40px;
  border-radius: 40px;
  border: none;

  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;

  color: black;
  background: linear-gradient(90deg, #00eaff, #00ff88);

  box-shadow:
    0 0 10px #00ff88,
    0 0 30px rgba(0,255,136,0.5);

  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 20px #00ff88,
    0 0 60px rgba(0,255,136,0.8);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .row {
    flex-direction: column;
  }

  .contact h2 {
    font-size: 28px;
  }

  .contact-btn {
    width: 100%;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .consult h1 {
    font-size: 32px;
  }

  .consult-desc {
    font-size: 14px;
  }

  .consult-btn {
    padding: 14px 30px;
  }
}