/*
 * ProSound MMC — main stylesheet
 * Colors follow the brand guideline (2026)
 */

:root {
  --ps-navy: #011348;
  --ps-blue: #1200ff;
  --ps-lime: #b1e503;
  --ps-sky: #769bce;
  --ps-dark: #05060a;
  --ps-card-a: #020a3a;
  --ps-card-b: #04106a;
}

body {
  font-family: "Roboto", system-ui, sans-serif;
  background: var(--ps-dark);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.font-mono {
  font-family: "Roboto Mono", monospace;
}

/* ---------- Navbar ---------- */

.navbar {
  transition: background-color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
  padding-top: .9rem;
  padding-bottom: .9rem;
}

.navbar.scrolled {
  background-color: rgba(5, 6, 10, .92);
  border-bottom-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.navbar-brand img {
  height: 48px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .85);
  font-size: .875rem;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.lang-switch button {
  background: none;
  border: 0;
  padding: 0;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  opacity: .42;
}

.lang-switch button.active {
  opacity: 1;
  font-weight: 700;
}

.btn-quote {
  background-color: var(--ps-lime);
  color: var(--ps-navy);
  font-weight: 700;
  font-size: .875rem;
  border-radius: 50rem;
  padding: .75rem 1.4rem;
}

.btn-quote:hover {
  background-color: #c4f81a;
  color: var(--ps-navy);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media .carousel,
.hero-media .carousel-inner,
.hero-media .carousel-item {
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(1, 19, 72, .6);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero h1 .accent-lime { color: var(--ps-lime); }
.hero h1 .accent-blue { color: var(--ps-blue); }

.hero .lead {
  color: rgba(255, 255, 255, .72);
  font-weight: 300;
  max-width: 44ch;
}

/* Equalizer strip along the hero bottom */

.eq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0 3.5rem 1.6rem;
  opacity: .5;
  z-index: 2;
}

.eq span {
  flex: 1;
  transform-origin: bottom;
  animation: eq-bounce 1.2s ease-in-out infinite;
}

.eq span:nth-child(4n + 1) { background: var(--ps-blue); }
.eq span:nth-child(4n + 2) { background: var(--ps-sky); }
.eq span:nth-child(4n + 3) { background: var(--ps-lime); }
.eq span:nth-child(4n + 4) { background: var(--ps-sky); }

.eq span:nth-child(odd)      { height: 46px; }
.eq span:nth-child(even)     { height: 60px; }
.eq span:nth-child(3n)       { height: 34px; }
.eq span:nth-child(5n)       { height: 56px; }

.eq span:nth-child(2n) { animation-duration: 1.05s; animation-delay: .15s; }
.eq span:nth-child(3n) { animation-duration: 1.3s;  animation-delay: .3s; }
.eq span:nth-child(5n) { animation-duration: 1.15s; animation-delay: .45s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(.18); }
  50%      { transform: scaleY(1); }
}

/* ---------- Stats ---------- */

.stats {
  background: var(--ps-navy);
  padding: 3.4rem 0;
}

.stats .num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ps-lime);
}

.stats .label {
  font-size: .9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 12ch;
}

.stats .col-stat + .col-stat {
  border-left: 2px solid rgba(255, 255, 255, .18);
}

/* ---------- Sections (shared) ---------- */

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

/* ---------- Services ---------- */

.services {
  background: #fff;
  color: var(--ps-navy);
  padding: 6rem 0;
}

.services .section-title {
  color: var(--ps-navy);
}

.service-card {
  border-radius: 16px;
  padding: 2.1rem;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(1, 19, 72, .06);
  box-shadow: 0 12px 28px rgba(1, 19, 72, .08);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eef0f5;
  color: var(--ps-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ps-navy);
}

.service-card p {
  font-size: .875rem;
  color: rgba(1, 19, 72, .65);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Why us ---------- */

.why {
  background: var(--ps-navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(177, 229, 3, .16), transparent 70%);
  filter: blur(40px);
}

.why .icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why h3 {
  font-size: 1.4375rem;
  font-weight: 700;
}

.why p {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

/* ---------- Projects ---------- */

.projects {
  background: #fff;
  color: var(--ps-navy);
  padding: 6rem 0;
}

.projects .link-all {
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  color: var(--ps-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--ps-blue);
  padding-bottom: 4px;
  letter-spacing: .05em;
}

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(1, 19, 72, .85), transparent 55%);
  color: #fff;
}

.project-card .tag {
  font-family: "Roboto Mono", monospace;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ps-lime);
  margin-bottom: .5rem;
}

.project-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}

/* ---------- CTA ---------- */

.cta {
  background: var(--ps-blue);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/wave-white.svg") right -60px center / auto 125% no-repeat;
  opacity: .13;
}

.cta .container {
  position: relative;
}

.cta h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.625rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.04;
  text-transform: uppercase;
}

.cta .lead {
  color: rgba(255, 255, 255, .85);
  font-weight: 300;
}

.btn-cta-outline {
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 50rem;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  padding: 1rem 2.1rem;
}

.btn-cta-outline:hover {
  border-color: #fff;
  color: #fff;
}

.btn-cta-primary {
  background: var(--ps-lime);
  color: var(--ps-navy);
  border-radius: 50rem;
  font-weight: 700;
  padding: 1rem 2.1rem;
}

.btn-cta-primary:hover {
  background: #c4f81a;
  color: var(--ps-navy);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ps-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 2.8rem 0;
}

.footer img {
  height: 42px;
  opacity: .9;
}

.footer a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .8125rem;
}

.footer a:hover {
  color: #fff;
}

.footer .copyright {
  font-family: "Roboto Mono", monospace;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .stats .col-stat + .col-stat {
    border-left: 0;
  }
}


/* ---------- Nav dropdowns ---------- */

.navbar .dropdown-menu {
  background: rgba(5, 6, 10, .96);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: .5rem;
  min-width: 230px;
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, .85);
  font-size: .875rem;
  font-weight: 500;
  border-radius: 8px;
  padding: .55rem .9rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu { margin-top: .9rem; }
  .navbar .dropdown:hover > .dropdown-menu { display: block; }
  /* invisible bridge so the cursor can travel from the menu item to the submenu */
  .navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1rem;
    height: 1rem;
  }
}

/* ---------- Inner pages: page head / breadcrumb ---------- */

.inner-page .navbar {
  background-color: rgba(5, 6, 10, .92);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.page-head {
  background: var(--ps-navy);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 320px at 85% 10%, rgba(18, 0, 255, .4), transparent 70%);
  pointer-events: none;
}

.page-head .container { position: relative; z-index: 1; }

.page-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}

.page-head .breadcrumb {
  margin: 1.1rem 0 0;
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
}

.page-head .breadcrumb-item,
.page-head .breadcrumb-item.active { color: rgba(255, 255, 255, .6); }

.page-head .breadcrumb-item a {
  color: var(--ps-lime);
  text-decoration: none;
}

.page-head .breadcrumb-item a:hover { color: #c4f81a; }

.page-head .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .35); }

/* ---------- Inner pages: body & sidebar ---------- */

.page-body { padding: 5rem 0; }

.page-body a { color: var(--ps-lime); }
.page-body a:hover { color: #c4f81a; }

.side-widget {
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.6rem;
}

.side-widget h3 {
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.1rem;
}

.side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}

.side-nav a i { font-size: .7rem; opacity: .5; }

.side-nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.side-nav a.active { background: var(--ps-blue); color: #fff; }

.side-cta {
  margin-top: 1.5rem;
  background: linear-gradient(145deg, var(--ps-card-b), var(--ps-card-a));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 1.6rem;
}

.side-cta h4 { font-size: 1.1rem; font-weight: 700; }

.side-cta p { font-size: .875rem; color: rgba(255, 255, 255, .72); }

.side-cta .phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ps-lime);
  font-family: "Roboto Mono", monospace;
  font-size: .9rem;
  text-decoration: none;
}

.side-cta .btn-quote { display: inline-block; }

/* ---------- Detail content ---------- */

.detail-title {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}

.detail-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.detail-content p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
}

.detail-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.detail-content .meta,
.blog-card .meta {
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  color: var(--ps-lime);
  display: inline-block;
  margin-bottom: .6rem;
}

.check-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.check-list li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

.check-list i { color: var(--ps-lime); }

/* ---------- Equipment grid ---------- */

.equip-card {
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.equip-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.equip-card .name {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
}

/* ---------- Blog cards ---------- */

.blog-card {
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card > a { display: block; }

.blog-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  display: block;
}

.blog-card .body { padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }

.blog-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.45; }

.blog-card h3 a { color: #fff; text-decoration: none; }

.blog-card h3 a:hover { color: var(--ps-lime); }

.blog-card p { font-size: .875rem; color: rgba(255, 255, 255, .65); line-height: 1.6; margin: 0; }

.blog-card .more,
.detail-content .more {
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  color: var(--ps-lime);
  text-decoration: none;
  margin-top: auto;
  padding-top: .6rem;
  display: inline-block;
}

/* ---------- Photo gallery ---------- */

.gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(1, 19, 72, .45);
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:hover .zoom { opacity: 1; }

/* ---------- Video gallery ---------- */

.video-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card .play i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ps-lime);
  color: var(--ps-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform .25s ease;
}

.video-card:hover .play i { transform: scale(1.1); }

.video-title { margin-top: .8rem; font-weight: 600; font-size: .95rem; }

/* ---------- Contact ---------- */

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
}

.contact-card + .contact-card { margin-top: 1rem; }

.contact-card .icon-ring { margin-bottom: 0; flex-shrink: 0; }

.contact-card h3 {
  font-family: "Roboto Mono", monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .25rem;
}

.contact-card a,
.contact-card p {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
}

.contact-card a:hover { color: var(--ps-lime); }

.contact-form .form-label {
  font-family: "Roboto Mono", monospace;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.contact-form .form-control {
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  color: #fff;
  padding: .85rem 1rem;
}

.contact-form .form-control:focus {
  background: #0b0d16;
  border-color: var(--ps-lime);
  box-shadow: none;
  color: #fff;
}

.map-placeholder {
  height: 320px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, .25);
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0 12px, transparent 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Mono", monospace;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
}


/* ---------- Inner pages: light theme ---------- */

body.inner-page { background: #f6f7fb; color: var(--ps-navy); }

.inner-page .page-head { color: #fff; }

.inner-page .page-body a { color: var(--ps-blue); }
.inner-page .page-body a:hover { color: #0d00c4; }

.inner-page .side-widget {
  background: #fff;
  border-color: rgba(1, 19, 72, .08);
  box-shadow: 0 12px 28px rgba(1, 19, 72, .06);
}

.inner-page .side-widget h3 { color: rgba(1, 19, 72, .55); }

.inner-page .side-nav a { background: rgba(1, 19, 72, .04); color: var(--ps-navy); }
.inner-page .side-nav a:hover { background: rgba(1, 19, 72, .09); color: var(--ps-navy); }
.inner-page .side-nav a.active { background: var(--ps-blue); color: #fff; }

.inner-page .detail-content p { color: rgba(1, 19, 72, .7); }
.inner-page .check-list li { color: rgba(1, 19, 72, .85); }
.inner-page .check-list i { color: var(--ps-blue); }
.inner-page .detail-content .meta,
.inner-page .blog-card .meta { color: var(--ps-blue); }

.inner-page .equip-card,
.inner-page .blog-card,
.inner-page .contact-card {
  background: #fff;
  border-color: rgba(1, 19, 72, .08);
  box-shadow: 0 12px 28px rgba(1, 19, 72, .06);
}

.inner-page .blog-card h3 a { color: var(--ps-navy); }
.inner-page .blog-card h3 a:hover { color: var(--ps-blue); }
.inner-page .blog-card p { color: rgba(1, 19, 72, .65); }
.inner-page .blog-card .more,
.inner-page .detail-content .more { color: var(--ps-blue); }

.inner-page .video-title { color: var(--ps-navy); }

.inner-page .contact-card h3 { color: rgba(1, 19, 72, .55); }
.inner-page .contact-card a,
.inner-page .contact-card p { color: var(--ps-navy); }
.inner-page .contact-card a:hover { color: var(--ps-blue); }

.inner-page .icon-ring {
  background: rgba(18, 0, 255, .07);
  border-color: rgba(18, 0, 255, .25);
  color: var(--ps-blue);
}

.inner-page .contact-form .form-label { color: rgba(1, 19, 72, .6); }

.inner-page .contact-form .form-control {
  background: #fff;
  border-color: rgba(1, 19, 72, .18);
  color: var(--ps-navy);
}

.inner-page .contact-form .form-control:focus {
  background: #fff;
  border-color: var(--ps-blue);
  color: var(--ps-navy);
}

.inner-page .map-placeholder {
  border-color: rgba(1, 19, 72, .25);
  background: repeating-linear-gradient(45deg, rgba(1, 19, 72, .04) 0 12px, transparent 12px 24px);
  color: rgba(1, 19, 72, .55);
}


/* ---------- Video embeds ---------- */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Contact map ---------- */

.contact-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

/* ---------- Photo lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(1, 6, 20, .93);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 10px;
}

.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 0;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox button:hover { background: rgba(255, 255, 255, .22); }

.lightbox .lb-close { top: 1.2rem; right: 1.4rem; }
.lightbox .lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }


/* ---------- Project listing (inner) ---------- */

a.project-card {
  display: block;
  text-decoration: none;
  color: #fff;
}

a.project-card img { transition: transform .35s ease; }

a.project-card:hover img { transform: scale(1.05); }
