/* ========== Global ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
  /* Smooth scroll for anchor links */
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Fixed height for scroll snapping */
  overflow-y: scroll;
  /* Enable vertical scroll */
  scroll-snap-type: y mandatory;
  /* Enforce mandatory snapping */
  overflow-x: hidden;
  display: flex;
  padding: 30px 0;
  justify-content: center;
  align-items: flex-start;
}

/* Background video */
.back-vid {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-aspect-ratio: 16/9) {
  .back-vid {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .back-vid {
    width: 100%;
    height: auto;
  }
}

/* ========== Shell ========== */
.main-section {
  width: 90%;
  height: auto;
  /* Grow with content */
  min-height: 90vh;
  background-color: #4ad0ee1b;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 5px 5px 20px 1px #4acfee;
  padding-bottom: 50px;
  /* Add bottom spacing */
}

/* Sticky Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 18, 23, 0.6);
  /* Semi-transparent background for readability */
  backdrop-filter: blur(15px);
  border-radius: 50px 50px 0 0;
  /* Keep top rounded corners if consistent with shell */
  border-bottom: 1px solid rgba(74, 207, 238, 0.2);
}

nav h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

nav ul {
  list-style: none;
  display: flex;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .2s;
  padding: 0 25px;
}

nav a:hover,
.active {
  color: #4acfee;
  text-decoration: underline;
}

nav a.active {
  color: #4acfee;
  text-decoration: underline;
}

/* Force active class */

/* Section Spacing */
.section-content {
  padding-top: 80px;
  /* Offset for sticky nav */
  margin-top: -60px;
  /* Pull back up so spacing looks right but anchor hits correctly */
  min-height: 100vh;
  /* Ensure sections take up full viewport */
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  /* Snap top of section to top of viewport */
  scroll-snap-stop: always;
  /* Force stop at each section */
}


/* ========== Hero ========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 70%;  Remove fixed percentage height */
  min-height: 60vh;
  padding: 40px 10%;
  color: #fff;
  gap: 24px;
}

.hero h1 {
  font-size: 60px;
}

.hero h2 {
  margin-top: 20px;
  font-size: 30px;
  text-transform: uppercase;
  background: linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
}

.hero p {
  max-width: 450px;
  margin-top: 7px;
  margin-bottom: 20px;
}

@keyframes animate-gradient {
  to {
    background-position: 200%;
  }
}

.Buttons {
  display: flex;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #4acfee;
  border: 2px solid #4acfee;
  border-radius: 40px;
  box-shadow: 0 0 10px #4acfee;
  font-size: 16px;
  font-weight: 900;
  color: #0e1217;
  cursor: pointer;
  margin-right: 15px;
  transition: .3s;
  text-wrap: nowrap;
}

.btn:hover {
  background: transparent;
  box-shadow: none;
  color: #4acfee;
}

.ul-icons {
  display: flex;
  align-items: center;
}

.ul-icons li {
  list-style: none;
  margin-left: 10px;
}

.ul-icons a {
  display: inline-flex;
  padding: 8px;
  border: 2px solid #4acfee;
  border-radius: 50%;
  font-size: 20px;
  color: #4acfee;
  text-decoration: none;
  margin: 0 7px;
  transition: .3s;
}

.ul-icons a:hover {
  background: #4acfee;
  color: #0e1217;
  box-shadow: 0 0 10px #4acfee;
}

/* ========== 3D Avatar (centered in circle) ========== */
.hero-img {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px #4eddfd;
  transition: .5s;
}

.hero-img:hover {
  box-shadow: 0 0 25px #4acfee;
}

.bg-main {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

/* Fine-tune variables (optional): adjust without editing Spline */
:root {
  --spline-scale: 1.2;
  --spline-shift-x: 50px;
  --spline-shift-y: 0px;
}

spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform: translate(var(--spline-shift-x), var(--spline-shift-y)) scale(var(--spline-scale));
  transform-origin: center center;
}

/* Legacy image (if used) */
.hero-img img {
  position: absolute;
  width: 85%;
  mix-blend-mode: lighten;
}

/* ========== Info cards ========== */
.info-sec {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 0 10%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-card {
  display: flex;
  width: 100%;
  align-items: center;
  max-width: fit-content;
}

.info-sec h1 {
  font-size: 55px;
  text-transform: uppercase;
  background: linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
  margin-right: 10px;
}

.info-sec p {
  color: #fff;
  font-size: 20px;
}

/* ========== Typewriter ========== */
.hero-info .typewriter {
  font-size: 24px;
  /* keep "I'm a" small */
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.2;
  white-space: nowrap;
}

.typewriter .typewriter-text {
  font-size: 40px;
  /* big + glowing role text */
  font-weight: 700;
  color: #59a3e7;
  text-shadow: 0 0 10px #317ec7;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.typewriter .typewriter-text.show {
  opacity: 1;
}

.typewriter .caret {
  font-size: 30px;
  /* same as role text */
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ========== Responsive ========== */
@media (min-width: 1220px) {

  /* body { width: 100%; height: 100vh; overflow: hidden; } Remove restrictive body styles */
  .info-sec {
    margin-top: 30px;
  }
}

@media (max-width: 980px) {

  /* body { height: fit-content; overflow: auto; } */
  .main-section nav ul {
    display: none;
  }

  /* Hide nav links on mobile - consider adding a burger menu or horizontal scroll */
  .Buttons {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    flex-direction: column;
    gap: 32px;
  }

  .hero-img {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 440px) {
  .hero-img {
    width: 350px;
    height: 350px;
  }

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

.profile-photo {
  width: 120px;
  /* size of photo */
  height: 120px;
  border-radius: 50%;
  /* makes it circular */
  object-fit: cover;
  /* keeps proportions */
  border: 3px solid #4acfee;
  /* glowing border */
  box-shadow: 0 0 15px #4acfee;
  margin-bottom: 20px;
  /* spacing under photo */
}

/* Align photo + name cleanly in the hero heading */
.hero-name {
  display: flex;
  align-items: center;
  /* vertically center image and text */
  gap: 16px;
  /* space between photo and name */
  line-height: 1;
  /* keep the row compact */
}

/* Size and style the small photo */
.hero-name .profile-photo {
  width: 64px;
  /* tweak 56–80px to taste */
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  /* prevents squishing */
  border: 3px solid #4acfee;
  box-shadow: 0 0 12px #4acfee;
}

/* Optional: keep long names from wrapping under the image */
@media (min-width: 768px) {
  .hero-name {
    white-space: nowrap;
  }
}

/* ===== About Page ===== */
.about-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  /* left sidebar + story */
  gap: 28px;
  align-items: start;
  /* top align */
  padding: 0 10% 24px;
  color: #fff;
  margin-top: 10px;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4acfee;
  box-shadow: 0 0 15px #4acfee;
  margin-top: 0;
}

.about-hero-text h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.about-hero-text p {
  max-width: none;
  margin: 8px 0 14px;
}

.about-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Stats row (matches your glass look) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 16px;
  padding: 24px 10%;
  color: #fff;
}

.about-stats .stat {
  background: rgba(74, 207, 238, 0.08);
  border: 1px solid rgba(74, 207, 238, 0.35);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 0 10px rgba(74, 207, 238, 0.2);
}

.about-stats .stat h3 {
  font-size: 36px;
  margin-bottom: 6px;
  background: linear-gradient(to right, #4acfee, #5bbdff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid alignment for Education & Work Experience */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* two equal columns */
  gap: 28px;
  /* space between them */
  padding: 20px 10%;
  /* balanced side padding */
  color: #fff;
  align-items: stretch;
  /* make cards the same height */
}

/* Card style */
.about-card {
  background: rgba(74, 207, 238, 0.08);
  border: 1px solid rgba(74, 207, 238, 0.35);
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 0 10px rgba(74, 207, 238, 0.2);
  text-align: left;
  /* keep text aligned neatly */
}

.about-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-list {
  margin: 0;
  padding-left: 20px;
}

.about-list li {
  margin: 6px 0;
  line-height: 1.6;
}

/* ---- Collapsible story ---- */
.story-wrap {
  position: relative;
}

.story-collapsed {
  max-height: 360px;
  /* Show about half — tweak if you want */
  overflow: hidden;
}

.story-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  /* fade height */
  background: linear-gradient(to bottom, rgba(14, 18, 23, 0) 0%, rgba(14, 18, 23, 0.85) 60%, rgba(14, 18, 23, 1) 100%);
  pointer-events: none;
}

.story-toggle {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #4acfee;
  /* neon blue */
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 10px;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
  /* ensure above blur */
}

.story-toggle:hover {
  color: #fff;
  background: rgba(74, 207, 238, 0.15);
  text-shadow: 0 0 6px #4acfee;
}

/* Resume (Education + Work) */
.resume-section {
  /* the wrapper around both cards */
  padding: 16px 10% 40px;
  color: #fff !important;
}

.resume-section strong,
.resume-section span,
.resume-section li,
.resume-section h3 {
  color: #fff !important;
}

.resume-grid {
  /* the grid that holds the two cards */
  display: grid;
  grid-template-columns: repeat(2, minmax(420px, 1fr));
  /* wide, stretchy */
  gap: 28px;
  align-items: start;
  /* same top alignment */
  max-width: 1200px;
  /* optional: keep line length nice */
  margin: 0 auto;
  /* centers the grid */
}

/* ===== Experience Section (Migrated) ===== */
.xp-wrapper-padded {
  padding: 0 10% 24px;
  /* Matches .about-hero padding */
}

.xp-wrap {
  width: 100%;
}

.xp-title {
  color: #fff;
  font-size: 1.75rem;
  margin: 0 0 12px;
}

.xp-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1fr;
  /* Adjusted for better proportion */
  gap: 18px;
  align-items: start;
}

/* Left list */
.xp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xp-item {
  position: relative;
  padding: 18px 16px;
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: #0707071b;
  margin-bottom: 10px;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
  cursor: pointer;
  opacity: .95;
}

.xp-item:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.xp-item.active {
  border-left-color: #38bdf8;
  background: rgba(255, 255, 255, 0.08);
}

.xp-company {
  color: #e6f1ff;
  font-weight: 700;
  letter-spacing: .2px;
}

/* Right details pane */
.xp-detail {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #4ad0ee1b;
  border-radius: 12px;
  padding: 22px 24px;
  min-height: 320px;
  color: #e6f1ff;
  width: 100%;
}

.xp-panel {
  display: none;
}

.xp-panel.show {
  display: block;
}

.xp-role {
  font-size: 1.35rem;
  margin: 2px 0 6px;
}

.xp-at {
  font-weight: 600;
  opacity: .95;
}

.xp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: .95rem;
}

.xp-dot {
  width: 4px;
  height: 4px;
  background: #94a3b8;
  border-radius: 50%;
  display: inline-block;
}

.xp-bullets {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
}

.xp-bullets li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  line-height: 1.0;
}

.xp-bullets li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
  font-weight: 700;
  opacity: .9;
}

.xp-subtitle {
  text-align: center;
  margin: 12px 0 24px;
}

.xp-subtitle h3 {
  font-size: 14px;
  font-weight: 400;
  color: #e6f1ff;
  margin: 0;
}

/* ===== Skills Section (Migrated) ===== */
.skills-hero {
  padding: 0 10%;
  color: #fff;
  margin: 12px 0 6px;
}

.skills-hero h2 {
  font-size: 32px;
  margin: 8px 0 4px;
}

.skills-cards {
  padding: 10px 10% 60px;
}

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

.skill-card {
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .04);
  min-height: 170px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e6f1ff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.skill-card .chips {
  justify-content: center;
  text-align: center;
}

.skill-card h4 {
  text-align: center;
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #cbd5e1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}

.chip {
  padding: 6px 10px;
  border: 1px solid rgba(74, 207, 238, 0.35);
  border-radius: 999px;
  color: #dff9ff;
  font-size: 12px;
  line-height: 1;
  background: rgba(74, 207, 238, 0.08);
  box-shadow: 0 0 6px rgba(74, 207, 238, 0.18);
  white-space: nowrap;
}

/* ===== Contact Page ===== */
.contact-hero {
  padding: 0 10% 6px;
  color: #fff;
}

.contact-hero h2 {
  font-size: 36px;
  margin-bottom: 6px;
}

.contact-hero p {
  max-width: 800px;
}

.contact-grid {
  padding: 10px 10% 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  /* form | info sidebar */
  gap: 18px;
  color: #fff;
}

.contact-form,
.contact-info .info-group {
  /* background: rgba(74,207,238,0.08); used to be this, now reusing cards styles if needed */
}

.contact-form {
  background: rgba(74, 207, 238, 0.08);
  border: 1px solid rgba(74, 207, 238, 0.35);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 10px rgba(74, 207, 238, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.form-field label {
  font-weight: 700;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #4acfee;
  box-shadow: 0 0 8px rgba(74, 207, 238, 0.35);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 8px;
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-left: 0;
}

.info-group {
  margin-bottom: 28px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== Spotlight arrows ===== */
.spotlight-container {
  position: relative;
  display: flex;
  align-items: center;
}

.spotlight-rail {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 18px;
  padding: 20px 40px;
  scrollbar-width: none;
  /* Firefox */
}

.spotlight-rail::-webkit-scrollbar {
  display: none;
}

.spot-card {
  flex: 0 0 380px;
  /* wider */
  height: 500px;
  /* shorter */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* subtle border */
  border-radius: 14px;
  /* rounded corners */
  background: rgba(74, 207, 238, 0.08);
  /* same glassy look */
  box-shadow: 0 0 10px rgba(74, 207, 238, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.spot-card:hover {
  transform: scale(1.08);
  z-index: 5;
  border: 2px solid #4acfee;
  /* stronger border on hover */
  box-shadow: 0 0 25px rgba(74, 207, 238, 0.6);
}

.spotlights-wrapper {
  margin: 20px auto;
  padding: 20px;
  border: none;
  box-shadow: none;
  background: transparent;
  width: 95%;
  max-width: 1400px;
}

.spotlight-viewport {
  overflow: hidden;
  padding: 0 36px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #4ad0ee1b;
  border-radius: 50%;
  border: 2px solid #4acfee;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-arrow.left {
  left: 0px;
}

.nav-arrow.right {
  right: 0px;
}

.nav-arrow i {
  font-size: 28px;
  color: #4acfee;
}

.nav-arrow:hover {
  background: #ffffff;
  color: #4acfee;
  box-shadow: 0 0 14px rgba(74, 207, 238, 0.9);
}

.card-spot-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 12px;
  background: #4acfee22;
  color: #4acfee;
  border: 1px solid #4acfee;
  vertical-align: middle;
}

.card-logo {
  width: 44px;
  height: 44px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4acfee;
}

.card-image {
  width: 100%;
  height: 154px;
  margin-left: 0;
  vertical-align: middle;
  object-fit: cover;
  border: 2px solid #4acfee;
}

/* Helpers */
.chip-row .linkedin-chip,
.chip-row .youtube-chip,
.chip-row .github-chip,
.chip-row .link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chip-row .linkedin-chip {
  background: #0077b5;
}

.chip-row .youtube-chip {
  background: #dd0f0f;
}

.chip-row .github-chip {
  background: #050505;
}

.chip-row .link-chip {
  background: #1368e9;
}

.video-lite {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-lite img.faded {
  width: 100%;
  display: block;
  border-radius: 12px;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.video-lite:hover img.faded {
  opacity: 0.4;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* Responsive Overrides */
@media (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

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

  .skills-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav-arrow.left {
    left: -10px;
  }

  .nav-arrow.right {
    right: -10px;
  }
}

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