:root {
  --bg: #070a12;
  --bg-deep: #020617;
  --surface: rgba(15, 23, 42, 0.72);
  --surface-strong: rgba(30, 41, 59, 0.86);
  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --text-muted: #9ca3af;
  --primary: #38bdf8;
  --primary-hover: #0ea5e9;
  --accent: #8b5cf6;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(226, 232, 240, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 14px 44px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.16), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(139, 92, 246, 0.18), transparent 32%),
    radial-gradient(circle at 50% 42%, rgba(14, 165, 233, 0.08), transparent 36%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 72%);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--bg-deep);
  background: var(--primary);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92vh;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 0 72px;
}

.hero::after {
  position: absolute;
  bottom: -260px;
  left: 50%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 64%);
  transform: translateX(-50%);
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1180px, 92%);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 10px 0 42px;
}

.logo {
  width: 88px;
  height: 88px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34), 0 0 48px rgba(56, 189, 248, 0.12);
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(16px);
}

.nav-links > a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links > a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lang-toggle {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  margin-left: 4px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
}

.lang-link {
  padding: 7px 12px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1;
}

.lang-link:hover,
.lang-link.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(139, 92, 246, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 92%);
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  margin: auto;
  padding: clamp(40px, 7vw, 92px) 0 clamp(54px, 7vw, 90px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--primary);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.9);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.78;
}

.hero-buttons,
.contact-actions,
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 42px rgba(56, 189, 248, 0.22), 0 10px 30px rgba(139, 92, 246, 0.18);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 54px rgba(56, 189, 248, 0.3), 0 14px 38px rgba(139, 92, 246, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(30, 41, 59, 0.74);
}

.hero-visual {
  display: grid;
  align-self: center;
  gap: 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(139, 92, 246, 0.22), transparent 50%),
    rgba(15, 23, 42, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.85), transparent 72%);
}

.hero-card-main {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 38px);
}

.hero-card-label,
.hero-card h2,
.hero-card p:last-child {
  position: relative;
  z-index: 1;
}

.hero-card-label {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-card p:last-child {
  color: var(--text-soft);
  line-height: 1.8;
}

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

.hero-metric {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.56);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-metric span {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 82px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section > p {
  max-width: 860px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.62));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.project-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.project-card.highlighted {
  border-color: rgba(139, 92, 246, 0.28);
}

.project-image-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.92));
  cursor: zoom-in;
}

.project-image-wrapper::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 999px;
  content: attr(data-overlay);
  color: rgba(248, 250, 252, 0.94);
  background: rgba(2, 6, 23, 0.74);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.project-image-wrapper:hover::after,
.project-image-wrapper:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44));
  transition: transform 0.26s ease;
}

.project-image-wrapper:hover .project-image {
  transform: scale(1.015);
}

.project-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.project-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.project-content h3 {
  margin-bottom: 11px;
  font-size: clamp(1.42rem, 2vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.project-subtitle {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.project-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.tags li {
  padding: 6px 10px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
}

.tags li:nth-child(even) {
  color: #ddd6fe;
  border-color: rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.11);
}

.project-links {
  margin-top: 26px;
}

.project-links .btn {
  min-width: 126px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-links .project-status {
  margin-top: 0;
  min-height: 50px;
}

.project-card.featured {
  display: grid;
  min-height: 520px;
  grid-column: 1 / -1;
  grid-template-columns: 1.08fr 0.92fr;
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), 0 0 70px rgba(56, 189, 248, 0.07);
}

.project-card.featured .project-image-wrapper {
  height: 100%;
  min-height: 520px;
  border-right: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 0;
}

.project-card.featured .project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.project-card.featured h3 {
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.hidden-project {
  display: none;
}

.hidden-project.show {
  display: block;
  animation: revealProject 0.3s ease both;
}

@keyframes revealProject {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.projects-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.projects-toggle {
  min-width: 190px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.stack-card {
  min-height: 180px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stack-card:hover {
  border-color: rgba(56, 189, 248, 0.26);
  transform: translateY(-3px);
}

.stack-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.stack-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.contact-card {
  max-width: 820px;
  margin-top: 30px;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), transparent 44%),
    linear-gradient(315deg, rgba(139, 92, 246, 0.14), transparent 48%),
    rgba(15, 23, 42, 0.72);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.contact-card p {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--text-soft);
  line-height: 1.75;
}

.footer {
  margin-top: 48px;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  text-align: center;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(12px);
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.lightbox.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1120px, 96vw);
  height: min(780px, 88vh);
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.lightbox-image-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.1), transparent 42%), rgba(15, 23, 42, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  padding: 24px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  flex: 0 0 auto;
  border: 1px solid rgba(226, 232, 240, 0.18);
  color: var(--text);
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(30, 41, 59, 0.96);
  transform: scale(1.04);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -8px;
  right: 8px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 2rem;
}

.lightbox-nav[hidden] {
  display: none;
}

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

  .hero-copy {
    max-width: 860px;
  }

  .hero-card-main {
    min-height: 260px;
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .nav {
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 108px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 12px 14px;
  }

  .lang-toggle {
    width: fit-content;
    margin: 6px 0 0;
  }

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

  .project-card.featured {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .project-card.featured .project-image-wrapper {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 48px;
  }

  .logo {
    width: 72px;
    height: 72px;
    padding: 7px;
  }

  .nav {
    padding-bottom: 24px;
  }

  .nav-links {
    top: 88px;
  }

  .hero-content {
    padding: 24px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    letter-spacing: -0.045em;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-card-main {
    min-height: 230px;
    border-radius: 26px;
  }

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

  .hero-metric {
    min-height: auto;
  }

  .section {
    padding: 62px 0;
  }

  .project-content,
  .project-card.featured .project-content {
    padding: 22px;
  }

  .project-image-wrapper::after {
    display: none;
  }

  .btn,
  .project-links .btn,
  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .lightbox {
    padding: 12px;
  }

  .lightbox-content {
    width: 100%;
    height: min(72vh, 560px);
    gap: 8px;
  }

  .lightbox-image {
    padding: 12px;
  }

  .lightbox-nav {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.7rem;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 360px;

    gap:70px;

    align-items:center;

    margin-top:40px;

}

.developer-card{

    background:
        linear-gradient(
            180deg,
            rgba(30,41,59,.82),
            rgba(15,23,42,.72)
        );

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:40px 30px;

    text-align:center;

    backdrop-filter:blur(18px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

    transition:.35s;

}

.developer-card:hover{

    transform:translateY(-8px);

    border-color:rgba(56,189,248,.35);

    box-shadow:
        0 35px 80px rgba(0,0,0,.55),
        0 0 60px rgba(56,189,248,.15);

}