/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hidden { display: none; }
:root {
  --bg: #0a0f1e;
  --bg2: #0d1526;
  --bg3: #111c33;
  --teal: #00b4d8;
  --teal2: #0077b6;
  --teal-glow: rgba(0, 180, 216, 0.18);
  --white: #e8f1ff;
  --muted: #7a8eb5;
  --border: rgba(0, 180, 216, 0.15);
  --card: #0f1a2e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal2);
  border-radius: 3px;
}

/* ── SELECTION ── */
::selection {
  background: var(--teal);
  color: #000;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 180, 216, 0.08);
}

.logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
}

.logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── SECTION SHARED ── */
section {
  padding: 6rem 6vw;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  color: var(--teal);
}

.section-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .75rem;
}

/* ── HOME ── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
}

/* background grid lines */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* glow blob */
#home::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, .1), transparent 65%);
  pointer-events: none;
}

.home-center {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.home-greeting {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: .5rem;
  font-weight: 300;
}

.home-name {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .7s .1s both;
}

.home-role {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-top: .75rem;
  animation: fadeUp .7s .3s both;
}

.home-role span {
  color: var(--teal);
}

.cursor {
  display: inline-block;
  color: var(--teal);
  animation: blink .7s infinite;
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.home-bio {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 1.2rem;
  max-width: 540px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp .7s .5s both;
}

.home-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.8rem;
  justify-content: center;
  animation: fadeUp .7s .65s both;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-btn:hover {
  background: var(--teal);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--teal-glow);
}

.home-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
  animation: fadeUp .7s .8s both;
}

@media (max-width: 640px) {
  #home {
    min-height: auto;
    padding-top: 9rem;
    padding-bottom: 4rem;
    justify-content: center;
  }

  .home-center {
    margin-top: 0;
  }

  .scroll-down {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg2);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .about-info {
    grid-template-columns: 1fr;
  }

  section {
    padding: 5rem 5vw;
  }
}

/* screenshot project images */
.project-img.screenshot {
  background: var(--bg3);
  padding: 0;
}

.project-img.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.btn-primary {
  background: var(--teal);
  color: #000;
  padding: .75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0, 180, 216, .3);
  display: inline-block;
}

.btn-primary:hover {
  background: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, .4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  padding: .75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid var(--teal);
  transition: background .25s, color .25s, transform .25s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--teal);
  color: #000;
  transform: translateY(-2px);
}

/* hero image */
.home-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s .4s both;
}

.img-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px dashed var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .9rem;
  position: relative;
  z-index: 2;
}

.img-placeholder span {
  color: var(--teal);
  font-weight: 600;
}

.img-placeholder small {
  font-size: .72rem;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 3px solid var(--teal);
}

.img-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(0, 180, 216, .3);
  animation: spinRing 8s linear infinite;
}

.ring2 {
  inset: -24px;
  border-color: rgba(0, 180, 216, .15);
  animation-duration: 14s;
  animation-direction: reverse;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

/* scroll down */
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}

.scroll-down span {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1)
  }

  50% {
    transform: scaleY(.5)
  }
}

/* ── ABOUT ── */
#about {
  background: var(--bg2);
}

.about-no-img {
  max-width: 800px;
  margin: 0 auto;
}

.about-grid {
  display: block;
}

.about-content h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-content h3 span {
  color: var(--teal);
}

.about-content p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 1rem;
}

.about-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
  margin-top: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.info-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.info-val {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
}

.available {
  color: var(--teal) !important;
}

/* ── SKILLS ── */
#skills {
  background: var(--bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal2), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, .12);
  border-color: rgba(0, 180, 216, .35);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--teal);
}

.skill-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.skill-card ul li {
  font-size: .88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.skill-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PROJECTS ── */
#projects {
  background: var(--bg2);
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 180, 216, .15);
}

.project-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-img.teal {
  background: linear-gradient(135deg, #0d4a5e, #0096b7);
}

.project-img.blue {
  background: linear-gradient(135deg, #0d2a5e, #1a5fb4);
}

.project-img.purple {
  background: linear-gradient(135deg, #2a0d5e, #6a1fd1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity .3s;
}

.project-img:hover .project-overlay {
  opacity: 1;
}

.proj-link {
  background: var(--teal);
  color: #000;
  padding: .5rem 1.2rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.proj-link:hover {
  background: #00d4ff;
  transform: scale(1.05);
}

.proj-link.ghost {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}

.proj-link.ghost:hover {
  background: var(--teal);
  color: #000;
}

.project-info {
  padding: 1.8rem;
}

.proj-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 180, 216, .15);
  line-height: 1;
  margin-bottom: .5rem;
}

.project-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.project-info p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.proj-tags span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .25rem .75rem;
  border-radius: 4px;
  background: rgba(0, 180, 216, .1);
  color: var(--teal);
  border: 1px solid rgba(0, 180, 216, .2);
}

/* ── PROJECTS SLIDER ── */
#projects {
  background: var(--bg2);
}

.projects-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.projects-slider {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  /* hide scrollbar completely */
  width: 0;
  /* key fix: let flex grow handle it */
  flex: 1;
  /* take remaining space after buttons */
  scroll-behavior: smooth;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  min-width: calc((100% - 3rem) / 3);
  /* 3 cards, 2 gaps of 1.5rem */
  flex: 0 0 calc((100% - 3rem) / 3);
  flex-shrink: 0;
  box-sizing: border-box;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 180, 216, .15);
}

.slider-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--teal);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s, transform .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--teal);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--teal-glow);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--teal);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .project-card {
    min-width: calc((100% - 1.5rem) / 2);
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 600px) {
  .project-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ── MINI PROJECTS ── */
#mini {
  background: var(--bg);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.mini-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mini-img:hover .project-overlay {
  opacity: 1;
}

.mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, .15);
  border-color: var(--teal);
}

.mini-card:hover .mini-icon {
  transform: scale(1.2) rotate(-5deg);
}

.mini-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: .75rem;
  transition: transform .25s;
}

.mini-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--white);
}

.mini-tech {
  font-size: .73rem;
  color: var(--muted);
  margin-top: .25rem;
}

/* ── CONTACT ── */
#contact {
  background: var(--bg2);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.3rem;
  margin-top: .1rem;
}

.ci-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .15rem;
}

.ci-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

a.ci-val:hover {
  color: var(--teal);
}

.contact-socials {
  display: flex;
  gap: .75rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .9rem 1.2rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form textarea {
  resize: vertical;
}

.form-error {
  font-size: .75rem;
  color: #ff6b6b;
  margin-top: .3rem;
  display: block;
}

.form-success {
  color: var(--teal);
  font-size: .88rem;
  margin-top: .5rem;
  text-align: center;
}

.submit-btn {
  font-size: .95rem;
  border: none;
  cursor: pointer;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2.5rem 6vw;
  color: var(--muted);
  font-size: .85rem;
}

footer span {
  color: var(--teal);
  font-weight: 600;
}

.footer-sub {
  font-size: .75rem;
  margin-top: .4rem;
  opacity: .6;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #home {
    padding-top: 6rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg2);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .about-info {
    grid-template-columns: 1fr;
  }

  section {
    padding: 5rem 5vw;
  }
}

@media (max-width: 600px) {
  /* Project image height kam karein */
  .project-img {
    height: 160px;
  }

  /* Project info padding kam karein */
  .project-info {
    padding: 1.2rem;
  }

  /* Proj number chota karein */
  .proj-num {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  /* Title chota karein */
  .project-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  /* Description chota karein */
  .project-info p {
    font-size: .80rem;
    line-height: 1.5;
  }

  /* Tags chote karein */
  .proj-tags span {
    font-size: .65rem;
    padding: .2rem .5rem;
  }

  .proj-tags {
    margin-top: .6rem;
    gap: .3rem;
  }

  /* Slider buttons */
  .slider-btn { width: 36px; height: 36px; font-size: 1rem; }
}
