:root {
  --gold: #d7aa61;
  --gold-dark: #bd9048;
  --ink: #263044;
  --navy: #2c344a;
  --muted: #6d7482;
  --mist: #f4f8f5;
  --cream: #f6e4c8;
  --line: rgba(38, 48, 68, 0.12);
  --shadow: 0 18px 45px rgba(28, 38, 57, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1240px;
}

.site-header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  z-index: 1030;
}

.site-header.is-fixed {
  animation: stickyDrop 0.34s ease both;
  background: rgba(21, 43, 76, 0.94);
  box-shadow: 0 12px 34px rgba(10, 22, 40, 0.18);
  position: fixed;
}

.site-header.is-fixed .navbar {
  padding-bottom: 0px;
}

.navbar {
  padding: 0px;
  transition: padding 0.3s ease;
}

.navbar-brand img {
  height: 54px;
  width: auto;
  transition: transform 0.25s ease;
}

.navbar-brand:hover img {
  transform: translateY(2px) scale(1.02);
}

.navbar-nav {
  gap: 1px;
}

.navbar-dark .navbar-nav .nav-link {
  border-radius: 0px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 24px 12px 30px;
  position: relative;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  background: var(--gold);
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover {
  transform: translateY(0px);
}

/* .navbar-dark .navbar-nav .nav-link.active::after {
  bottom: 5px;
  color: #fff;
  content: "+";
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  left: 50%;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%);
} */

.navbar-dark .navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.22);
  margin-top: 0;
  min-width: 250px;
  padding: 10px;
}

.navbar-dark .navbar-nav .dropdown-item {
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  white-space: normal;
}

.navbar-dark .navbar-nav .dropdown-item.active,
.navbar-dark .navbar-nav .dropdown-item:active,
.navbar-dark .navbar-nav .dropdown-item:hover {
  background: var(--gold);
  color: #fff;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

.btn-gold {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  padding: 12px 22px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-mark {
  background: var(--gold);
  display: block;
  height: 3px;
  margin-bottom: 20px;
  width: 44px;
}

.kicker {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
}

p {
  margin-top: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 850;
  line-height: 1.08;
  margin-bottom: 18px;
}

h2 span {
  color: var(--gold);
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.21), rgba(14, 66, 139, 0.1) 42%, rgba(14, 66, 139, 0.18)),
    url("../img/hero-building.jpg") center top / cover no-repeat;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-section::before,
.hero-section::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  height: 430px;
  position: absolute;
  width: 430px;
}

.hero-section::before {
  left: -205px;
  top: 120px;
}

.hero-section::after {
  right: -115px;
  top: 50px;
}

.min-vh-hero {
  min-height: 642px;
  padding-bottom: 72px;
  padding-top: 162px;
}

.eyebrow {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: #2a2f39;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding: 9px 16px;
  text-transform: uppercase;
}

.hero-section h1 {
  color: #fff;
  font-size: clamp(46px, 7vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}

.stats-panel {
  align-items: stretch;
  background: rgba(20, 46, 74, 0.9);
  border-radius: 22px;
  /*! bottom: 0; */
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  left: 0;
  overflow: hidden;
  /*! position: absolute; */
  transform-origin: left bottom;
  margin-top: 20px;
}

.stats-panel div {
  min-width: 145px;
  padding: 28px 32px;
}

.stats-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-panel strong {
  color: #fff;
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.stats-panel span {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: 9px;
  text-transform: uppercase;
}

.about-section {
  background: radial-gradient(circle at 9% 12%, rgba(215, 170, 97, 0.08), transparent 24%), linear-gradient(90deg, #fff 0%, #fff 64%, #f2fbf4 100%);
  background:
    linear-gradient(#f2fbf443, #f2fbf41d),
    url("../img/about-us.png") center top / cover no-repeat;
}

.about-section h2 {
  max-width: 550px;
}

.cert-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cert-list div {
  align-items: center;
  display: flex;
  gap: 10px;
  transition: transform 0.25s ease;
}

.cert-list div:hover {
  transform: translateX(6px);
}

.cert-list i {
  color: #7366ee;
  font-size: 20px;
}

.cert-list span {
  color: #4a5261;
  font-size: 14px;
  font-weight: 700;
}

.about-collage {
  min-height: 470px;
  position: relative;
}

.main-lab {
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: 425px;
  margin-left: auto;
  object-fit: cover;
  width: min(100%, 480px);
}

.small-lab {
  border-radius: 22px;
  bottom: -50px;
  box-shadow: var(--shadow);
  height: 205px;
  object-fit: cover;
  position: absolute;
  right: -20px;
  width: 255px;
}

.accuracy-card {
  background: rgba(255, 255, 255, 0.7); /* Transparent background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  bottom: 86px;
  box-shadow: var(--shadow);
  left: 58px;
  padding: 18px 24px;
  position: absolute;
}

.accuracy-card strong {
  color: #7366ee;
  display: block;
  font-size: 25px;
  line-height: 1;
}

.accuracy-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.research-section {
  background: var(--navy);
  color: #fff;
}

.research-section h2 {
  color: #fff;
}

.card-clean,
.research-card,
.capacity-card,
.therapy-grid article,
.product-card {
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.research-card:hover,
.capacity-card:hover,
.therapy-grid article:hover,
.product-card:hover {
  transform: translateY(-8px);
}

.research-photo {
  height: 100%;
  min-height: 528px;
  position: relative;
}

.research-photo::after {
  background: linear-gradient(180deg, transparent 35%, rgba(4, 17, 28, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.research-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.research-photo:hover img {
  transform: scale(1.06);
}

.research-photo div {
  bottom: 0;
  color: #fff;
  padding: 28px;
  position: absolute;
  z-index: 1;
}

.research-photo span {
  background: #6556e8;
  border-radius: 999px;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 7px 12px;
}

.research-photo h3,
.research-card h3 {
  font-size: 20px;
  font-weight: 850;
  margin-bottom: 10px;
}

.research-photo p,
.research-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 0;
}

.research-card {
  min-height: 252px;
  padding: 32px 32px 80px 32px;
}

.research-card.wide {
  min-height: 250px;
}

.research-card img {
  margin-bottom: 38px;
}

.research-card h3,
.research-card p {
  color: #374055;
}

.research-card h3 span {
  color: #7066ec;
}

.lavender {
  background: #ece8ff url("../img/topright.png") no-repeat bottom right / cover;
}

.mint {
  background: #c9f7df url("../img/bottom-middle.png") no-repeat bottom center / cover;
}

.violet {
  background: #ece8ff url("../img/bottom-right.png") no-repeat bottom right / cover;
}
.capacity-section {
  background:
    linear-gradient(rgba(218, 178, 114, 0.92), rgba(218, 178, 114, 0)),
    url("../img/footer-bg.jpg") center bottom / cover no-repeat;
  padding-bottom: 68px;
  padding-top: 68px;
}

.capacity-section h2 {
  font-size: 36px;
}

.capacity-section .row {
  /*! margin-left: auto; */
  /*! margin-right: auto; */
  /*! max-width: 900px; */
}

.capacity-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(86, 62, 29, 0.18);
  height: 100%;
  padding: 34px 28px;
}

.capacity-card:hover {
  box-shadow: 0 22px 46px rgba(86, 62, 29, 0.24);
}

.capacity-card i {
  align-items: center;
  background: #e9f1ff;
  border-radius: 6px;
  color: #2e73b6;
  display: inline-flex;
  font-size: 21px;
  height: 44px;
  justify-content: center;
  /*! margin-bottom: 32px; */
  width: 44px;
}

.capacity-card:nth-child(1) i,
.capacity-section .col-md-4:nth-child(1) i {
  background: #e8e7ff;
  color: #7264e9;
}

.capacity-section .col-md-4:nth-child(2) i {
  background: #d7f8e6;
  color: #28a66b;
}

.capacity-card h3 {
  font-size: 21px;
  font-weight: 850;
}

.capacity-card p {
  font-size: 13px;
}

.therapeutic-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(246, 251, 251, 0)),
    url("../img/research.png") left top / cover no-repeat;
}

.section-copy {
  max-width: 780px;
}

.therapy-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.therapy-grid article {
  align-items: center;
  background: #fff1da;
  border: 1px solid rgba(215, 170, 97, 0.28);
  box-shadow: 0 10px 25px rgba(52, 67, 88, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 22px 12px;
  text-align: center;
}

.therapy-grid i {
  color: var(--gold-dark);
  font-size: 26px;
  /*! margin-bottom: 12px; */
}

.therapy-grid h3 {
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 14px;
}

.products-section {
  background: linear-gradient(105deg, #faf6f0 0%, #f6f1e8 54%, #edf8ee 100%);
}

.products-section h2 {
  margin-bottom: 10px;
}

.products-section p {
  max-width: 770px;
}

.round-btn {
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(40, 50, 68, 0.12);
  color: var(--ink);
  height: 34px;
  margin-left: 8px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  width: 34px;
}

.round-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.product-carousel .owl-stage {
  display: flex;
  padding: 18px 0 28px;
}

.product-carousel .owl-item {
  display: flex;
}

.product-carousel .item,
.product-carousel .product-card {
  width: 100%;
}

.product-card {
  background: #fff;
  box-shadow: 0 16px 36px rgba(32, 43, 59, 0.15);
  height: 100%;
}

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

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

.product-card div {
  padding: 18px;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 12px;
  line-height: 1.55;
  min-height: 38px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(203, 160, 94, 0), rgba(210, 171, 110, 0)),
    url("../img/contact-bg.jpg") center / cover no-repeat;
  color: #fff;
  padding: 108px 0;
}

.contact-section h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.93);
  max-width: 590px;
}

.pill-label {
  align-items: center;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  margin-bottom: 22px;
  padding: 8px 14px;
}

.contact-form {
  background: #050505;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.23);
  padding: 38px;
}

.contact-form h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 24px;
}

.contact-form .form-control {
  background: #252525;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  min-height: 44px;
  padding: 12px 14px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-form .form-control:focus {
  background: #2e2e2e;
  box-shadow: 0 0 0 3px rgba(215, 170, 97, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  background:
    linear-gradient(rgba(248, 249, 255, 0), rgba(248, 249, 255, 0)),
    url("../img/footer.png") center bottom / cover no-repeat;
  padding: 100px 0 34px;
  position: relative;
}

.footer-logo {
  height: 54px;
  margin-bottom: 20px;
}

.site-footer h3 {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.site-footer a {
  color: #5f6674;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}
.text-black {
  color: #000;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  align-items: center;
  background: var(--gold);
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  width: 28px;
}

.socials a:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  color: #00000050;
}

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

.footer-contact i {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.footer-contact span {
  color: #4f5664;
  font-size: 14px;
  line-height: 1.6;
}

.copyright {
  color: #9aa1ad;
  font-size: 12px;
  margin: 72px 0 0;
  text-align: center;
}

.scroll-top {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(38, 48, 68, 0.2);
  color: #fff;
  display: inline-flex;
  font-size: 28px;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  top: 34px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  width: 48px;
}

.scroll-top:hover,
.scroll-top:focus {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

@media (max-width: 991.98px) {
  .site-header {
    position: absolute;
  }

  .site-header.is-fixed {
    position: fixed;
  }

  .navbar-collapse {
    background: rgba(14, 39, 75, 0.96);
    border-radius: 8px;
    margin-top: 16px;
    padding: 16px;
  }

  .navbar-dark .navbar-nav .nav-link {
    border-radius: 6px;
    padding: 12px 14px;
  }

  .navbar-dark .navbar-nav .nav-link.active::after {
    content: "";
  }

  .hero-section,
  .min-vh-hero {
    min-height: 690px;
  }

  .stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .stats-panel div {
    min-width: 0;
    padding: 22px 14px;
    text-align: center;
  }

  .about-collage {
    min-height: 500px;
  }

  .main-lab {
    margin-left: 0;
    width: 88%;
  }

  .therapy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 64px 0;
  }

  .navbar {
    padding: 10px 0 14px;
  }

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

  .hero-section,
  .min-vh-hero {
    min-height: 720px;
  }

  .hero-section {
    background-position: center top;
  }

  .hero-section p {
    font-size: 15px;
  }

  .stats-panel strong {
    font-size: 28px;
  }

  .stats-panel span {
    font-size: 9px;
  }

  .about-collage {
    min-height: 430px;
  }

  .main-lab {
    height: 330px;
    width: 100%;
  }

  .small-lab {
    height: 150px;
    right: 14px;
    width: 190px;
  }

  .accuracy-card {
    bottom: 66px;
    left: 14px;
  }

  .research-photo {
    min-height: 390px;
  }

  .research-card {
    min-height: 220px;
  }

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

  .contact-form {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    font-size: 10px;
    padding: 8px 12px;
  }

  .stats-panel div {
    padding: 18px 8px;
  }

  .therapy-grid {
    gap: 12px;
  }

  .therapy-grid article {
    min-height: 128px;
  }
}

.g-bt {
  align-items: center;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: 100px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  position: relative;
  transition: all 0.2s;
  white-space: nowrap;
}

.g-bt::before {
  background: rgba(255, 255, 255, 0.32);
  content: "";
  height: 120%;
  left: -48px;
  position: absolute;
  top: -10%;
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  width: 34px;
}

.g-bt:hover {
  background: var(--gold);
  color: #111;
}

.g-bt:hover::before {
  left: calc(100% + 20px);
}
.g-bt > i {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 22px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
  background: #fff;

  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}

.g-bt:hover > i {
  transform: translateX(5px) rotate(0deg);
}

.g-bt:active {
  transform: scale(0.95);
}

.small-bt {
  font-size: 12px;
  gap: 7px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
}

.small-bt > i {
  font-size: 15px;
  height: 22px;
  width: 22px;
}

.mini-bt {
  font-size: 11px;
  gap: 6px;
  padding: 7px 12px;
}

.mini-bt > i {
  border-width: 1px;
  font-size: 13px;
  height: 20px;
  width: 20px;
}

.reveal-on-scroll {
  opacity: 0;
  /*! transform: translateY(24px); */
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stickyDrop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Inner pages */
.inner-page {
  background: #f7f9fb;
}

.inner-header {
  background: rgba(21, 43, 76, 0.96);
  position: fixed;
}

.inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/hero-building.jpg") center top / cover no-repeat;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}

.inner-page.team .inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/team.jpg") center center / cover no-repeat !important;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}

.inner-page.product .inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/product-banner.png") center center / cover no-repeat !important;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}
.inner-page.csr .inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/csr-banner.png") center center / cover no-repeat !important;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}

.inner-page.our-comitement .inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/our-comitment.png") center center / cover no-repeat !important;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}
.inner-page.thnaks .inner-hero {
  background:
    linear-gradient(90deg, rgba(20, 65, 131, 0.94), rgba(14, 66, 139, 0.66)),
    url("../img/thanks-banner.png") center center / cover no-repeat !important;
  color: #fff;
  padding: 170px 0 86px;
  position: relative;
}

@media (max-width: 991.98px) {
  .site-header .dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 960px;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 820px;
}

.story-image {
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.vision-section,
.product-browser,
.image-story-section,
.team-page,
.resource-page,
.csr-page {
  background: linear-gradient(105deg, #fff 0%, #fff 62%, #eef8f0 100%);
}

.filter-panel,
.catalog-card,
.culture-panel,
.legacy-content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(38, 48, 68, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(32, 43, 59, 0.1);
  height: 100%;
  padding: 30px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.legacy-content-card {
  height: auto;
}

.legacy-content-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.legacy-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
}

.legacy-list li {
  background: #f7f9fb;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--muted);
  line-height: 1.75;
  list-style: none;
  padding: 16px 18px;
}

.gallery-grid,
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img,
.blog-card img {
  border-radius: 8px;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(32, 43, 59, 0.1);
  overflow: hidden;
}

.blog-card div {
  padding: 22px;
}

.blog-card h3 {
  font-size: 21px;
  font-weight: 850;
}

.catalog-card:hover,
.filter-panel:hover {
  box-shadow: 0 24px 48px rgba(32, 43, 59, 0.16);
  transform: translateY(-6px);
}

.tall-card {
  min-height: 300px;
}
.info-card i {
  align-items: center;
  background: #f3dfba;
  border-radius: 8px;
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 28px;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}
.culture-panel {
  height: auto;
}

.filter-panel {
  position: sticky;
  top: 108px;
}

.filter-panel h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.category-filters {
  display: grid;
  gap: 10px;
}

.filter-chip {
  align-items: center;
  background: #f5f7fa;
  border: 1px solid rgba(38, 48, 68, 0.1);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  padding: 11px 14px;
  text-align: left;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.filter-chip span {
  background: #fff;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  padding: 3px 8px;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--gold);
  color: #111;
  transform: translateX(4px);
}

.product-toolbar {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-toolbar h2 {
  margin-bottom: 0;
}

.product-search {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(38, 48, 68, 0.12);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  min-width: min(100%, 320px);
  padding: 12px 16px;
}

.product-search input {
  border: 0;
  font: inherit;
  outline: 0;
  width: 100%;
}

.result-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
  overflow: hidden;
  padding: 0;
}

.catalog-card img {
  height: 170px;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.photo-mosaic,
.team-gallery,
.resource-image-band,
.product-visual-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.photo-mosaic img,
.team-gallery img,
.resource-image-band img,
.product-visual-strip img,
.csr-photo-panel img {
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(32, 43, 59, 0.12);
  /*! height: 230px; */
  object-fit: cover;
  width: 100%;
}

.photo-mosaic .wide {
  grid-column: span 2;
}

.team-gallery img:nth-child(3) {
  height: 360px;
}

.resource-image-band,
.product-visual-strip {
  margin-bottom: 34px;
}

.product-visual-strip img {
  height: 190px;
}

.csr-photo-panel {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(32, 43, 59, 0.1);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  padding: 24px;
}

.csr-photo-panel img {
  height: 320px;
}

.csr-photo-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
}

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

.catalog-card div {
  padding: 20px;
}

.catalog-card span {
  color: var(--gold-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-size: 20px;
  font-weight: 850;
  margin-bottom: 9px;
}

.catalog-card p {
  font-size: 13px;
  min-height: 46px;
}

.catalog-card dl {
  border-top: 1px solid rgba(38, 48, 68, 0.1);
  display: grid;
  grid-template-columns: 104px 1fr;
  margin: 16px 0 0;
  padding-top: 14px;
}

.catalog-card dt,
.catalog-card dd {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.catalog-card dt {
  color: var(--muted);
  font-weight: 800;
}

.catalog-card dd {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .inner-hero {
    padding-top: 145px;
  }

  .filter-panel {
    position: static;
  }

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

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-mosaic,
  .team-gallery,
  .resource-image-band,
  .product-visual-strip,
  .gallery-grid,
  .blog-grid,
  .csr-photo-panel {
    grid-template-columns: 1fr 1fr;
  }

  .csr-photo-panel {
    padding: 18px;
  }
}

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

  .inner-hero {
    padding-bottom: 64px;
  }

  .photo-mosaic,
  .team-gallery,
  .resource-image-band,
  .product-visual-strip,
  .gallery-grid,
  .blog-grid,
  .csr-photo-panel {
    grid-template-columns: 1fr;
  }

  .photo-mosaic .wide {
    grid-column: auto;
  }

  .team-gallery img:nth-child(3),
  .csr-photo-panel img {
    height: 250px;
  }
}
html body.inner-page.product footer.site-footer div.container div.row.g-4 div.col-lg-4 div.socials a:hover {
  color: #000000 !important;
}
