/* ============================================
   ARCH SUNSAIL — NewVolt Dark Theme Stylesheet
   Deep midnight blue + neon lime green accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-deep: #001f26;
  --bg-card: #0a3d45;
  --bg-card-alt: #0d4a52;
  --bg-surface: #062e34;

  --green-neon: #b8ff00;
  --green-mid: #7ec800;
  --green-dim: rgba(184, 255, 0, .15);
  --green-glow: rgba(184, 255, 0, .35);

  --text-primary: #eaf4f0;
  --text-secondary: #9bb5ad;
  --text-muted: #6a8a80;

  --border-subtle: rgba(184, 255, 0, .12);
  --border-card: rgba(184, 255, 0, .08);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 30px rgba(0, 0, 0, .35);
  --shadow-glow: 0 0 30px var(--green-dim);

  --header-h: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .2s ease; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.wrap {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 780px;
  line-height: 1.7;
}

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 31, 38, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 78px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: .04em;
}

.brand-tagline {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a, .dropbtn {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .02em;
  transition: color .2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-neon);
  transition: width .25s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* ---------- Dropdown Menus ---------- */
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropbtn .chevron {
  width: 12px;
  height: 12px;
  fill: var(--text-muted);
  transition: transform .2s ease, fill .2s ease;
}

.dropbtn:hover { color: #fff; }
.dropbtn:hover .chevron { fill: var(--green-neon); }

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  z-index: 200;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .01em;
  transition: all .2s ease;
}

.dropdown-content a:hover {
  background: var(--green-dim);
  color: #fff;
  padding-left: 26px;
}

.dropdown.active .dropdown-content,
.dropdown:hover .dropdown-content {
  display: block;
  animation: dropFadeIn .2s ease forwards;
}

@keyframes dropFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Dropdown arrow indicator */
.dropdown.active .dropbtn .chevron,
.dropdown:hover .dropbtn .chevron {
  transform: rotate(180deg);
}

/* ---------- Header CTA Button ---------- */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-deep);
  background: var(--green-neon);
  border-radius: 999px;
  letter-spacing: .03em;
  transition: all .25s ease;
  box-shadow: 0 0 18px var(--green-dim);
}

.header-cta:hover {
  background: #c4ff33;
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-1px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 20, 26, .94) 0%,
    rgba(0, 31, 38, .82) 40%,
    rgba(0, 31, 38, .55) 70%,
    rgba(0, 31, 38, .35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 60px) clamp(20px, 5vw, 60px) 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--green-neon);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--green-neon);
  text-shadow: 0 0 40px var(--green-dim);
}

.hero-desc {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .02em;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-neon);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px var(--green-dim), 0 0 50px rgba(184, 255, 0, .12);
}

.btn-primary:hover {
  background: #c4ff33;
  box-shadow: 0 6px 32px var(--green-glow), 0 0 60px rgba(184, 255, 0, .2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
}

.btn-outline:hover {
  border-color: var(--green-neon);
  color: var(--green-neon);
  background: var(--green-dim);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.trust-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--green-neon);
  opacity: .7;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--green-neon);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Value Proposition Tabs ---------- */
.value-section {
  padding: clamp(80px, 12vw, 130px) 0;
}

.tabs-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.tab-btn {
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .06);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(184, 255, 0, .2);
}

.tab-btn.active {
  background: var(--green-neon);
  color: var(--bg-deep);
  border-color: var(--green-neon);
  box-shadow: 0 0 20px var(--green-dim);
}

.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeSlideIn .4s ease forwards;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

.tab-text .section-title { margin-bottom: 24px; }

.tab-text p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.tab-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--text-primary);
  font-weight: 600;
}

.tab-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tab-feature-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--green-neon);
}

.tab-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.tab-image img {
  width: 100%;
  height: clamp(280px, 35vw, 460px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
}

.tab-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 40px rgba(0, 31, 38, .5);
  pointer-events: none;
}

/* ---------- Product Categories Grid ---------- */
.products-section {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.products-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.products-header .section-lead {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
}

.product-card:hover {
  border-color: rgba(184, 255, 0, .25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.product-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.product-card-body {
  padding: 28px 30px 32px;
}

.product-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-neon);
  background: var(--green-dim);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.product-card-body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Why ARCH — Numbered Features ---------- */
.why-section {
  padding: clamp(80px, 12vw, 130px) 0;
}

.why-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.why-header .section-lead {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.why-card:hover {
  border-color: rgba(184, 255, 0, .2);
  box-shadow: var(--shadow-glow);
}

.why-number {
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  color: rgba(184, 255, 0, .07);
  line-height: 1;
  position: absolute;
  top: -8px;
  right: 24px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.why-card p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
}

/* ---------- News & Updates ---------- */
.news-section {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.news-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.news-header .section-lead {
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 32px;
}

.news-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}

.news-card:hover {
  border-color: rgba(184, 255, 0, .2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.news-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.news-card-body {
  padding: 28px 30px 32px;
}

.news-date {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 14px;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.news-card-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Footer / Contact ---------- */
.site-footer {
  background: #001820;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(64px, 8vw, 96px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 48px;
  height: auto;
}

.footer-brand-text strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  display: block;
}

.footer-about p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-icon:hover {
  background: var(--green-dim);
  border-color: rgba(184, 255, 0, .3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill .2s ease;
}

.social-icon:hover svg {
  fill: var(--green-neon);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  font-size: 14.5px;
  color: var(--text-secondary);
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col ul li a:hover {
  color: var(--green-neon);
  padding-left: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--green-neon);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-value a {
  color: var(--text-primary);
  transition: color .2s ease;
}

.contact-value a:hover {
  color: var(--green-neon);
}

/* ---------- Footer Bottom Bar ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--green-neon);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

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

  .hero h1 { font-size: clamp(34px, 9vw, 56px); }

  .tabs-nav { gap: 8px; }
  .tab-btn { padding: 12px 20px; font-size: 13.5px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ---------- Projects Section ========== */
.projects-section {
  padding: clamp(80px, 12vw, 130px) 0;
}

.projects-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.projects-header .section-lead {
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 32px;
}

.project-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}

.project-card:hover {
  border-color: rgba(184, 255, 0, .2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.project-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.project-card-body {
  padding: 28px 30px 32px;
}
