:root {
  --bg: #003B5C;
  --surface: #f5fafb;
  --surface-soft: #102f40;
  --primary: #2b7894;
  --primary-deep: #061b2b;
  --secondary: #caa05a;
  --secondary-soft: #ead6aa;
  --text: #eef7fa;
  --muted: #b7ccd3;
  --line: rgba(220, 238, 242, 0.16);
  --shadow: 0 24px 50px rgba(0, 10, 18, 0.28);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6, 27, 43, 0.9);
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-inner p {
  margin: 0;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #245d78);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b7ccd3;
  font-size: 0.62rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  color: var(--text);
}

.main-nav a {
  color: #eef7fa;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.96rem 1.6rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #245d78);
  color: white;
  box-shadow: 0 16px 30px rgba(0, 20, 32, 0.34);
}

.btn-secondary {
  background: white;
  color: var(--primary-deep);
  border: 1px solid rgba(202, 224, 231, 0.24);
}

.btn-light {
  background: white;
  color: var(--primary-deep);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-deep);
  margin: 6px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0 52px;
  background:
    linear-gradient(90deg, rgba(4, 20, 32, 0.82), rgba(4, 23, 37, 0.56)),
    url("images/nen3.jpg") center / cover no-repeat;
}

.about,
.process,
.contact {
  background-image: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 52px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(87, 157, 177, 0.16);
  color: #9ed0dc;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.hero-brand-heading {
  max-width: 620px;
  margin: 10px 0 8px;
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-slogan {
  margin: 0 0 10px;
  color: #c7e0e7;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-product-heading {
  max-width: 620px;
  margin: 0 0 18px;
  color: #d8edf1;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 981px) {
  .hero-product-heading {
    white-space: nowrap;
  }
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 500;
}

.hero-list li {
  position: relative;
  padding-left: 24px;
}

.hero-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #f4c878);
  position: absolute;
  left: 0;
  top: 9px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 560px;
}

.image-card {
  width: min(100%, 530px);
  height: 100%;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.floating-card {
  position: absolute;
  left: 0;
  bottom: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 55, 71, 0.16);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px 26px;
  backdrop-filter: blur(10px);
  color: #163747;
}

.badge {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  font-size: 1.5rem;
}

.floating-card small {
  color: #48616b;
}

.stats {
  padding-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-item {
  background: rgba(245, 250, 251, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 12, 20, 0.18);
  color: #163747;
}

.stat-item strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item span {
  color: #48616b;
  font-weight: 500;
}

.section {
  padding: 100px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.content-block h2,
.section-heading h2,
.contact-info h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.about .content-block h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.content-block p,
.section-heading p,
.contact-info p,
.product-body p,
.process-step p,
.quality-card p,
.contact-list p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list div {
  background: rgba(245, 250, 251, 0.1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.feature-list span {
  color: var(--muted);
}

.about-gallery-circle {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

/* 5 hình tròn */
.circle-img {
  position: absolute;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Hình 1 - trên */
.img-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Hình 2 - phải trên */
.img-2 {
  top: 95px;
  right: 0;
}

/* Hình 3 - phải dưới */
.img-3 {
  bottom: 0;
  right: 55px;
}

/* Hình 4 - trái dưới */
.img-4 {
  bottom: 0;
  left: 55px;
}

/* Hình 5 - trái trên */
.img-5 {
  top: 95px;
  left: 0;
}

/* =========================
   LOGO Ở GIỮA
   ========================= */

.about-logo {
  position: absolute;
  width: 190px;
  height: 190px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  overflow: hidden;
  z-index: 10;
}

.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin: 0 auto 36px;
  text-align: center;
}

.product-grid,
.quality-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.product-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-group {
  display: grid;
  width: 100%;
  gap: 16px;
}

.product-group-title {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.product-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-group:nth-child(1) .product-group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-group:nth-child(2) .product-group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-group:nth-child(3) .product-group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(220, 238, 242, 0.34);
  box-shadow: 0 12px 24px rgba(0, 12, 20, 0.18);
  color: #163747;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0, 12, 20, 0.28);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    display: block;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-body {
  padding: 14px 14px 16px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.product-body h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.product-body p {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.process-step p,
.quality-card p {
  color: #48616b;
}

@media (max-width: 980px) {
  .product-group-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-catalog {
    grid-template-columns: 1fr;
  }

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

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 10px 13px;
  box-shadow: 0 14px 28px rgba(0, 12, 20, 0.18);
  color: #163747;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(43, 120, 148, 0.14);
  color: var(--primary);
  font-weight: 800;
}

.process-step h3 {
  margin: 9px 0 5px;
  font-size: 0.88rem;
  line-height: 1.25;
}
.process-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}

.process-gallery figure {
  height: 150px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(0, 12, 20, 0.12);
  line-height: 0;
}

.process-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.quality-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.quality-card {
  background: rgba(245, 250, 251, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 10px;
  box-shadow: 0 14px 28px rgba(0, 12, 20, 0.16);
  color: #163747;
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--primary), #245d78);
  font-weight: 800;
  font-size: 1rem;
}

.quality-card h3 {
  margin: 9px 0 5px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: white;
  padding: 24px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-inner h2 {
  margin: 8px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
}

.cta-inner .btn {
  padding: 0.72rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list strong {
  display: block;
  margin-bottom: 6px;
}

.contact-company {
  margin: -8px 0 0;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-cta {
  margin-top: 28px;
}

.process .section-heading,
.quality .section-heading {
  margin-bottom: 28px;
}

.process .section-heading h2,
.quality .section-heading h2,
.contact-info h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.2;
}

.process-step h3 {
  margin: 9px 0 5px;
  font-size: 0.88rem;
  line-height: 1.25;
}

.process-step p,
.quality-card p,
.contact-list p {
  font-size: 0.86rem;
  line-height: 1.4;
}

.quality-card h3 {
  margin: 9px 0 5px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.contact-list {
  gap: 14px;
  margin-top: 22px;
}

.contact-form label {
  font-size: 0.94rem;
}

.about .content-block h2,
.products .section-heading h2,
.process .section-heading h2,
.quality .section-heading h2,
.contact .contact-info h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  line-height: 1.25;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  width: min(100%, 420px);
  justify-self: center;
  padding: 16px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form label {
  margin-bottom: 9px;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  margin-top: 4px;
  padding: 0.58rem 0.7rem;
}

.contact-form textarea {
  min-height: 84px;
}

.contact-form label {
  margin-bottom: 9px;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  margin-top: 4px;
  padding: 0.58rem 0.7rem;
}

label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(22, 55, 71, 0.18);
  border-radius: 14px;
  background: #f5fafb;
  padding: 0.95rem 1rem;
  color: #163747;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(51, 145, 180, 0.7);
  box-shadow: 0 0 0 4px rgba(43, 120, 148, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 600;
  color: var(--primary);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(3, 18, 30, 0.88), rgba(3, 18, 30, 0.92)),
    url("images/nen3.jpg") center / cover no-repeat;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0 24px;
}

.footer-brand {
  display: block;
  min-width: 0;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-intro {
  max-width: 480px;
  margin-bottom: 20px !important;
  color: #c7dce2 !important;
  line-height: 1.7;
}

.footer-brand strong,
.footer-brand > span {
  display: block;
}

.footer-brand strong {
  line-height: 1.35;
}

.footer-brand > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-brand p {
  margin-top: 14px;
}

.footer-contact h3,
.footer-links h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-contact a,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
}

.footer-links h3 {
  color: var(--text);
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .product-grid,
  .quality-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px 16px;
    color: #163747;
  }

  .main-nav a {
    color: #163747;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .cta-band {
    padding: 18px 0;
  }

  .cta-inner {
    gap: 12px;
  }

  .topbar-inner {
    min-height: auto;
    padding: 10px 0;
  }

  body {
    background-attachment: scroll;
  }

  .footer-brand {
    align-items: flex-start;
  }

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

  .footer-copyright {
    grid-column: auto;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-brand-heading {
    font-size: 3rem;
  }

  .hero-product-heading {
    font-size: 1.8rem;
    white-space: normal;
  }

  .stat-grid,
  .product-grid,
  .quality-grid,
  .process-grid,
  .process-gallery,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-card,
  .stack-main {
    min-height: 90px;
    height: 90px;
    object-fit: cover;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .stack-mini {
    width: 52%;
  }

  .section {
    padding: 80px 0;
  }

  .contact-form {
    padding: 18px;
  }
}
.footer-links a {
  display: block;
  margin-bottom: 0;
  line-height: 1.25;
}

.footer-links h3 {
  margin-bottom: 8px;
}.process-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.process-gallery figure {
  margin: 0;
  padding: 0;
  line-height:0;
  overflow: hidden;
  border-radius: 10px;
}

.process-gallery img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
}

.process-gallery figure:nth-child(4),
.process-gallery figure:nth-child(5) {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .process-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-gallery img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .process-gallery {
    grid-template-columns: 1fr;
  }

  .process-gallery img {
    height: 180px;
  }
}
.process-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.process-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.process-gallery img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .process-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-gallery img {
    height: 140px;
  }
}
/* ===== GIỚI THIỆU - 5 HÌNH QUANH LOGO ===== */

.about-gallery-circle {
  position: relative !important;
  width: 500px !important;
  height: 500px !important;
  margin: 0 auto !important;
  flex-shrink: 0;
}

.about-gallery-circle .circle-img {
  position: absolute !important;
  width: 125px !important;
  height: 125px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 5px solid #fff !important;
  box-shadow: var(--shadow);
}

.about-gallery-circle .circle-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Trên */
.about-gallery-circle .img-1 {
  top: 5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Phải trên */
.about-gallery-circle .img-2 {
  top: 105px !important;
  right: 15px !important;
}

/* Phải dưới */
.about-gallery-circle .img-3 {
  bottom: 15px !important;
  right: 75px !important;
}

/* Trái dưới */
.about-gallery-circle .img-4 {
  bottom: 15px !important;
  left: 75px !important;
}

/* Trái trên */
.about-gallery-circle .img-5 {
  top: 105px !important;
  left: 15px !important;
}

/* Logo giữa */
.about-gallery-circle .about-logo {
  position: absolute !important;
  width: 140px !important;
  height: 140px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  background: #fff !important;
  padding: 15px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 20 !important;
}

.about-gallery-circle .about-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
/* ===== GALLERY GIỚI THIỆU 5 HÌNH TRÒN ===== */

.about-gallery-circle {
  position: relative !important;
  width: 500px !important;
  height: 500px !important;
  display: block !important;
  margin: 0 auto !important;
}

.about-gallery-circle .circle-img {
  position: absolute !important;
  width: 125px !important;
  height: 125px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 5px solid #fff !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
}

.about-gallery-circle .circle-img img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  display: block !important;
}

/* HÌNH 1 - TRÊN */
.about-gallery-circle .img-1 {
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
}

/* HÌNH 2 - PHẢI TRÊN */
.about-gallery-circle .img-2 {
  top: 95px !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
}

/* HÌNH 3 - PHẢI DƯỚI */
.about-gallery-circle .img-3 {
  top: auto !important;
  right: 55px !important;
  bottom: 20px !important;
  left: auto !important;
}

/* HÌNH 4 - TRÁI DƯỚI */
.about-gallery-circle .img-4 {
  top: auto !important;
  left: 55px !important;
  bottom: 20px !important;
  right: auto !important;
}

/* HÌNH 5 - TRÁI TRÊN */
.about-gallery-circle .img-5 {
  top: 95px !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
}

/* LOGO CHÍNH GIỮA */
.about-gallery-circle .about-logo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 145px !important;
  height: 145px !important;
  margin: 0 !important;
  padding: 15px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
}

.about-gallery-circle .about-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
/* ===== FIX GALLERY GIỚI THIỆU ===== */

.split-layout .about-gallery-circle {
  position: relative !important;
  width: 500px !important;
  height: 500px !important;
  display: block !important;
  margin: 0 auto !important;
  flex: none !important;
}

.split-layout .about-gallery-circle .circle-img {
  position: absolute !important;
  width: 125px !important;
  height: 125px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border: 5px solid #fff !important;
}

.split-layout .about-gallery-circle .circle-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Hình 1 */
.split-layout .about-gallery-circle .img-1 {
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Hình 2 */
.split-layout .about-gallery-circle .img-2 {
  top: 95px !important;
  right: 0 !important;
}

/* Hình 3 */
.split-layout .about-gallery-circle .img-3 {
  bottom: 20px !important;
  right: 55px !important;
}

/* Hình 4 */
.split-layout .about-gallery-circle .img-4 {
  bottom: 20px !important;
  left: 55px !important;
}

/* Hình 5 */
.split-layout .about-gallery-circle .img-5 {
  top: 95px !important;
  left: 0 !important;
}

/* LOGO GIỮA */
.split-layout .about-gallery-circle .about-logo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 145px !important;
  height: 145px !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  padding: 15px !important;
  border-radius: 50% !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
}

.split-layout .about-gallery-circle .about-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
/* Làm 5 hình tròn to hơn */
.about-gallery-circle .circle-img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
}

.about-gallery-circle .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Logo ở giữa */
.about-gallery-circle .about-logo {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.about-gallery-circle .about-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Cân đối gallery Giới thiệu trên desktop và mobile */
.split-layout .about-gallery-circle {
  width: min(500px, 100%) !important;
  height: auto !important;
  aspect-ratio: 1;
}

.split-layout .about-gallery-circle .circle-img {
  width: 32% !important;
  height: auto !important;
  aspect-ratio: 1;
}

.split-layout .about-gallery-circle .img-1 {
  top: 0 !important;
}

.split-layout .about-gallery-circle .img-2 {
  top: 19% !important;
}

.split-layout .about-gallery-circle .img-3 {
  bottom: 4% !important;
}

.split-layout .about-gallery-circle .img-4 {
  bottom: 4% !important;
}

.split-layout .about-gallery-circle .img-5 {
  top: 19% !important;
}

.split-layout .about-gallery-circle .about-logo {
  width: 31% !important;
  height: auto !important;
  max-width: 155px;
  aspect-ratio: 1;
}