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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000000;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* Background canvas */

#neural-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Page shell */

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 32px;
}

.card {
  width: 100%;
  max-width: 1120px;
  background-color: #f4f4f4;
  border-radius: 35px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 96px 72px 56px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .card {
    padding: 80px 32px 40px;
  }
}

@media (max-width: 640px) {
  .card {
    padding: 72px 20px 32px;
    border-radius: 26px;
  }
}

/* Navigation */

.nav-shell {
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f4f4f4;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #cccccc;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  color: #f4f4f4;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #f4f4f4;
  opacity: 0.8;
  transition: width 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(244, 244, 244, 0.4);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1px;
  background-color: #f4f4f4;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    right: 16px;
    top: 64px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top right;
    transform: scale(0.9) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Sections */

.section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-header p {
  margin-top: 8px;
  color: #555555;
  font-size: 15px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 520px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-name {
  display: inline-block;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 16px;
  color: #555555;
  max-width: 420px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neural-sphere {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, rgba(0, 0, 0, 0.04), transparent 65%),
    radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.06), transparent 60%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.sphere-layer {
  position: absolute;
  inset: 14%;
  border-radius: inherit;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  opacity: 0.8;
  transform-origin: center;
}

.sphere-layer-1 {
  animation: orbit 18s linear infinite;
}

.sphere-layer-2 {
  inset: 23%;
  animation: orbit 24s linear infinite reverse;
}

.sphere-layer-3 {
  inset: 32%;
  animation: orbit 30s linear infinite;
}

.sphere-layer::before,
.sphere-layer::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #111111;
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.25);
}

.sphere-layer::before {
  top: -3px;
  left: 35%;
}

.sphere-layer::after {
  bottom: -3px;
  right: 25%;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .neural-sphere {
    width: 220px;
    height: 220px;
  }
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-main p {
  font-size: 16px;
  color: #111111;
  line-height: 1.6;
}

.about-main p + p {
  margin-top: 10px;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-block {
  padding: 10px 12px;
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.meta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #555555;
}

.meta-value {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

@media (max-width: 840px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Skills */

/* Skills */

.skills-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: flex-start;
}

.skills-intro p {
  font-size: 15px;
  color: #555555;
  margin-top: 4px;
}

.skills-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: rgba(0, 0, 0, 0.02);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.skill-card {
  padding: 12px 14px 14px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transform-origin: center;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.16s ease-out,
    background-color 0.16s ease-out;
}

.skill-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.skill-name {
  font-size: 14px;
}

.skill-value {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #777777;
}

.skill-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111111, #333333);
}

.skill-card.soft {
  grid-column: span 2;
}

.soft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.soft-tags span {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .skills-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card.soft {
    grid-column: auto;
  }
}

/* Education & Achievements */

:root {
  --edu-accent: #5a4d7a;
  --edu-accent-bg: rgba(90, 77, 122, 0.12);
  --edu-ongoing: #2d8a5e;
}

.edu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 20px;
  margin-bottom: 24px;
}

.edu-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edu-timeline-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 12px 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.edu-timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  background: var(--edu-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.edu-timeline-card:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.edu-timeline-card.active {
  background-color: var(--edu-accent-bg);
  border-color: rgba(90, 77, 122, 0.25);
}

.edu-timeline-card.active::before {
  opacity: 1;
}

.edu-timeline-dates {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.edu-timeline-school {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.edu-timeline-badge {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

.edu-timeline-badge.ongoing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--edu-ongoing);
}

.edu-timeline-badge.ongoing .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--edu-ongoing);
}

.edu-detail-panel {
  position: relative;
  min-height: 200px;
}

.edu-detail-content {
  display: none;
  padding: 18px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  position: absolute;
  inset: 0;
}

.edu-detail-content.active {
  display: block;
  position: relative;
}

.edu-detail-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.edu-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

.edu-detail-score {
  position: absolute;
  top: 18px;
  right: 20px;
  text-align: right;
}

.edu-detail-score-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--edu-accent);
  line-height: 1.1;
}

.edu-detail-score-label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.edu-detail-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 12px;
  padding-right: 80px;
}

.edu-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.edu-detail-tags span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--edu-accent-bg);
  color: var(--edu-accent);
  font-weight: 500;
}

.edu-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.achievements-block {
  padding: 14px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.achievements-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.achievements-block ul {
  padding-left: 18px;
  font-size: 14px;
  color: #555555;
}

.achievements-block li + li {
  margin-top: 4px;
}

.achievements-note {
  font-size: 13px;
  color: #777777;
  margin-bottom: 10px;
}

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

.cert-chip {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.02);
  font-size: 13px;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    transform 0.14s ease;
}

.cert-chip:hover {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .edu-layout {
    grid-template-columns: 1fr;
  }

  .edu-detail-panel {
    min-height: auto;
  }

  .edu-detail-content {
    position: relative;
  }

  .edu-detail-content.active {
    position: relative;
  }

  .edu-detail-score {
    position: static;
    margin-bottom: 8px;
  }

  .edu-detail-desc {
    padding-right: 0;
  }

  .edu-extra {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
  transform-origin: center;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.18s ease-out;
}

.project-media {
  position: relative;
  height: 150px;
  background: radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.06), transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.08), transparent 60%);
  overflow: hidden;
}

.project-media::before,
.project-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  opacity: 0.65;
}

.project-media::before {
  width: 280px;
  height: 280px;
  top: -40%;
  left: -10%;
}

.project-media::after {
  width: 220px;
  height: 220px;
  bottom: -50%;
  right: -5%;
}

.project-media-1::before {
  animation: float-slow 18s linear infinite;
}
.project-media-1::after {
  animation: float-slow 22s linear infinite reverse;
}
.project-media-2::before {
  animation: float-slow 20s linear infinite;
}
.project-media-2::after {
  animation: float-slow 26s linear infinite reverse;
}
.project-media-3::before {
  animation: float-slow 20s linear infinite;
}
.project-media-3::after {
  animation: float-slow 28s linear infinite reverse;
}
.project-media-4::before {
  animation: float-slow 24s linear infinite;
}
.project-media-4::after {
  animation: float-slow 30s linear infinite reverse;
}

@keyframes float-slow {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(360deg) translate3d(0, 0, 0);
  }
}

.project-body {
  padding: 16px 16px 18px;
}

.project-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.project-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.project-tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-actions {
  margin-top: 14px;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 960px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Resume */

.resume-block {
  padding: 18px 18px 20px;
  border-radius: 18px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.resume-block p {
  font-size: 15px;
  color: #555555;
  max-width: 480px;
}

@media (max-width: 720px) {
  .resume-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 26px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  padding: 10px 12px;
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #555555;
}

.contact-value {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 16px 16px 18px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #555555;
}

.form-field input,
.form-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 9px 10px;
  font-size: 14px;
  outline: none;
  background-color: #fafafa;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 1px #111111;
  background-color: #ffffff;
}

.form-note {
  margin-top: 8px;
  font-size: 12px;
  color: #777777;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.16s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn.primary {
  background-color: #111111;
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.8);
}

.btn.primary:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.8);
}

.btn.ghost {
  background-color: transparent;
  color: #111111;
  border: 1px solid #111111;
}

.btn.ghost:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
}

/* Footer */

.footer {
  padding-top: 24px;
  font-size: 12px;
  color: #777777;
  display: flex;
  justify-content: center;
}

/* Scroll reveal & states */

[data-section] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.28s ease-out,
    transform 0.32s ease-out;
}

[data-section].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Certificate modal */

.cert-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cert-modal.open {
  display: flex;
}

.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.cert-modal-content {
  position: relative;
  max-width: 820px;
  max-height: 90vh;
  padding: 10px;
  border-radius: 18px;
  background-color: #f4f4f4;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.cert-modal-content img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
}

.cert-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(244, 244, 244, 0.9);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* Responsive fine-tuning */

@media (max-width: 480px) {
  .section {
    padding: 32px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }
}

.hero-socials{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.hero-socials img{
  transition: transform 0.2s ease;
  cursor:pointer;
}

.hero-socials img:hover{
  transform:scale(1.2);
}
