* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  /* color: white; */
  background: rgba(236, 200, 236, 0.184);
  font-size: 1rem;
}

/* NAVIGATION */
.mobile-header {
  display: block;
}
.desktop-header {
  display: none;
}

.logo {
  width: 120px;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
  height: auto;
  display: block;
  margin: 10px auto;
}
/* Mobile navigation */
/* NAVIGATION */
.mobile-header {
  width: 100%;
  color: black;
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
}

/* the HAMBURGER MENU styling */
.hamburger {
  cursor: pointer;
  margin: 6px;
}
.features-icon {
  stroke: var(--charcoal);
  width: 40px;
  height: 40px;
}
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: purple;
  margin: 7px 0;
  transition: 0.4s;
}

/* .change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
} */

.topnav {
  background: radial-gradient(circle at center, #0a0f2c, #050618);
  color: white;
}

.topnav a {
  color: var(--charcoal);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a:hover {
  background-color: var(--cream);
}

.header-box {
  margin-bottom: 120px;
}
.sidenav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 48px;
  padding-right: 48px;
  background-color: var(--cream);
  color: #050618;
  line-height: 1.4;
  height: 120px;
}
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  color: var(--charcoal);
}
.sidenav a:hover {
  color: var(--muted-teal);
  background-color: var(cream);
}

/* Animate the hamburger */

.hamburger.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.change .bar2 {
  opacity: 0;
}

.hamburger.change .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Open-show mobile menu */
#myLinks {
  display: none;
}

#myLinks.open {
  display: flex;
}

/* Sticky navigation class */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* keeps it above other elements */
  background-color: white;
}
/*  */
/* ------------------------------
   SECTION WRAPPER
--------------------------------*/
.client-form-section {
  padding: 3rem 1.25rem;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 55%, #000 100%);
  color: #f5f5ff;
}

.client-form__inner {
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------
   HEADER
--------------------------------*/
.client-form__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.client-form__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.client-form__header p {
  color: #a5a7c7;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0.5rem auto 0;
}

/* ------------------------------
   FORM
--------------------------------*/
.client-form {
  display: grid;
  gap: 1.5rem;
}

/* ------------------------------
   FORM GROUP
--------------------------------*/
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  color: #c7c9e8;
}

/* ------------------------------
   INPUTS
--------------------------------*/
.client-form input,
.client-form textarea,
.client-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.7);
  color: #f5f5ff;
  font-size: 0.95rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.client-form input:focus,
.client-form textarea:focus,
.client-form select:focus {
  border-color: #a855f7;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.4);
  outline: none;
}

/* ------------------------------
   SUBMIT BUTTON
--------------------------------*/
.form-submit {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.55);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.8);
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (min-width: 768px) {
  .client-form-section {
    padding: 4rem 1.5rem;
  }
}

/* FEEDBACK TEXT */
small {
  color: #d12f2f;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.footer-box > * {
  position: relative;
  z-index: 2;
}

/* Abstract shape reused from About section */
/* .footer-abstract-shape {
  position: absolute;
  right: -40px;
  /* bottom: -20px; */
/* width: 160px;
  height: 160px; */

/* background: radial-gradient(circle at center, #9a00ff 0%, #3a00ff 100%);
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;

  opacity: 0.1;
  z-index: 0;


   width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #9a00ff 0%, #3a00ff 100%);
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  opacity: 0.2;
  z-index: -1;
} */
.footer-abstract-shape {
  position: absolute;
  right: 2rem;
  bottom: 10px;
  /* Size (mobile-first) */
  width: 200px;
  height: 280px;
  /* Exact gradient from the image */
  background: linear-gradient(180deg, #3a00ff 0%, #9a00ff 100%);

  /* Exact blob curvature */
  border-radius: 75% 35% 60% 40% / 40% 55% 45% 60%;

  /* Glow from the image */
  box-shadow: 0 0 40px rgba(150, 0, 255, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: -1;
}

/* BUTTONS */
.footer-btn {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-btn .btn {
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3a00ff;
  color: white;
}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
}

/* SOCIAL ICONS */
.form-heading i {
  margin-right: 1rem;
  transition: transform 0.2s ease;
}

.form-heading i:hover {
  transform: scale(1.1);
}

/* LOGO */
.footer-img img {
  width: 120px;
  display: block;
  margin: 0 auto;
}

/* COPYRIGHT */
#copyright {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}
/*  */
/* MODAL */
/* OVERLAY */
/* .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  z-index: 999;
}

.hidden {
  display: none;
} */
/*  */

@media (min-width: 768px) {
  .topnav {
    display: none;
  }
  .mobile-header {
    display: none;
  }
  .desktop-header {
    display: block;
  }
  /* form-contact */
  .form-contact {
    margin-bottom: 7rem;
  }
}
