/*
  HEZ Automation Common Styles
  1. Tokens
  2. Base
  3. Navigation
  4. Buttons
  5. Hero
  6. Sections and cards
  7. Home page components
  8. Animation
  9. Responsive
*/

:root {
  /*--hez-gold: #c99522;*/
  --hez-gold: #d4af37;
  --hez-gold-dark: #b8962e;
  --hez-gold-soft: #fff4d8;
  --hez-black: #0b0d10;
  --hez-ink: #171b20;
  --hez-charcoal: #272c33;
  --hez-grey: #5e6671;
  --hez-light: #f5f6f7;
  --hez-line: #e3e6ea;
  --hez-white: #ffffff;
  --hez-success: #1f7a5c;
  --shadow-sm: 0 10px 28px rgba(11, 13, 16, 0.08);
  --shadow-md: 0 18px 50px rgba(11, 13, 16, 0.14);
  --radius: 8px;
  --header-height: 70px;
  --border: #e5e5e5;
  --hez-bg-opacity: 1;
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--hez-white);
  color: var(--hez-charcoal);
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  width: 100%;
  overflow-x: clip;
  padding-top: var(--header-height);

}


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

a {
  color: var(--hez-gold-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--hez-black);
}

p {
  color: var(--hez-grey);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hez-black);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.section-pad {
  padding: 86px 0;
}

.section-pad-sm {
  padding: 58px 0;
}

.section-kicker {
  color: var(--hez-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 36px);
  margin-bottom: 1rem;
  max-width: 780px;
}

.section-lead {
  color: var(--hez-grey);
  font-size: 1.05rem;
  max-width: 790px;
}

.text-gold {
  color: var(--hez-gold-dark) !important;
}

.bg-soft {
  background: var(--hez-light);
}

.bg-dark-custom {
  background-color: var(--hez-black) !important;
}

.bg-gold {
  background-color: var(--hez-gold) !important;
}

.bg-dark-hez {
  background: var(--hez-black);
  color: var(--hez-white);
}

.bg-dark-hez h2,
.bg-dark-hez h3,
.bg-dark-hez p,
.bg-dark-hez li,
.bg-dark-hez span {
  color: var(--hez-white);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 13, 16, 0.08);
  min-height: var(--header-height);
  z-index: 1030;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

/*.navbar-brand {
  align-items: center;
  color: var(--hez-black);
  display: inline-flex;
  font-size: 1.14rem;
  font-weight: 900;
  gap: 0.72rem;
}*/

.brand-mark {
  align-items: center;
  background: var(--hez-black);
  border: 2px solid var(--hez-gold);
  border-radius: 6px;
  color: var(--hez-gold);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}


/* =========================
  NAVBAR
========================= */

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  align-items: center;
  color: var(--hez-black);
  display: inline-flex;
  font-size: 1.14rem;
  font-weight: 800;
  gap: 0.72rem;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 0.8rem !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--hez-gold);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    background: var(--hez-gold);
}

.btn-gold {
    background: rgb(212 175 55 / var(--hez-bg-opacity, 1));
    border: 1px solid var(--hez-gold);
    color: #111;
    font-weight: 700;
    padding: 12px 24px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: var(--hez-gold-dark);
    border-color: var(--hez-gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1px solid var(--hez-gold);
    color: var(--hez-gold);
    font-weight: 700;
    padding: 11px 24px;
    transition: 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--hez-gold);
    color: #111;
}

.btn-hez,
.btn-outline-hez,
.btn-dark-hez {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  gap: 0.55rem;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
}

.btn-hez {
  background: var(--hez-gold);
  border: 1px solid var(--hez-gold);
  color: var(--hez-black);
}

.btn-hez:hover,
.btn-hez:focus {
  background: var(--hez-gold-dark);
  border-color: var(--hez-gold-dark);
  color: var(--hez-white);
}

.btn-outline-hez {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--hez-white);
}

.btn-outline-hez:hover,
.btn-outline-hez:focus {
  background: var(--hez-white);
  color: var(--hez-black);
}

.btn-dark-hez {
  background: var(--hez-black);
  border: 1px solid var(--hez-black);
  color: var(--hez-white);
}

.btn-dark-hez:hover,
.btn-dark-hez:focus {
  background: var(--hez-gold);
  border-color: var(--hez-gold);
  color: var(--hez-black);
}

.icon {
  display: inline-block;
  height: 20px;
  width: 20px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  position: relative;
}

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

.hero-media {
  z-index: 0;
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(11, 13, 16, 0.94) 0%, rgba(11, 13, 16, 0.78) 43%, rgba(11, 13, 16, 0.2) 100%);
  z-index: 1;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.17;
  z-index: 2;
}

.hero-content {
  min-height: calc(100vh - var(--header-height));
  padding: 92px 0 70px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--hez-white);
  font-size: clamp(32px, 5vw, 48px);
  max-width: 900px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  max-width: 720px;
  line-height: 1.5;
}

.page-hero {
  min-height: 560px;
  min-height: 560px;
}

.page-hero .hero-content {
  min-height: 560px;
  min-height: 560px;
}

.hero-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--hez-white);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.5rem;
  padding: 0.44rem 0.8rem;
}

.hero-badge::before {
  background: var(--hez-gold);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.hero-stat {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.hero-stat strong {
  color: var(--hez-gold);
  display: block;
  font-size: 1.72rem;
  line-height: 1.08;
}

.hero-control-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.control-status {
  background: var(--hez-black);
  border-radius: 6px;
  color: var(--hez-white);
  overflow: hidden;
  padding: 1rem;
}

.control-screen {
  background:
    linear-gradient(90deg, rgba(201, 149, 34, 0.16), transparent),
    #12161b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  height: 148px;
  padding: 0.9rem;
  position: relative;
}

.control-line {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.control-line span {
  animation: fillLine 3.4s ease-in-out infinite;
  background: var(--hez-gold);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 68%;
}

.control-line:nth-child(2) span {
  animation-delay: 0.4s;
  width: 48%;
}

.control-line:nth-child(3) span {
  animation-delay: 0.8s;
  width: 78%;
}

.pulse-dot {
  animation: pulseDot 1.8s ease-in-out infinite;
  background: var(--hez-success);
  border-radius: 999px;
  height: 13px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 13px;
}

.service-card,
.sector-card,
.process-card,
.image-panel,
.roi-card,
.contact-panel {
  background: var(--hez-white);
  border: 1px solid var(--hez-line);
  border-radius: var(--radius);
  height: 100%;
  padding: 1.35rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-card,
.team-card,
.project-showcase,
.testimonial-card,
.expertise-panel,
.value-strip {
  background: var(--hez-white);
  border: 1px solid var(--hez-line);
  border-radius: var(--radius);
  height: 100%;
  padding: 1.35rem;
}

.content-card,
.team-card,
.project-showcase,
.testimonial-card,
.expertise-panel {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover,
.team-card:hover,
.project-showcase:hover,
.testimonial-card:hover,
.expertise-panel:hover {
  border-color: rgba(201, 149, 34, 0.48);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.about-index {
  background: var(--hez-black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
}

.about-index a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0.25rem;
}

.about-index a:last-child {
  border-bottom: 0;
}

.about-index a:hover {
  color: var(--hez-gold);
}

.about-index span {
  color: var(--hez-gold);
  font-weight: 900;
}

.value-strip {
  /*align-items: center;*/
  display: flex;
  gap: 1rem;
}

.value-strip h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.value-strip .service-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.expertise-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tab-button {
  background: var(--hez-white);
  border: 1px solid var(--hez-line);
  border-radius: 999px;
  color: var(--hez-charcoal);
  font-weight: 600;
  padding: 0.58rem 0.92rem;
  font-size: 14px;
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus {
  background: var(--hez-gold);
  border-color: var(--hez-gold);
  color: var(--hez-black);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.team-card {
  overflow: hidden;
  position: relative;
}

.team-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.team-card::before {
  background: linear-gradient(90deg, var(--hez-gold), transparent);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.team-role {
  color: var(--hez-gold-dark);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.project-showcase {
  overflow: hidden;
  padding: 0;
}

.project-showcase img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.project-body {
  padding: 1.35rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.project-meta span {
  background: var(--hez-gold-soft);
  border: 1px solid rgba(201, 149, 34, 0.3);
  border-radius: 999px;
  color: var(--hez-gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
}

.testimonial-slider {
  position: relative;
}

.testimonial-card {
  display: none;
  min-height: 260px;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card blockquote {
  color: var(--hez-charcoal);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-controls {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.testimonial-controls button {
  align-items: center;
  background: var(--hez-black);
  border: 0;
  border-radius: 6px;
  color: var(--hez-white);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus {
  background: var(--hez-gold);
  color: var(--hez-black);
}

.route-line {
  border-left: 3px solid var(--hez-gold);
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
}

.route-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
}

.route-item strong {
  color: var(--hez-gold);
  display: block;
  margin-bottom: 0.3rem;
}

.service-card:hover,
.sector-card:hover,
.process-card:hover {
  border-color: rgba(201, 149, 34, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-icon {
  align-items: center;
  background: var(--hez-gold-soft);
  border: 1px solid rgba(201, 149, 34, 0.36);
  border-radius: 6px;
  color: var(--hez-gold-dark);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 46px;
}

.service-card h3,
.sector-card h3,
.process-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.service-card p,
.sector-card p,
.process-card p {
  margin-bottom: 0;
}

.image-panel {
  overflow: hidden;
  padding: 0;
}

.image-panel img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-caption {
  background: var(--hez-black);
  color: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.image-caption strong {
  color: var(--hez-gold);
  display: block;
}

.process-track {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  min-height: 164px;
  padding: 1rem;
  position: relative;
}

.process-step::after {
  background: var(--hez-gold);
  content: "";
  height: 3px;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 52px;
  transform-origin: left;
  transform: scaleX(0);
}

.process-step.in-view::after {
  animation: scanLine 900ms ease forwards;
}

.process-step span {
  align-items: center;
  background: rgb(212 175 55 / var(--hez-bg-opacity, 1));
  border-radius: 6px;
  color: var(--hez-black);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 1.55rem;
  width: 34px;
}

.process-step h3 {
  color: var(--hez-white);
  font-size: 1.12rem;
  margin-bottom: 0.45rem;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.automation-graphic {
  background:
    linear-gradient(135deg, rgba(201, 149, 34, 0.15), transparent 45%),
    var(--hez-white);
  border: 1px solid var(--hez-line);
  border-radius: var(--radius);
  min-height: 360px;
  overflow: hidden;
  padding: 1.35rem;
  position: relative;
}

.conveyor {
  background: repeating-linear-gradient(90deg, #c8ced5 0 18px, #eef1f4 18px 30px);
  border: 1px solid #aeb6bf;
  border-radius: 999px;
  bottom: 62px;
  height: 42px;
  left: 8%;
  position: absolute;
  right: 8%;
}

.box {
  animation: moveBox 6s linear infinite;
  background: #caa56e;
  border: 1px solid #a47b3d;
  border-radius: 4px;
  bottom: 108px;
  height: 46px;
  left: 8%;
  position: absolute;
  width: 58px;
}

.box:nth-child(2) {
  animation-delay: 2s;
}

.box:nth-child(3) {
  animation-delay: 4s;
}

.robot-arm {
  border-bottom: 16px solid var(--hez-gold);
  border-radius: 16px;
  height: 130px;
  left: 50%;
  position: absolute;
  top: 96px;
  transform: translateX(-50%) rotate(-22deg);
  transform-origin: left center;
  width: 184px;
}

.robot-arm::before,
.robot-arm::after {
  background: var(--hez-black);
  border: 6px solid var(--hez-gold);
  border-radius: 999px;
  content: "";
  position: absolute;
}

.robot-arm::before {
  height: 52px;
  left: -18px;
  top: 88px;
  width: 52px;
}

.robot-arm::after {
  animation: robotNod 3s ease-in-out infinite;
  height: 36px;
  right: -18px;
  top: 98px;
  width: 36px;
}

.robot-base {
  background: var(--hez-black);
  border-radius: 6px 6px 0 0;
  height: 84px;
  left: 35%;
  position: absolute;
  top: 216px;
  width: 90px;
}

.signal-card {
  background: var(--hez-black);
  border-radius: var(--radius);
  color: var(--hez-white);
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.signal-card small {
  color: color: #ccc;
}

.signal-row {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.signal-dot {
  animation: pulseDot 1.5s ease-in-out infinite;
  background: var(--hez-success);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.roi-card {
  background: var(--hez-black);
  box-shadow: var(--shadow-md);
  color: var(--hez-white);
}

.roi-card label,
.roi-card p,
.roi-card span {
  color: rgba(255, 255, 255, 0.78);
}

.roi-card h3 {
  color: var(--hez-white);
}

.roi-card .form-control,
.roi-card .form-select {
  background: #161a1f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--hez-white);
  min-height: 46px;
}

.roi-result {
  background: rgba(201, 149, 34, 0.13);
  border: 1px solid rgba(201, 149, 34, 0.36);
  border-radius: var(--radius);
  padding: 1rem;
}

.roi-result strong {
  color: var(--hez-gold);
  display: block;
  font-size: 1.55rem;
}

.address-block {
  background: var(--hez-light);
  border-left: 5px solid var(--hez-gold);
  border-radius: var(--radius);
  padding: 1.2rem;
}


.back-to-top {
  align-items: center;
  background: var(--hez-gold);
  border: 0;
  border-radius: 6px;
  bottom: 18px;
  box-shadow: var(--shadow-sm);
  color: var(--hez-black);
  display: none;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  position: fixed;
  right: 18px;
  width: 46px;
  z-index: 1020;
}

.back-to-top.is-visible {
  display: inline-flex;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fillLine {
  0% { transform: scaleX(0.4); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0.4); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 122, 92, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(31, 122, 92, 0); }
}

@keyframes scanLine {
  to { transform: scaleX(1); }
}

@keyframes moveBox {
  from { transform: translateX(0); }
  to { transform: translateX(720%); }
}

@keyframes robotNod {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@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;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-behavior: auto;
  }

  .navbar-nav .nav-link {
    padding: 12px 0px !important;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar-collapse {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .section-pad {
    padding: 66px 0;
  }

  .hero-content {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 13, 16, 0.94) 0%, rgba(11, 13, 16, 0.76) 58%, rgba(11, 13, 16, 0.52) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .process-track {
    grid-template-columns: repeat(7, 170px);
  }

  .service-filter-wrapper {
    position: static;
  }

  .service-hero-srv {
      padding: 75px 0;
  }

  .section-padding {
      padding: 65px 0;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 54px 0;
  }

  .hero-content {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding-top: calc(var(--header-height) + 30px);
  }

  .btn-hez,
  .btn-outline-hez,
  .btn-dark-hez {
    width: 100%;
  }

  .service-card,
  .sector-card,
  .process-card,
  .image-panel,
  .roi-card,
  .contact-panel,
  .automation-graphic {
    padding: 1.1rem;
  }

  .image-panel {
    padding: 0;
  }

  .automation-graphic {
    min-height: 320px;
  }

  .btn-gold, .btn-outline-gold {
    width: 100%;
    margin-bottom: 10px;
  }

  .service-hero-srv {
    padding: 60px 0;
  }


  .service-hero-srv h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

  .intro-box {
      padding: 25px;
  }

  .service-card-srv {
      padding: 24px;
  }

  .detail-number {
      font-size: 48px;
  }

  .detail-content h3 {
      font-size: 25px;
  }

  .btn-gold,
  .btn-outline-gold {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* =========================
  SERVICE HERO
========================= */
.service-hero-srv {
  position: relative;
  background:
      linear-gradient(
          rgba(0, 0, 0, 0.82),
          rgba(0, 0, 0, 0.82)
      ),
      linear-gradient(135deg, #222, #111);
  color: #fff;
  /*padding: 90px 0 70px;*/
  overflow: hidden;
}

.service-hero-srv::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.service-hero-srv::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 50%;
    right: 30px;
    bottom: -150px;
}

.breadcrumb-item a {
  color: var(--hez-gold);
}

.breadcrumb-item.active {
    color: #ddd;
}

.hero-label {
  display: inline-block;
  border: 1px solid rgba(212, 160, 23, 0.6);
  color: var(--hez-gold);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-hero-srv h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--hez-white);
}

.service-hero-srv h1 span {
    color: var(--hez-gold);
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.26rem);
    color: rgba(255, 255, 255, 0.86);
    max-width: 800px;
    line-height: 1.5;
}

a.discuss-btn {
    padding: 12px;
}

.section-padding {
  padding: 90px 0;
}

.section-title-srv {
  font-size: clamp(1.8rem, 3vw, 36px);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--hez-grey);
  max-width: 750px;
  margin: 15px auto 0;
  font-size: 20px;
}

.gold-line {
  width: 65px;
  height: 4px;
  background: var(--hez-gold);
  margin: 18px auto;
}
/* =========================
    SERVICE FILTER
========================= */

.service-filter-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    padding: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 85px;
    z-index: 20;
}

.service-filter .btn {
    border-radius: 0;
    margin: 3px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
}

.service-filter .btn.active {
    background: var(--hez-gold);
    border-color: var(--hez-gold);
    color: #111;
}

/* =========================
  SERVICE CARD
========================= */

.service-card-srv {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.service-card-srv::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--hez-gold);
    transition: 0.3s ease;
}

.service-card-srv:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.service-card-srv:hover::before {
    height: 100%;
}

.service-icon-srv {
  width: 62px;
  height: 62px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--hez-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card-srv h3 {
    font-size: 21px;
    font-weight: 750;
    margin-bottom: 14px;
}

.service-card-srv p {
    color: var(--hez-grey);
}

.service-card-srv ul {
    padding-left: 0px;
    color: var(--hez-grey);
    font-size: 1rem;
    list-style: none;
}

.service-card-srv ul li i {
  color: var(--hez-gold-dark);
  margin-right: 8px;
}  

.service-card-srv li {
    margin-bottom: 5px;
}

.service-link {
  color: var(--hez-gold-dark);
  font-weight: 700;
}

.service-link:hover {
    color: var(--hez-black);
}

/* =========================
    INTRO SECTION
========================= */

.intro-box {
    border-left: 5px solid var(--hez-gold);
    background: var(--light-grey);
    padding: 35px;
}

.intro-box h2 {
    font-weight: 800;
}

/* =========================
  DETAIL SECTIONS
========================= */

.detail-section {
    border-top: 1px solid var(--border);
}

.detail-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--hez-gold);
    line-height: 1;
}

.detail-content h3 {
    font-size: 30px;
    font-weight: 800;
}

.detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.detail-content p {
    color: var(--hez-grey);
    font-size: 1.05rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: var(--hez-grey);
}

.detail-list li::before {
    content: "\F26A";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    color: var(--hez-gold);
    font-weight: bold;
}

/* =========================
  PROCESS
========================= */

.process-section {
    background: var(--hez-black);
    color: #fff;
}

.process-card-srv {
    height: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 28px 22px;
    background: rgba(255,255,255,0.03);
    transition: 0.3s ease;
    border-radius: var(--radius);
}

.process-card-srv:hover {
    border-color: var(--hez-gold);
    transform: translateY(-5px);
}
.process-number {
    color: var(--hez-gold);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card-srv h4 {
    font-weight: 700;
    color: var(--hez-white);
    font-size: 1.12rem;
}

.process-card-srv p {
    color: #bbb;
    /*font-size: 14px;*/
    margin-bottom: 0;
}

.process-section p {

}

/* =========================
  INDUSTRY CARDS
========================= */

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 1.35rem;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid var(--hez-line);
    border-radius: var(--radius);
}

.industry-card:hover {
    border-color: var(--hez-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.industry-icon {
    font-size: 38px;
    color: var(--hez-gold-dark);
    margin-bottom: 18px;
}

.industry-card h4 {
    font-weight: 700;
    font-size: 1.12rem;
}
/* =========================
  FAQ
========================= */

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.accordion-button {
    font-weight: 700;
    color: var(--dark);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 160, 23, 0.1);
    color: var(--hez-black);
}
.accordion-button::after {
    background-size: 14px;
}

/* =========================
  CTA
========================= */

.cta-section {
    background:
        linear-gradient(
            100deg,
            #111 0%,
            #222 100%
        );
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
}

.cta-section p {
    color: #ccc;
    max-width: 700px;
}

/* =========================
  BACK TO TOP
========================= */

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border: 0;
    background: var(--hez-gold);
    color: #111;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#backToTop.show {
    display: flex;
}

/* =========================
  FOOTER
========================= */

footer {
    background: #0d0d0d;
    color: #aaa;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: #aaa;
    transition: 0.2s ease;
}

footer p {
    color: #aaa;
}

footer a:hover {
    color: var(--hez-gold);
}

.footer-brand {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
}

.footer-brand span {
    color: var(--hez-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
  Product Page
========================= */
.products-hero {
  position: relative;
  background:
      linear-gradient(
          rgba(15, 15, 15, 0.94),
          rgba(15, 15, 15, 0.94)
      ),
      #171717;
  color: #fff;
  overflow: hidden;
}

.products-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    right: -120px;
    top: -150px;
}

.products-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    left: -100px;
    bottom: -130px;
}

.products-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
}

.products-hero h1 span {
    color: var(--hez-gold);
}

.product-hero-content .hero-description {
  max-width: 850px;
}


.section-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--hez-grey);
    margin-bottom: 0;
}


.intro-section {
    background: #fff;
}

.product-intro-box {
  background: var(--hez-light);
  border-left: 5px solid var(--hez-gold);
  padding: 35px;
  border-radius: 0 12px 12px 0;
}

.product-intro-box h3 {
    font-weight: 750;
    margin-bottom: 15px;
}

.product-intro-box p:last-child {
    margin-bottom: 0;
}

.intro-feature {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
}

.intro-feature:hover {
    border-color: var(--hez-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.intro-feature i {
    font-size: 30px;
    color: var(--hez-gold-dark);
    margin-bottom: 15px;
}

.intro-feature h5 {
  font-weight: 700;
  font-size: 1.12rem;
}

.intro-feature p {
    color: var(--hez-grey);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* =========================================
    PRODUCT CATEGORIES
========================================= */
.category-section {
  background: var(--hez-light);
}


.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: var(--hez-gold);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.product-card-top {
    width: 100%;
    /*height: 220px;*/
    overflow: hidden;
    background: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

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

        
.product-card h3 {
    font-size: 21px;
    font-weight: 750;
    margin-bottom: 12px;
}
.product-card p {
    color: var(--hez-grey);
    font-size: font-size: 1.05rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.product-features li {
    font-size: font-size: 1.05rem;
    color: var(--hez-grey);
    margin-bottom: 8px;
}

.product-features i {
    color: var(--hez-gold-dark);
    margin-right: 8px;
}

/* =========================================
  PRODUCT DETAILS
========================================= */
.details-section {
  background: var(--hez-light);
}

.detail-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: 0.3s ease;
}

.detail-item:hover {
    border-color: var(--hez-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.detail-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hez-gold-soft);
    color: var(--hez-gold-dark);
    border-radius: 10px;
    font-size: 25px;
    margin-bottom: 18px;
}

.detail-item h4 {
    font-weight: 750;
    margin-bottom: 12px;
    font-size: 21px;
}

.detail-item p {
    color: var(--hez-grey);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* =========================================
  BRANDS
========================================= */

.brands-section {
    background: #fff;
}

.brand-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    background: #fff;
    transition: 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--hez-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.brand-symbol {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--hez-gold);
    color: var(--hez-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 19px;
    font-weight: 800;
}

.brand-card h5 {
    font-weight: 750;
    margin-bottom: 8px;
}

.brand-card p {
    color: var(--hez-grey);
    font-size: 13px;
    margin-bottom: 0;
}

.brand-note {
    margin-top: 35px;
    padding: 20px;
    background: var(--hez-light);
    border-radius: 10px;
    text-align: center;
    color: var(--hez-grey);
    font-size: 14px;
}

/* =========================================
  WHY HEZ
========================================= */

.why-section {
    background: var(--hez-black);
    color: #fff;
}

.why-card {
    height: 100%;
    padding: 30px;
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.why-card i {
    color: var(--hez-gold);
    font-size: 34px;
    margin-bottom: 18px;
}

.why-card h5 {
  font-weight: 700;
  color: var(--hez-white);
  font-size: 1.12rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

/* =========================================
  CTA
========================================= */

.product-cta-section {
    background: linear-gradient(135deg, #E6C65C 0%, #D4AF37 45%, #B8962E 100%);
    padding: 75px 0;
}

.product-cta-section h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #111;
}

.product-cta-section p {
    max-width: 800px;
    margin: 15px auto 28px;
    color: #242424;
}

.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hez-black);
    color: #fff;
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 700;
    border: 0;
    transition: 0.3s ease;
}

.btn-dark-custom:hover {
    background: #000;
    color: var(--hez-gold);
    transform: translateY(-2px);
}

@media (max-width: 767px) {

    .section-padding {
        padding: 55px 0;
    }

    .products-hero {
        padding: 65px 0;
    }

    .product-intro-box {
        padding: 25px;
    }

    .product-card-body {
        padding: 22px;
    }

    .detail-item {
        padding: 24px;
    }
}

.why-invest h5 {
  font-size: 1.12rem;
}

.b-radius {
  border-radius: var(--radius);
}

/* =========================================================
   BRANDS SECTION
========================================================= */

.brand-slider {
    position: relative;

    width: 100%;

    padding: 10px 55px 60px;
}

.brand-logo-card {

    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    margin-top: 10px;
}


.brand-logo-card:hover {
    border-color: var(--hez-gold);
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.09);

}


/* =========================================================
   COMPANY LOGO
========================================================= */

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 75px;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.brand-logo-card:hover .brand-logo {

    transform: scale(1.05);

}



/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.brand-control {

    position: absolute;

    top: 50%;

    width: 42px;
    height: 42px;

    margin: 0;

    transform: translateY(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    background: #111111;

    border: 0;

    border-radius: 50%;

    opacity: 1;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.brand-control:hover {

    background: var(--hez-gold);

}


.brand-control:focus {

    box-shadow: none;

}


.brand-control .carousel-control-prev-icon,
.brand-control .carousel-control-next-icon {

    width: 17px;
    height: 17px;

}


.carousel-control-prev.brand-control {

    left: 0;

}


.carousel-control-next.brand-control {

    right: 0;

}


/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

.brand-indicators {

    position: absolute;

    left: 0;
    right: 0;

    bottom: 5px;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


.brand-indicators [data-bs-target] {

    width: 8px;
    height: 8px;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background-color: #b5b5b5;

    opacity: 1;

    transition:
        width 0.3s ease,
        background-color 0.3s ease;

}


.brand-indicators .active {

    width: 24px;

    border-radius: 10px;

    background-color: var(--hez-gold);

}



.brand-slider-mobile {

    display: none;

}


@media (max-width: 991.98px) {

    .brand-slider-desktop {

        padding-left: 45px;
        padding-right: 45px;

    }


    .brand-logo-card {

        height: 135px;

        padding: 20px;

    }


    .brand-logo {

        max-width: 155px;
        max-height: 65px;

    }


    .brand-control {

        width: 38px;
        height: 38px;

    }

}




@media (max-width: 767.98px) {

    .brand-slider-desktop {

        display: none;

    }

    .brand-slider-mobile {

        display: block;

        padding: 5px 38px 50px;

    }


    .brand-slider-mobile .brand-logo-card {

        height: 120px;

        margin: 0;

        padding: 20px;

        border-radius: 12px;

    }

    .brand-slider-mobile .brand-logo {

        max-width: 170px;

        max-height: 65px;

    }



    .brand-slider-mobile .brand-control {

        width: 32px;
        height: 32px;

    }


    .brand-slider-mobile
    .brand-control
    .carousel-control-prev-icon,
    .brand-slider-mobile
    .brand-control
    .carousel-control-next-icon {

        width: 13px;
        height: 13px;

    }



    .brand-slider-mobile .brand-indicators {

        bottom: 5px;

    }


    .brand-slider-mobile
    .brand-indicators
    [data-bs-target] {

        width: 6px;
        height: 6px;

    }


    .brand-slider-mobile
    .brand-indicators
    .active {

        width: 18px;

    }


    .brands-section .section-heading {

        margin-bottom: 30px;

    }


    .brands-section .section-subtitle {

        font-size: 14px;

        line-height: 1.7;

    }

}


@media (max-width: 575.98px) {

    .brands-section {

        overflow: hidden;

    }


    .brands-section .section-heading h2 {

        font-size: 27px;

    }


    .brands-section .section-subtitle {

        font-size: 14px;

    }


    .brand-slider-mobile {

        padding-left: 34px;
        padding-right: 34px;

    }


    .brand-slider-mobile .brand-logo-card {

        height: 120px;

    }


    .brand-slider-mobile .brand-logo {

        max-width: 160px;

        max-height: 60px;

    }


    .brand-slider-mobile .brand-control {

        width: 30px;
        height: 30px;

    }

}



@media (max-width: 380px) {

    .brand-slider-mobile {

        padding-left: 30px;
        padding-right: 30px;

    }


    .brand-slider-mobile .brand-logo-card {

        height: 110px;

    }


    .brand-slider-mobile .brand-logo {

        max-width: 145px;

        max-height: 55px;

    }


    .brand-slider-mobile .brand-control {

        width: 28px;
        height: 28px;

    }

}




.business-value-card {

    position: relative;

    overflow: hidden;

    padding: 30px;

    background: #111111;

    color: #ffffff;

    border-radius: 16px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}




.business-value-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: var(--hez-gold);
}


/* =========================================================
   CARD HEADER
========================================================= */

.business-card-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.business-card-icon {

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--hez-gold);

    color: #111111;

    border-radius: 10px;

    font-size: 23px;
}


.business-card-header p {

    margin: 0 0 3px;

    color: var(--hez-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.business-card-header h3 {

    margin: 0;

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;
}


/* =========================================================
   VALUE LIST
========================================================= */

.business-value-list {

    padding: 8px 0;
}


.value-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.value-item:last-child {

    border-bottom: 0;

}


.value-number {

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212, 175, 55, 0.12);

    color: var(--hez-gold);

    border-radius: 6px;

    font-size: 11px;

    font-weight: 700;
}


.value-item h4 {

    margin: 0 0 4px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


.value-item p {

    margin: 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.business-card-footer {

    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}


.business-card-footer i {

    flex: 0 0 auto;

    color: var(--hez-gold);

    font-size: 16px;
}

@media (max-width: 991.98px) {

    .business-value-card {

        margin-top: 10px;

    }

}


@media (max-width: 575.98px) {
    .business-value-card {

        padding: 22px;

        border-radius: 12px;

    }


    .business-card-header h3 {

        font-size: 19px;

    }


    .business-card-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;

    }

}

.key-focus ul li i {
  color: var(--hez-gold);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #ffffff;
}


.contact-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.contact-heading .section-kicker {
    margin-bottom: 10px;

    color: var(--hez-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact-heading .section-title {
    margin-bottom: 18px;

    color: #111111;

    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;

    line-height: 1.2;
}

.contact-heading .section-lead {
    margin: 0 auto;

    max-width: 780px;

    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}

.contact-hero-content p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.5;
    font-size: clamp(1.05rem, 2vw, 1.26rem);
}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-info-card {

    height: 100%;

    padding: 35px;

    background: #111111;

    color: #ffffff;

    border-radius: 16px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}



.contact-info-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: var(--hez-gold);
}



.contact-info-intro {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

}


.contact-info-icon {

    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(212 175 55 / var(--hez-bg-opacity, 1));
    color: #111111;
    border-radius: 10px;
    font-size: 22px;

}

.contact-info-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 750;
}

.contact-info-text {

    margin-bottom: 30px;
    color: #bbb;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;

}


.contact-detail-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}


.contact-detail-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: var(--hez-gold);

    border-radius: 8px;

    font-size: 17px;

}


.contact-detail-item span {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.contact-detail-item p {
    margin: 0;
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}


.contact-detail-item a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}


.contact-detail-item a:hover {

    color: var(--hez-gold);

}



.contact-form-card {

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e6e6e6;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);
}



.contact-form-heading {

    margin-bottom: 30px;

}


/*.contact-form-heading .section-kicker {

    margin-bottom: 8px;

    color: var(--hez-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}*/


.contact-form-heading h2 {

    margin-bottom: 8px;

    color: #111111;

    font-size: 26px;

    font-weight: 700;

}


.contact-form-heading p {
    margin: 0;
    color: var(--hez-grey);
    font-size: 1.05rem;
}


.contact-form-heading p span {
    color: #d00000;
    font-weight: 700;
}



.contact-form .form-label {
    margin-bottom: 8px;
    color: #222222;
    font-size: 15px;
    font-weight: 600;

}

.required {
    color: #d00000;
}



.input-group-custom {

    position: relative;

}


.input-icon {

    position: absolute;

    top: 50%;
    left: 15px;

    z-index: 3;

    transform: translateY(-50%);

    color: #999999;

    font-size: 16px;

    pointer-events: none;

}


.input-group-custom .form-control {

    min-height: 50px;

    padding-left: 45px;

}



.contact-form .form-control {

    width: 100%;

    border: 1px solid #dddddd;

    border-radius: 8px;

    background: #ffffff;

    color: #222222;

    font-size: 14px;

    box-shadow: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.contact-form .form-control::placeholder {

    color: #aaaaaa;

    opacity: 1;

}


.contact-form .form-control:focus {

    border-color: var(--hez-gold);

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.12);

}



.textarea-wrapper {

    position: relative;

}


.textarea-icon {

    position: absolute;

    top: 17px;
    left: 15px;

    z-index: 3;

    color: #999999;

    font-size: 16px;

    pointer-events: none;

}


.textarea-wrapper textarea {

    min-height: 145px;

    padding: 15px 15px 15px 45px !important;

    resize: vertical;

}



.contact-form .invalid-feedback {

    font-size: 11px;

}


.contact-form .was-validated .form-control:invalid {

    border-color: #dc3545;

}


.contact-form .was-validated .form-control:valid {

    border-color: #198754;

}



.form-submit-area {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 5px;

}





.form-submit-area > p {

    margin: 0;

    color: #888888;

    font-size: 11px;

    line-height: 1.5;

}



@media (max-width: 991.98px) {

    .contact-info-card {

        margin-bottom: 5px;

    }

}



@media (max-width: 767.98px) {

    .contact-heading {

        margin-bottom: 35px;

    }


    .contact-heading .section-lead {

        font-size: 14px;

    }


    .contact-info-card,
    .contact-form-card {

        padding: 25px;

        border-radius: 12px;

    }


    .contact-info-intro h2 {

        font-size: 21px;

    }


    .contact-form-heading h2 {

        font-size: 22px;

    }


    .form-submit-area {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .contact-submit-btn {

        width: 100%;

    }


    .form-submit-area > p {

        text-align: center;

        width: 100%;

    }

}



@media (max-width: 575.98px) {

    .contact-info-card,
    .contact-form-card {

        padding: 20px;

    }


    .contact-info-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;

    }


    .contact-detail-item {

        gap: 12px;

    }


    .contact-detail-icon {

        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 15px;

    }


    .contact-detail-item p {

        font-size: 13px;

    }


    .contact-tags span {

        font-size: 10px;

    }

}

/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #181818 55%,
            #222222 100%
        );

    color: #ffffff;
}


.contact-hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -220px;

    border: 1px solid rgba(212, 175, 55, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


.contact-hero::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -160px;
    bottom: -180px;

    border: 1px solid rgba(212, 175, 55, 0.12);

    border-radius: 50%;

    pointer-events: none;
}



.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--hez-white);
}


.contact-hero-title span {
    display: block;
    color: var(--hez-gold);
}



.contact-hero-text {

    max-width: 760px;

    margin: 0;

    color: #c7c7c7;

    font-size: 16px;

    line-height: 1.8;
}



.contact-hero-card {

    position: relative;

    z-index: 2;

    padding: 30px;

    background: #ffffff;

    color: #111111;

    border-radius: 14px;

    border-top: 4px solid var(--hez-gold);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}



.contact-hero-card-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(212, 175, 55, 0.13);

    color: var(--hez-gold);

    border-radius: 10px;

    font-size: 22px;
}



.contact-hero-card-label {

    margin: 0 0 7px;

    color: var(--hez-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}



.contact-hero-card h2 {

    margin: 0 0 12px;

    color: #111111;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.25;
}



.contact-hero-card > p:not(.contact-hero-card-label) {

    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.7;
}


.contact-hero-card-line {

    width: 45px;

    height: 3px;

    margin: 22px 0;

    background: var(--hez-gold);

    border-radius: 10px;
}



.contact-hero-card-bottom {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #222222;

    font-size: 12px;

    font-weight: 600;
}


.contact-hero-card-bottom i {

    color: var(--hez-gold);

    font-size: 17px;
}



@media (max-width: 991.98px) {

    .contact-hero {

        padding: 70px 0;

    }


    .contact-hero-title {

        font-size: clamp(38px, 6vw, 52px);

    }


    .contact-hero-card {

        max-width: 600px;

        margin: 10px auto 0;

    }

}



@media (max-width: 767.98px) {

    .contact-hero {

        padding: 60px 0;

    }


    .contact-hero-title {

        margin-bottom: 18px;

        font-size: 38px;

        letter-spacing: -0.5px;

    }


    .contact-hero-text {

        font-size: 14px;

        line-height: 1.7;

    }




    .contact-hero-card {

        padding: 25px;

    }


    .contact-hero-card h2 {

        font-size: 22px;

    }

}



@media (max-width: 575.98px) {

    .contact-hero {
        padding: 100px 0;

    }


    .contact-hero-title {

        font-size: 32px;

    }



    .contact-hero-card {

        padding: 22px;

        border-radius: 10px;

    }


    .contact-hero-card-icon {

        width: 46px;
        height: 46px;
        font-size: 19px;
    }
}

header, .navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030; 
  will-change: transform; 
  transform: translateZ(0); 
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden; 
    overflow-y: visible; 
  }

  header, .navbar-custom {
    position: fixed;
    top: 0 !important;
  }
  
  /*.hero-section, #hero {
    margin-top: 0;
    padding-top: 20px;
  }*/
}

@media (max-width: 575.98px) {
  .discuss-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
.detail-content h3 {
      font-size: 25px;
  }
}


/* =========================================================
   ABOUT US - INTRO
========================================================= */

#who-we-are .section-title {
    margin-left: auto;
    margin-right: auto;
}

#who-we-are .section-lead {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}


.founder-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    border-color: var(--hez-gold);
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.07);
}


.founder-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.founder-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7df;
    color: var(--hez-gold);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    font-size: 19px;
}

.founder-header h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
}

.founder-header span {
    display: block;
    margin-top: 3px;
    color: #777777;
    font-size: 14px;
    font-weight: 600;
}


.founder-content {
    padding: 24px;
}

.founder-content p {
    color: var(--hez-grey);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}



@media (max-width: 991.98px) {

    #who-we-are .section-lead {
        max-width: 750px;
    }

}

@media (max-width: 575.98px) {

    .founder-header {
        padding: 18px;
    }

    .founder-content {
        padding: 20px 18px;
    }

    .founder-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .founder-header h3 {
        font-size: 18px;
    }

}

.service-card:hover {
  background: #d4af371a;
}
.service-card:hover .service-icon {
  background: var(--hez-gold);
  color: var(--hez-white);
}

.sector-card:hover  {
    background: #d4af371a;
}

.service-card-srv:hover {
    background: #d4af371a;
}

.service-card-srv:hover .service-icon-srv {
  background: var(--hez-gold);
  color: var(--hez-white);
  border: 1px solid var(--hez-gold);
  border-radius: 8px;
}

.team-card:hover {
    background: #d4af371a;
}

.project-benefit:hover .project-benefit-icon {
  background: var(--hez-gold);
  color: var(--hez-white);
  border: 1px solid var(--hez-gold);
  border-radius: 8px;
}

.detail-item:hover .detail-icon {
  background: var(--hez-gold);
  color: var(--hez-white);
  border: 1px solid var(--hez-gold);
  border-radius: 8px;
}

.product-card:hover {
    background: #d4af371a;
}

#our-strength .section-lead {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

#our-strength .section-title {
    margin-left: auto;
    margin-right: auto;
}

.company-logo {
    display: block;
    width: auto;
    height: 60px;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .company-logo {
        height: 60px;
        max-width: 230px;
    }
}

@media (max-width: 575.98px) {
    .company-logo {
        height: 48px;
        max-width: 190px;
    }
}

