/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #2457d6;
  --secondary: #08a6b7;
  --accent: #f59f23;
  --ink: #0c1727;
  --text: #172033;
  --muted: #5e6b80;
  --surface: #ffffff;
  --surface-blue: #eef8ff;
  --surface-warm: #fff7e8;
  --line: rgba(106, 127, 153, 0.2);
  --shadow: 0 20px 55px rgba(12, 23, 39, 0.11);
  --shadow-soft: 0 14px 35px rgba(36, 87, 214, 0.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(238, 248, 255, 0.95), rgba(255, 247, 232, 0.64) 46%, rgba(246, 250, 255, 0.95)),
    #f7fbff;
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 87, 214, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 166, 183, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

/* Particle Background */
#particles-js {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: transparent;
  pointer-events: none;
}

header,
section,
footer,
nav {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.linkedin-top {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  color: #0a66c2;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.88)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 102, 194, 0.18);
  box-shadow: 0 16px 36px rgba(12, 23, 39, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.linkedin-top span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  font-family: Arial, sans-serif;
  background: #0a66c2;
  box-shadow: 0 10px 20px rgba(10, 102, 194, 0.22);
}

.linkedin-top:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0a66c2, #2457d6);
  box-shadow: 0 22px 42px rgba(10, 102, 194, 0.2);
  transform: translateY(-2px);
}

.linkedin-top:hover span {
  color: #0a66c2;
  background: #ffffff;
}

/* ================= HEADER ================= */
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 72px 24px 42px;
  text-align: left;
  overflow: visible;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.11), transparent 36%),
    linear-gradient(315deg, rgba(245, 159, 35, 0.14), transparent 40%);
}

.hero-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  animation: fadeUp 1s ease;
}

.profile-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: auto;
  padding: 0;
  position: relative;
  isolation: isolate;
}

.profile-media::before {
  display: none;
}

.profile-media::after {
  display: none;
}

.portrait-frame {
  width: 280px;
  height: 280px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 0 24px 48px rgba(12, 23, 39, 0.1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.portrait-frame::before {
  display: none;
}

.portrait-frame::after {
  display: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  background: #f0f4f8;
  mix-blend-mode: normal;
  filter: saturate(1.1) contrast(1.08) brightness(0.98);
}

.availability-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.96));
  border: 1px solid rgba(106, 127, 153, 0.15);
  box-shadow: 0 16px 32px rgba(12, 23, 39, 0.1);
  margin-top: 8px;
}

.availability-card span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
  animation: pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.profile {
  max-width: 720px;
}

.subtitle {
  min-height: 40px;
  margin-bottom: 4px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--primary);
}

#typing-text {
  color: var(--primary);
  border-right: 2px solid var(--secondary);
  padding-right: 5px;
  animation: blink 0.8s infinite;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  font-weight: 800;
  color: var(--ink);
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta.primary,
button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 36px rgba(36, 87, 214, 0.22);
}

.cta.secondary {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 232, 0.88));
  border: 1px solid rgba(106, 127, 153, 0.2);
  box-shadow: 0 14px 32px rgba(12, 23, 39, 0.08);
}

.cta:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(36, 87, 214, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics div {
  min-height: 114px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 248, 255, 0.82) 50%, rgba(255, 247, 232, 0.72));
  border: 1px solid rgba(106, 127, 153, 0.18);
  box-shadow: 0 16px 34px rgba(12, 23, 39, 0.08);
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* ================= NAVIGATION ================= */
nav {
  width: min(940px, 100%);
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 248, 255, 0.8) 52%, rgba(255, 247, 232, 0.74)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 55px rgba(12, 23, 39, 0.13);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 1000;
  overflow: hidden;
}

nav::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(36, 87, 214, 0.08);
  pointer-events: none;
}

nav::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 87, 214, 0.22), rgba(8, 166, 183, 0.28), rgba(245, 159, 35, 0.22), transparent);
  pointer-events: none;
}

nav a {
  min-width: 108px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #40516a;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

nav a:hover,
nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #12213a, var(--primary) 54%, var(--secondary));
  box-shadow: 0 14px 28px rgba(36, 87, 214, 0.22);
  transform: translateY(-1px);
}

nav a:hover::after,
nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ================= SECTIONS ================= */
section {
  width: 100%;
  margin: 0;
  padding: 86px max(24px, calc((100vw - 1120px) / 2 + 24px));
  border-top: 1px solid rgba(106, 127, 153, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 248, 255, 0.62));
  scroll-margin-top: 96px;
  overflow: hidden;
}

section:nth-of-type(even) {
  background: linear-gradient(135deg, rgba(248, 252, 255, 0.82), rgba(255, 247, 232, 0.66));
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(960px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(36, 87, 214, 0.28), rgba(8, 166, 183, 0.3), rgba(245, 159, 35, 0.24), transparent);
  opacity: 1;
}

section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: max(0px, calc((100vw - 1120px) / 2));
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 166, 183, 0.12), transparent 68%);
  pointer-events: none;
}

section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(36, 87, 214, 0.3), rgba(8, 166, 183, 0.18), transparent);
}

.section-heading > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-soft);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, var(--ink), var(--primary) 58%, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  color: var(--ink);
  line-height: 1.35;
}

p,
li {
  color: var(--muted);
}

.about-panel,
.timeline-item,
.experience-card,
.project,
.certificate-grid article,
.contact-copy,
form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 255, 0.84) 48%, rgba(255, 247, 232, 0.76)),
    var(--surface);
  border: 1px solid rgba(106, 127, 153, 0.18);
  box-shadow: 0 18px 44px rgba(12, 23, 39, 0.08);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 26px;
}

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

.skill-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 234, 254, 0.78));
  border: 1px solid rgba(36, 87, 214, 0.12);
}

/* ================= TIMELINE ================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  min-height: 230px;
  padding: 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item::before,
.experience-card::before,
.project::before,
.certificate-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.timeline-item:hover,
.experience-card:hover,
.project:hover,
.certificate-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(12, 23, 39, 0.12);
}

.timeline-year {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #164e63;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(209, 250, 229, 0.74);
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.timeline-item strong {
  display: block;
  margin-top: 14px;
  color: var(--primary);
}

/* ================= EXPERIENCE ================= */
.experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 32px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-label,
.project-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7c3f00;
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(255, 237, 213, 0.9);
}

.experience-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.experience-card p {
  grid-column: 1 / -1;
}

.experience-date {
  align-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(106, 127, 153, 0.16);
  white-space: nowrap;
}

/* ================= PROJECTS ================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.project {
  min-height: 260px;
  padding: 30px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* ================= CERTIFICATES ================= */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.certificate-grid article {
  min-height: 150px;
  padding: 26px;
  border-radius: 24px;
  color: var(--ink);
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* ================= CONTACT ================= */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.contact-copy,
form {
  border-radius: 26px;
}

.contact-copy {
  padding: 32px;
}

.contact-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.info {
  margin-top: 22px;
  font-weight: 700;
  color: var(--text);
}

form {
  padding: 24px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 16px 18px;
  margin: 10px 0;
  border: 1px solid rgba(106, 127, 153, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form input::placeholder,
form textarea::placeholder {
  color: #8796aa;
}

form input:focus,
form textarea:focus {
  border-color: rgba(36, 87, 214, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(36, 87, 214, 0.1);
}

form button {
  margin-top: 8px;
  cursor: pointer;
}

form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

#form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

#form-status.success {
  color: #16a34a;
}

#form-status.error {
  color: #dc2626;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 34px 20px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(106, 127, 153, 0.14);
}

/* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(106, 127, 153, 0.18);
  background: linear-gradient(135deg, var(--ink), var(--primary));
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 16px 32px rgba(12, 23, 39, 0.16);
  z-index: 1000;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= SCROLL ANIMATION ================= */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= KEYFRAMES ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  header {
    padding: 48px 20px 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .profile-media {
    justify-self: center;
    width: min(360px, 100%);
    padding-bottom: 72px;
  }

  .profile {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .timeline,
  .project-grid,
  .certificate-grid,
  .contact-layout,
  .about-panel {
    grid-template-columns: 1fr;
  }

  nav {
    width: min(760px, 100%);
    flex-wrap: wrap;
    border-radius: 28px;
  }

  nav a {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  header {
    min-height: auto;
    padding-top: 86px;
  }

  .linkedin-top {
    top: 18px;
    right: 20px;
  }

  .portrait-frame {
    width: min(300px, 78vw);
    border-radius: 30px;
  }

  .portrait-frame img {
    border-radius: 30px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  nav a {
    min-width: 0;
    padding: 13px 10px;
  }

  section {
    padding: 64px 20px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 14px;
  }

  .section-heading::after {
    display: none;
  }

  .about-panel,
  .experience-card,
  .project,
  .timeline-item,
  .certificate-grid article,
  .contact-copy,
  form {
    padding: 24px;
    border-radius: 22px;
  }

  .experience-card {
    grid-template-columns: 1fr;
  }

  .experience-date {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  header {
    padding-inline: 16px;
  }

  .linkedin-top {
    right: 16px;
    padding-right: 12px;
    font-size: 0.92rem;
  }

  .profile-media {
    width: min(310px, 100%);
    padding: 12px 10px 70px;
  }

  .profile-media::before {
    inset: 44px 24px 86px 30px;
    border-radius: 28px;
  }

  .profile-media::after {
    right: 12px;
    top: 64px;
    height: 150px;
  }

  .portrait-frame {
    width: min(268px, 78vw);
    border-radius: 28px;
  }

  .portrait-frame::before {
    inset: 24px -8px -12px 18px;
    border-radius: 26px;
  }

  .portrait-frame::after {
    left: -10px;
  }

  .portrait-frame img {
    border-radius: 28px;
  }

  .availability-card {
    max-width: calc(100vw - 48px);
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta,
  button {
    width: 100%;
  }

  nav {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .section-heading > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  section {
    padding-inline: 16px;
  }

  form input,
  form textarea {
    padding: 14px 16px;
  }
}
