/* ============================================================
   HAYWOODX – style.css  v2.5 | Creative Rebuild (Enhanced)
   Primary:   #f4f2ee  |  #1C3447
   Secondary: #0F3D5C  |  #2C5D8F  |  #4F6D8A
   Fonts:     Merriweather (head) | Inter (body)
   Enhancements: Refined shadows, smoother animations, 
                 better spacing, micro-interactions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');


/* ── Variables ────────────────────────────────────────────── */
:root {
  --cream: #f4f2ee;
  --navy: #1C3447;
  --deep: #0F3D5C;
  --mid: #2C5D8F;
/*   --soft: #4F6D8A; */
  --soft: #fff;
  --white: #ffffff;
  --gold: #c6a43b;
  --fh: 'Merriweather', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 40px;
  --r-pill: 100px;
  --sh-sm: 0 4px 14px rgba(28, 52, 71, 0.06);
  --sh-md: 0 12px 32px rgba(28, 52, 71, 0.1);
  --sh-lg: 0 24px 48px rgba(28, 52, 71, 0.12);
  --sh-xl: 0 32px 64px rgba(28, 52, 71, 0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.2, 0.64, 1);
  --tr: .4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --tr-slow: .6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ── Reset + Base (Enhanced) ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--tr);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh);
/* 	font-family:'Playfair Display', serif; */
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}

/* Selection Styling */
::selection {
  background: rgba(44, 93, 143, 0.2);
  color: var(--navy);
}

/* ── Utility helpers (Enhanced) ───────────────────────────── */
.sec {
  padding: 100px 0;
  position: relative;
}

.sec-sm {
  padding: 70px 0;
}

.text-cream {
  color: var(--cream) !important;
}

.text-muted-lt {
  color: rgba(244, 242, 238, 0.7) !important;
}

.text-soft {
  color: var(--soft);
}

.bg-navy {
  background: var(--navy);
}

.bg-deep {
  background: var(--deep);
}

.bg-cream {
  background: var(--cream);
}

/* Enhanced section tag */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  background: rgba(44, 93, 143, 0.08);
  padding: 6px 14px 6px 12px;
  border-radius: 40px;
}

.stag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mid);
  border-radius: 2px;
}

.stag--lt {
  color: rgba(244, 242, 238, 0.6);
  background: rgba(244, 242, 238, 0.08);
}

.stag--lt::before {
  background: rgba(244, 242, 238, 0.5);
}

/* Enhanced divider accent */
.divx {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--soft));
  border-radius: 3px;
  margin: 20px 0 24px;
}

.divx--lt {
  background: rgba(244, 242, 238, 0.4);
}

/* ── Buttons (Enhanced) ───────────────────────────────────── */
.hbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hbtn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--tr);
}

.hbtn:hover svg {
  transform: translateX(4px);
}

.hbtn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: var(--sh-sm);
}

.hbtn-navy:hover {
  background: var(--deep);
  border-color: var(--deep);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  color: var(--cream);
}

.hbtn-cream {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.hbtn-cream:hover {
  background: transparent;
  color: var(--cream);
  transform: translateY(-3px);
  border-color: var(--cream);
}

.hbtn-ol-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 242, 238, 0.5);
}

.hbtn-ol-cream:hover {
  background: rgba(244, 242, 238, 1);
  border-color: var(--cream);
/*   color: var(--cream); */
	color:#1C3447;
  transform: translateY(-3px);
}

.hbtn-ol-navy {
  background: transparent;
/*   color: var(--navy);
  border-color: var(--navy); */
	color:#fff;
	border-color:#fff;
}

.hbtn-ol-navy:hover {
/*   background: var(--navy); */
  background:#000;
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

/* ── Navbar (Enhanced) ────────────────────────────────────── */
.hxnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
/*   background: rgba(244, 242, 238, 0.94); */
	background:#000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 52, 71, 0.06);
  transition: all var(--tr);

}

.hxnav.scrolled {
  box-shadow: 0 8px 28px rgba(28, 52, 71, 0.08);
/*   background: rgba(244, 242, 238, 0.98); */
	background:#000;
}

.hxnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hxnav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hxnav-badge {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 900;
  color: var(--cream);
  flex-shrink: 0;
  transition: transform var(--tr);
}

.hxnav-logo:hover .hxnav-badge {
  transform: scale(1.02);
}

.hxnav-name {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.hxnav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.hxnav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--soft);
  position: relative;
  transition: color var(--tr);
  padding: 8px 0;
	    font-family: 'Inter', sans-serif;
	text-transform:uppercase;
}

.hxnav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: width var(--tr);
}

.hxnav-link:hover,
.hxnav-link.active {
  color: #fff;
}

.hxnav-link:hover::after,
.hxnav-link.active::after {
  width: 100%;
}

.hxnav-tog {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hxnav-tog span {
  display: block;
  width: 24px;
  height: 2px;
/*   background: var(--navy); */
	background:#fff;
  border-radius: 2px;
  transition: all var(--tr);
}

.hxnav-drawer {
  display: none;
  flex-direction: column;
  padding: 20px 32px 28px;
  border-top: 1px solid rgba(28, 52, 71, 0.08);
  background: #0c2a40;
  backdrop-filter: blur(20px);
}

.hxnav-drawer.open {
  display: flex;
}

.hxnav-drawer .hxnav-link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 52, 71, 0.05);
  font-size: 1rem;
}

.hxnav-drawer .hbtn {
  margin-top: 18px;
  align-self: flex-start;
}

/* ── Page top offset ──────────────────────────────────────── */
.page-wrap {
  padding-top: 70px;
}

/* ── Inner page banner (Enhanced) ─────────────────────────── */
.pgbanner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pgbanner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 20px 0px;
  transition: transform 10s var(--ease);
}

.pgbanner:hover .pgbanner-bg {
  transform: scale(1.05);
}

.pgbanner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 61, 92, 0.3) 0%, rgba(28, 52, 71, 0.85) 60%, rgba(28, 52, 71, 0.95) 100%);
}

.pgbanner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 60px;
}

.pgbanner-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.5);
  margin-bottom: 16px;
}

.pgbanner-crumb a {
  color: rgba(244, 242, 238, 0.65);
  transition: color var(--tr);
}

.pgbanner-crumb a:hover {
  color: var(--cream);
}

.pgbanner-crumb svg {
  width: 12px;
  height: 12px;
}

.pgbanner-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pgbanner-sub {
  font-size: 1.05rem;
  color: rgba(244, 242, 238, 0.7);
  max-width: 840px;
  line-height: 1.7;
}

/* ── HOME HERO (Enhanced) ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bgimg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
/*   background: radial-gradient(circle at 30% 50%, rgba(15, 61, 92, 0.4), rgba(28, 52, 71, 0.4)); */
	background:radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-geo {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 93, 143, 0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero-geo2 {
  position: absolute;
  bottom: -110px;
  left: -70px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 61, 92, 0.4) 0%, transparent 70%);
  pointer-events: none;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.5);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
  background: rgba(244, 242, 238, 0.08);
  padding: 8px 18px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #6ee7b7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: rgba(244, 242, 238, 0.7);
  font-weight: 700;
}

.hero-lead {
  font-size:16px;
  color: rgba(244, 242, 238, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-content.w-100 .col-lg-9 {
    margin-top: 0px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

/* float stat card */
.hero-card {
  background: rgba(244, 242, 238, 0.08);
  border: 1px solid rgba(244, 242, 238, 0.15);
  border-radius: var(--r-lg);
  padding: 42px 38px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s var(--ease) 0.5s both;
  transition: all var(--tr);
}

.hero-card:hover {
  background: rgba(244, 242, 238, 0.12);
  transform: translateY(-5px);
}

.hero-card-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.45);
  margin-bottom: 28px;
}

.hero-stat {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 242, 238, 0.1);
}

.hero-stat:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.hero-stat-val {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-desc {
  font-size: 0.8rem;
  color: rgba(244, 242, 238, 0.55);
  font-weight: 500;
}

/* scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.8s var(--ease) 0.9s both;
}

.hero-scroll-line {
  width: 1.5px;
  height: 42px;
  background: rgba(244, 242, 238, 0.6);
  animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.hero-scroll-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.6);
}

/* ── Services overview cards (Enhanced) ───────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid rgba(28, 52, 71, 0.06);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  height: 100%;
  transition: all var(--tr-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}

.svc-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(44, 93, 143, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--mid);
  transition: all var(--tr);
}

.svc-card:hover .svc-card-icon {
  background: var(--mid);
  color: var(--cream);
  transform: scale(1.05);
}

.svc-card-icon svg {
  width: 26px;
  height: 26px;
}

.svc-card-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}

/* ── Who we serve (Enhanced) ──────────────────────────────── */
.serve-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.serve-sec::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 93, 143, 0.15), transparent);
  pointer-events: none;
}

.serve-card {
  background: rgba(244, 242, 238, 0.05);
  border: 1px solid rgba(244, 242, 238, 0.1);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  height: 100%;
  transition: all var(--tr-slow);
  position: relative;
  z-index: 1;
}

.serve-card:hover {
  background: rgba(244, 242, 238, 0.1);
  border-color: rgba(244, 242, 238, 0.25);
  transform: translateY(-6px);
}

.serve-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(44, 93, 143, 0.35);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: rgba(244, 242, 238, 0.9);
  transition: all var(--tr);
}

.serve-card:hover .serve-card-icon {
  background: var(--mid);
  transform: scale(1.05);
}

.serve-card-icon svg {
  width: 28px;
  height: 28px;
}

.serve-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.serve-card p {
  font-size: 0.92rem;
  color: rgba(244, 242, 238, 1);
  margin-bottom: 28px;
  line-height: 1.7;
}

.serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.serve-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 40px;
  background: rgba(44, 93, 143, 0.3);
  color: rgba(244, 242, 238, 0.75);
  transition: all var(--tr);
}

.serve-card:hover .serve-tag {
  background: rgba(44, 93, 143, 0.5);
  color: var(--cream);
}

/* ── Image-text split (Enhanced) ──────────────────────────── */
.split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
}

.split-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split-img:hover img {
  transform: scale(1.04);
}

.split-img-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  background: rgba(28, 52, 71, 0.9);
}

.split-img-dot {
  width: 8px;
  height: 8px;
  background: #6ee7b7;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* pillar items (Enhanced) */
.pillar-it {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(28, 52, 71, 0.06);
  background: var(--white);
  transition: all var(--tr);
  margin-bottom: 16px;
  box-shadow: var(--sh-sm);
}

.pillar-it:last-child {
  margin-bottom: 0;
}

.pillar-it:hover {
  box-shadow: var(--sh-md);
  transform: translateX(8px);
  border-color: rgba(44, 93, 143, 0.2);
}

.pillar-it-num {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(44, 93, 143, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.pillar-it-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pillar-it p {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.6;
  margin: 0;
}

/* ── Stats bar (Enhanced) ─────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--deep), var(--navy));
  padding: 70px 0;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(44, 93, 143, 0.2), transparent);
  pointer-events: none;
}

.stat-it {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-it-val {
  font-family: var(--fh);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-it-lbl {
  font-size: 0.85rem;
  color: rgba(244, 242, 238, 0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 70px;
  background: rgba(244, 242, 238, 0.15);
  margin: auto;
}

/* ── CTA strip (Enhanced) ─────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--mid), var(--deep));
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(244, 242, 238, 0.05);
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(244, 242, 238, 0.03);
  pointer-events: none;
  animation: float 20s ease-in-out infinite reverse;
}

.cta-strip-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-strip p {
  color: rgba(244, 242, 238, 0.7);
  max-width: 550px;
  margin: 0 0 36px;
  font-size: 1.05rem;
}

/* ── About page (Enhanced) ────────────────────────────────── */
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  box-shadow: var(--sh-md);
}

.about-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img:hover img {
  transform: scale(1.03);
}

.val-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28, 52, 71, 0.06);
  padding: 38px 32px;
  text-align: center;
  transition: all var(--tr-slow);
  height: 100%;
  box-shadow: var(--sh-sm);
}

.val-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.val-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(44, 93, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--mid);
  transition: all var(--tr);
}

.val-card:hover .val-card-icon {
  background: var(--mid);
  color: var(--cream);
  transform: scale(1.05);
}

.val-card-icon svg {
  width: 28px;
  height: 28px;
}

.val-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.val-card p {
  font-size: 0.88rem;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}

/* team cards (Enhanced) */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 32px 38px;
  border: 1px solid rgba(28, 52, 71, 0.06);
  transition: all var(--tr-slow);
  box-shadow: var(--sh-sm);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.team-card-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream);
  box-shadow: var(--sh-md);
  transition: all var(--tr);
}

.team-card:hover .team-card-photo {
  transform: scale(1.02);
  border-color: var(--mid);
}

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

.team-card-initials {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(244, 242, 238, 0.5);
}

.team-card-name {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-card-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Services page – module rows (Enhanced) ───────────────── */
.mod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: 40px;
  border: 1px solid rgba(28, 52, 71, 0.06);
  transition: all var(--tr-slow);
  background: var(--white);
}

.mod-row:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-5px);
}

.mod-row-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.mod-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.mod-row:hover .mod-row-img img {
  transform: scale(1.06);
}

.mod-row-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 52, 71, 0.4) 0%, transparent 60%);
}

.mod-row-img-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--fh);
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(244, 242, 238, 0.2);
  line-height: 1;
  pointer-events: none;
}

.mod-row-body {
  background: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* flip for even rows */
.mod-row.flip {
  direction: rtl;
}

.mod-row.flip > * {
  direction: ltr;
}

.mod-row-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.mod-row-title {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.mod-row-desc {
  font-size: 0.95rem;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

.mod-row-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mod-row-list li {
  font-size: 0.88rem;
  color: var(--soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mod-row-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Contact page (Enhanced) ───────────────────────────────── */
.cform-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 54px 50px;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(28, 52, 71, 0.06);
  transition: all var(--tr);
}

.cform-wrap:hover {
  box-shadow: var(--sh-lg);
}

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

.finput {
  width: 100%;
  font-family: var(--fb);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid rgba(28, 52, 71, 0.1);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  transition: all var(--tr);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.finput::placeholder {
  color: rgba(79, 109, 138, 0.5);
}

.finput:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 4px rgba(44, 93, 143, 0.12);
  background: var(--white);
}

.fselect-wrap {
  position: relative;
}

.fselect-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-top-color: var(--soft);
  pointer-events: none;
}

textarea.finput {
  height: 110px;
  max-height: 140px;
  resize: vertical;
}

.cinfo-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28, 52, 71, 0.06);
  padding: 32px 30px;
  margin-bottom: 24px;
  transition: all var(--tr);
  box-shadow: var(--sh-sm);
}

.cinfo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.cinfo-card:last-child {
  margin-bottom: 0;
}

.cinfo-card h6 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
}

.cdet {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.cdet:last-child {
  margin-bottom: 0;
}

.cdet-icon {
  width: 38px;
  height: 38px;
  background: rgba(44, 93, 143, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  flex-shrink: 0;
  transition: all var(--tr);
}

.cinfo-card:hover .cdet-icon {
  background: var(--mid);
  color: var(--cream);
}

.cdet-icon svg {
  width: 18px;
  height: 18px;
}

.cdet-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft);
  margin-bottom: 4px;
}

.cdet-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

.cinfo-card--dark {
  background: var(--navy);
  border-color: var(--navy);
}

.cinfo-card--dark h6 {
  color: rgba(244, 242, 238, 0.7);
}

.cinfo-card--dark .cdet-val {
  color: var(--cream);
}

.cinfo-card--dark p {
  font-size: 0.9rem;
  color: rgba(244, 242, 238, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cinfo-card--dark .cdet-icon {
  background: rgba(244, 242, 238, 0.1);
  color: var(--cream);
}

/* ── Footer (Enhanced) ────────────────────────────────────── */
.hxfoot {
  background: var(--navy);
  border-top: 1px solid rgba(244, 242, 238, 0.06);
  padding: 70px 0 36px;
  position: relative;
}

.foot-badge {
  width: 40px;
  height: 40px;
  background: rgba(244, 242, 238, 0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--cream);
  flex-shrink: 0;
  transition: all var(--tr);
}

.foot-badge:hover {
  background: var(--mid);
  transform: scale(1.02);
}

.foot-name {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
}

.foot-tag {
  font-size: 0.85rem;
  color: rgba(244, 242, 238, 0.6);
  line-height: 1.65;
  margin-top: 14px;
}

.foot-ntitle {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.7);
  margin-bottom: 20px;
}

.foot-nlist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-nlink {
  font-size: 0.8rem;
  color: rgba(244, 242, 238, 0.65);
  transition: all var(--tr);
  display: flex;
	gap:10px;
}

.foot-nlink i{
	margin-top:6px;
}

.foot-nlink:hover {
  color: var(--cream);
  transform: translateX(6px);
}

.foot-bottom {
  border-top: 1px solid rgba(244, 242, 238, 0.08);
  padding-top: 30px;
  margin-top: 50px;
}

.foot-copy {
  font-size: 0.8rem;
  color: rgba(244, 242, 238, 0.55);
}

.foot-pol {
  font-size: 0.8rem;
  color: rgba(244, 242, 238, 0.55);
  transition: color var(--tr);
}

.foot-pol:hover {
  color: var(--cream);
}

/* ── Toast (Enhanced) ─────────────────────────────────────── */
.hx-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 26px;
  border-radius: var(--r-lg);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all var(--tr);
  pointer-events: none;
  backdrop-filter: blur(8px);
  background: rgba(28, 52, 71, 0.95);
}

.hx-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hx-toast-icon {
  color: #6ee7b7;
}

/* ── Animations (Enhanced) ────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive (Enhanced) ────────────────────────────────── */
@media (max-width: 991px) {
  .sec {
    padding: 80px 0;
  }
  
  .hero-card {
    display: none;
  }
  
  .mod-row {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
  
  .mod-row.flip {
    direction: ltr;
  }
  
  .mod-row-img {
    min-height: 280px;
  }
  
  .mod-row-body {
    padding: 40px 32px;
  }
  
  .cform-wrap {
    padding: 40px 32px;
  }
  
  .stats-bar .stat-div {
    display: none;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 64px 0;
  }
  
  .hxnav-links,
  .hxnav .hbtn {
    display: none;
  }
  
  .hxnav-tog {
    display: flex;
  }
  
  .hxnav-inner {
    padding: 0 24px;
    height: 70px;
  }
  
  .pgbanner {
    height: 380px;
  }
  
  .serve-card {
    padding: 36px 28px;
  }
  
  .mod-row-body {
    padding: 32px 24px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-actions .hbtn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-strip {
    padding: 70px 0;
    text-align: center;
  }
  
  .cta-strip p {
    margin: 0 auto 32px;
  }
  
  .stats-bar {
    padding: 50px 0;
  }
  
  .stat-it {
    margin-bottom: 32px;
  }
  
  .foot-bottom .row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-strip {
    padding: 56px 0;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-lead {
    font-size: 1rem;
  }
  
  .pgbanner-content {
    padding: 0 20px 40px;
  }
  
  .pgbanner-title {
    font-size: 1.8rem;
  }
  
  .cform-wrap {
    padding: 28px 20px;
  }
  
  .serve-card {
    padding: 28px 22px;
  }
  
  .svc-card {
    padding: 32px 24px;
  }
  
  .val-card {
    padding: 28px 24px;
  }
  
  .team-card {
    padding: 32px 24px;
  }
}

/* bootstrap override (kept as is) */
.container,
.container-lg,
.container-xl {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.main-services {
  padding-left: 80px;
}

ul.foot-nlist li a {
  position: relative;
  transition: 0.3s;
}

ul.foot-nlist li a i {
  transition: 0.3s;
}

ul.foot-nlist li a:hover {
  color: #2C5D8F;
  transform: translateX(5px);
}

ul.foot-nlist li a:hover i {
  color: #2C5D8F;
}

.hxnav-logo img {
  width: 280px;
  height: auto;
  object-fit: cover;
}

.ft-logo img {
  width: 280px;
  height: auto;
  object-fit: cover;
}

.reveal img {
  border-radius: var(--r-lg);
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: 0.3s;
}

.reveal.visible img {
  opacity: 1;
}

.service-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .main-services {
    padding-left: 0px;
  }
  
  .hxnav-logo img,
  .ft-logo img {
    width: 220px;
  }
}

/* Additional micro-interactions */
.hbtn:active {
  transform: translateY(0);
}

a, button {
  cursor: pointer;
}

img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HAJSTER-INSPIRED ENHANCEMENTS — Scroll Animations v1.0
   ═══════════════════════════════════════════════════════════ */

/* ── Page scroll progress bar ───────────────────────────── */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--soft));
  z-index: 99999;
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Side-slide reveal animations ──────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Scale-up reveal ────────────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease-bounce);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Image clip-path wipe reveal (Hajster style) ─────────
   Add class="reveal-clip" to image wrappers               */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-clip.visible {
  clip-path: inset(0 0% 0 0);
}

/* ── Divx animated line draw ────────────────────────────── */
.divx {
  overflow: hidden;
  width: 56px; /* fallback; JS overrides to 0 then animates */
}

/* ── Navbar compact on scroll ───────────────────────────── */
.hxnav.scrolled .hxnav-inner {
  height: 90px;
  transition: height 0.4s var(--ease);
}

/* ── Stagger delay utility classes ─────────────────────── */
.sd-1 { transition-delay: 0.08s !important; }
.sd-2 { transition-delay: 0.16s !important; }
.sd-3 { transition-delay: 0.24s !important; }
.sd-4 { transition-delay: 0.32s !important; }
.sd-5 { transition-delay: 0.40s !important; }
.sd-6 { transition-delay: 0.48s !important; }

/* ── Pillar items: stagger left-slide on about page ─────── */
.pillar-it {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease),
              box-shadow var(--tr), border-color var(--tr); /* keep hover */
}

.pillar-it.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Val-card: scale-reveal stagger ────────────────────── */
.val-card {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease-bounce),
              box-shadow var(--tr-slow); /* keep hover */
}

.val-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Team card: scale-reveal ────────────────────────────── */
.team-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease),
              box-shadow var(--tr-slow); /* keep hover */
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Svc cards stagger ──────────────────────────────────── */
.svc-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease),
              box-shadow var(--tr-slow); /* keep hover */
}

.svc-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Serve cards ────────────────────────────────────────── */
.serve-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease),
              background var(--tr-slow), border-color var(--tr-slow); /* keep hover */
}

.serve-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Module rows: slide in from sides ───────────────────── */
.mod-row:not(.flip) {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease),
              box-shadow var(--tr-slow); /* keep hover */
}

.mod-row.flip {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease),
              box-shadow var(--tr-slow); /* keep hover */
}

.mod-row.visible,
.mod-row.flip.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Cinfo cards: stagger up ────────────────────────────── */
.cinfo-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              box-shadow var(--tr); /* keep hover */
}

.cinfo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Banner title/sub entrance ──────────────────────────── */
.pgbanner-title,
.pgbanner-sub {
  animation: none !important; /* controlled by JS on load */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease) 0.2s, transform 0.7s var(--ease) 0.2s;
}

.pgbanner-crumb {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s;
}

.pgbanner-loaded .pgbanner-crumb,
.pgbanner-loaded .pgbanner-title,
.pgbanner-loaded .pgbanner-sub {
  opacity: 1;
  transform: translateY(0);
}

.pgbanner-loaded .pgbanner-sub {
  transition-delay: 0.35s;
}

/* ── Smooth stat-bar appear ─────────────────────────────── */
.stat-it {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-bounce);
}

.stat-it.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── CTA strip content entrance ─────────────────────────── */
.cta-strip .reveal {
  transition-duration: 0.75s;
}

/* ── Smooth image parallax hint ─────────────────────────── */
.pgbanner-bg,
.hero-bgimg {
  will-change: transform;
}



/* ═══════════════════════════════════════════════════════════
   HAJSTER-STYLE SPACING & SECTION CLARITY UPDATE
   ═══════════════════════════════════════════════════════════ */

/* ── More generous section padding ──────────────────────── */
.sec {
  padding: 80px 0 !important;
}

.sec-sm {
  padding:60px 0 !important;
}

.stats-bar {
  padding: 90px 0 !important;
}

.cta-strip {
  padding: 100px 0 !important;
}

/* ── Section bottom border — subtle separator like Hajster ── */
section.sec,
.stats-bar,
.cta-strip {
  position: relative;
}

section.sec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 52, 71, 0.08) 30%, rgba(28, 52, 71, 0.08) 70%, transparent);
  pointer-events: none;
}

/* Don't show bottom line on dark sections */
.serve-sec::after,
.cta-strip::after,
.stats-bar::after {
  display: none;
}

/* ── Alternating section backgrounds — cleaner separation ── */
section.sec[style*="background:#fff"],
section.sec[style*="background: #fff"] {
  background: #ffffff !important;
}

section.sec.bg-cream {
  background: #f4f2ee !important;
  box-shadow: inset 0 1px 0 rgba(28,52,71,0.05), inset 0 -1px 0 rgba(28,52,71,0.05);
}

/* ── Headings: more space below ─────────────────────────── */
h2 {
  margin-bottom: 18px !important;
  letter-spacing: -0.02em;
}

h3 {
  letter-spacing: -0.015em;
}

/* ── Paragraphs: more air ────────────────────────────────── */
.text-soft {
  line-height: 1.85 !important;
}

p {
  line-height: 1.82;
}

/* ── stag: more space below ─────────────────────────────── */
.stag {
  margin-bottom: 22px !important;
}

/* ── divx: more space ────────────────────────────────────── */
.divx {
  margin: 24px 0 32px !important;
}

/* ── Row gaps: more vertical breathing ───────────────────── */
.row.mb-5 {
  margin-bottom: 60px !important;
}

/* ── Hero content more padding ───────────────────────────── */
.hero-content {
  padding: 40px 0px !important;
}

/* ── Page banner taller ──────────────────────────────────── */
.pgbanner {
  height: 450px !important;
}

.pgbanner-content {
  padding: 0 32px 80px !important;
}

/* ── About image taller ──────────────────────────────────── */
.about-img {
  min-height: 520px !important;
}

.split-img img {
/*   height: 560px !important; */
}

/* ── Module rows bigger ──────────────────────────────────── */
.mod-row {
  margin-bottom: 52px !important;
}

.mod-row-img {
  min-height: 420px !important;
}

.mod-row-body {
  padding: 70px 56px !important;
}

/* ── Pillar items more spacing ───────────────────────────── */
.pillar-it {
  padding: 30px 26px !important;
  margin-bottom: 20px !important;
}

/* ── Val cards bigger padding ────────────────────────────── */
.val-card {
  padding: 48px 36px !important;
}

/* ── Team cards bigger ───────────────────────────────────── */
.team-card {
  padding: 56px 36px 48px !important;
}

/* ── Serve cards bigger padding ─────────────────────────── */
.serve-card {
  padding: 56px 44px !important;
}

/* ── Svc cards bigger padding ────────────────────────────── */
.svc-card {
  padding: 48px 36px !important;
}

/* ── Contact form more padding ───────────────────────────── */
.cform-wrap {
  padding: 64px 58px !important;
}

/* ── CTA strip title bigger ─────────────────────────────── */
.cta-strip-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  margin-bottom: 22px !important;
}

.cta-strip p {
  margin: 0 0 44px !important;
  font-size: 1.1rem !important;
}

/* ── Footer more spacious ────────────────────────────────── */
.hxfoot {
  padding: 100px 0 44px !important;
}

.foot-bottom {
  margin-top: 70px !important;
  padding-top: 36px !important;
}

/* ── Stat numbers bigger ─────────────────────────────────── */
.stat-it-val {
  font-size: 3.8rem !important;
  margin-bottom: 14px !important;
}

/* ── Hero stat values ────────────────────────────────────── */
.hero-stat-val {
  font-size: 3.2rem !important;
}

/* ── More gap in g-4 and g-5 rows ───────────────────────── */
.g-4 {
  --bs-gutter-x: 1.8rem !important;
  --bs-gutter-y: 1.8rem !important;
}

.g-5 {
  --bs-gutter-x: 3.5rem !important;
  --bs-gutter-y: 3.5rem !important;
}

/* ── Responsive adjustments ─────────────────────────────── */
@media (max-width: 991px) {
  .sec {
    padding: 90px 0 !important;
  }

  .mod-row-body {
    padding: 48px 36px !important;
  }

  .pgbanner {
    height: 440px !important;
  }

  .split-img img {
    height: 420px !important;
  }

  .about-img {
    min-height: 380px !important;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 72px 0 !important;
  }

  .cta-strip {
    padding: 80px 0 !important;
  }

  .pgbanner {
    height: 380px !important;
  }

  .mod-row-body {
    padding: 38px 28px !important;
  }

  .cform-wrap {
    padding: 40px 28px !important;
  }

  .serve-card {
    padding: 42px 32px !important;
  }

  .hero-content {
    padding: 120px 0 90px !important;
  }
}

@media (max-width: 480px) {
  .sec {
    padding: 60px 0 !important;
  }

  .cta-strip {
    padding: 64px 0 !important;
  }

  .cform-wrap {
    padding: 32px 22px !important;
  }

  .serve-card,
  .svc-card,
  .val-card,
  .team-card {
    padding: 36px 28px !important;
  }
}



/* ═══════════════════════════════════════════════════════════
   HAJSTER SECTION FEEL — DEEP CONTRAST + CINEMATIC SPACING
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Cream sections: stronger tint + top line ─────────── */
section.sec.bg-cream {
  background: linear-gradient(135deg, #000 30%, #0c2a40 70%) !important;
  border-top: 1px solid rgba(28, 52, 71, 0.10) !important;
  border-bottom: 1px solid rgba(28, 52, 71, 0.10) !important;
  box-shadow: none !important;
  position:relative;
}

section.sec.bg-cream::before {
    content: 'Delivery';
    position: absolute;
    right: auto;
    top: 10%;
    transform: translateY(-50%);
    font-family: var(--fb);
    font-size: 12rem;
    font-weight: normal;
    color: rgba(255, 255, 255, .025);
    letter-spacing: -.02em;
    line-height: 1;
    pointer-events: none;
    text-transform: uppercase;
    left: 20%;
}

/* White sections — pure white, no tricks */
section.sec[style*="background:#fff"],
section.sec[style*="background: #fff"] {
  background: #ffffff !important;
  border-top: none !important;
}

/* ── 2. Dark "Who We Serve" section — near-black like Hajster */
.serve-sec {
  background: linear-gradient(140deg, #0c2a40 0%, #000 100%);
}

/* ── 3. Stats bar — pure dark, cinematic ─────────────────── */
.stats-bar {
  background: #0c1e2d !important;
  border-top: 3px solid #1a3a54 !important;
  border-bottom: none !important;
}

/* Stat numbers — massive, like Hajster */
.stat-it-val {
  font-size: 4.4rem !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.stat-it-lbl {
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  color: rgba(255,255,255,0.45) !important;
  text-transform: uppercase !important;
}

.stat-div {
  background: rgba(255,255,255,0.1) !important;
  height: 80px !important;
}

/* ── 4. CTA strip — rich deep blue, stronger ─────────────── */
.cta-strip {
/*   background: linear-gradient(135deg, #0c2a40 0%, #0f3d5c 100%) !important; */
	background:linear-gradient(135deg, #0c2a40 0%, #000 100%) !important;
  border-top: 3px solid #1a3a54 !important;
}

/* ── 5. Section heading — bolder, tighter ────────────────── */
h2 {
  font-size: 40px !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
}

/* ── 6. Pillar items — cleaner look ──────────────────────── */
.pillar-it {
  background: #f9f8f5 !important;
  border: 1px solid rgba(28,52,71,0.08) !important;
  border-left: 4px solid var(--mid) !important;
  border-radius: 12px !important;
}

.pillar-it:hover {
  border-left-color: var(--deep) !important;
  background: #ffffff !important;
}

/* ── 7. Module rows — image takes more space ─────────────── */
.mod-row {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(28,52,71,0.07) !important;
  margin-bottom: 0 !important;
  background: #fff !important;
}

.mod-row:last-child {
  border-bottom: none !important;
}

.mod-row:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* mod-row image — taller, more cinematic */
.mod-row-img {
  min-height: 480px !important;
}

.mod-row-img img {
  filter: brightness(0.92) !important;
  transition: filter 0.6s ease, transform 0.8s ease !important;
}

.mod-row:hover .mod-row-img img {
  filter: brightness(1) !important;
}

/* ── 8. About image — edge-to-edge feel ──────────────────── */
.about-img {
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(28,52,71,0.08);
  pointer-events: none;
}

/* ── 9. Split image — cinematic ──────────────────────────── */
.split-img {
  border-radius: 16px !important;
  box-shadow: 0 30px 70px rgba(28,52,71,0.18) !important;
}

/* ── 10. Section label (stag) — cleaner ─────────────────── */
.stag {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  color: var(--mid) !important;
}

.stag::before {
  width: 28px !important;
  height: 1.5px !important;
}

/* ── 11. Val cards — minimal, clean ──────────────────────── */
.val-card {
  border-radius: 20px !important;
  border: 1px solid rgba(28,52,71,0.07) !important;
  background: #fafaf8 !important;
}

.val-card:hover {
  background: #ffffff !important;
  border-color: rgba(44,93,143,0.15) !important;
}

/* ── 12. Team cards — clean portrait style ───────────────── */
.team-card {
  border-radius: 20px !important;
  border: 1px solid rgba(28,52,71,0.07) !important;
  background: #fafaf8 !important;
}

.team-card-photo {
  width: 160px !important;
  height: 160px !important;
  border: 3px solid rgba(28,52,71,0.1) !important;
  box-shadow: 0 12px 36px rgba(28,52,71,0.14) !important;
}

/* ── 13. Contact form — ultra clean card ─────────────────── */
.cform-wrap {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1px solid rgba(28,52,71,0.08) !important;
  box-shadow: 0 24px 64px rgba(28,52,71,0.10) !important;
}

.cinfo-card {
  border-radius: 20px !important;
  border: 1px solid rgba(28,52,71,0.07) !important;
  background: #fafaf8 !important;
}

.cinfo-card--dark {
  background: #0c1e2d !important;
  border-color: #0c1e2d !important;
}

/* ── 14. Svc cards — ultra clean ─────────────────────────── */
.svc-card {
  border-radius: 20px !important;
  background: #fafaf8 !important;
  border: 1px solid rgba(28,52,71,0.07) !important;
}

.svc-card:hover {
  background: #ffffff !important;
}

/* ── 15. Hero — full screen, deeper ─────────────────────── */
.hero {
  background: #07131c !important;
}

/* ── 16. pgbanner overlay — deeper, more dramatic ────────── */
.pgbanner-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 28, 0.4) 0%,
    rgba(7, 19, 28, 0.82) 55%,
    rgba(7, 19, 28, 0.97) 100%
  ) !important;
}

/* ── 17. Finput fields — cleaner ─────────────────────────── */
.finput {
  background: #f7f6f3 !important;
  border: 1.5px solid rgba(28,52,71,0.10) !important;
  border-radius: 10px !important;
  padding: 16px 20px !important;
}

.finput:focus {
  background: #ffffff !important;
  border-color: var(--mid) !important;
  box-shadow: 0 0 0 4px rgba(44,93,143,0.10) !important;
}

/* ── 18. Page wrap — ensure sections butt up cleanly ─────── */
section.sec::after {
  display: none !important; /* remove gradient line, use bg contrast instead */
}

/* ── 19. Footer — truly dark ─────────────────────────────── */
.hxfoot {
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}

/* ── 20. Serve card interior — crisper on dark bg ────────── */
/* =========================
   PREMIUM SERVE CARD
   ========================= */

.serve-card{
    position:relative;

    overflow:hidden;

    border-radius:28px !important;

    padding:50px 45px !important;

    background:
    linear-gradient(
    145deg,
    #1c3447 0%,
    #162b3b 45%,
    #10202d 100%) !important;

    border:1px solid rgba(0,255,255,0.10) !important;

    transition:
    transform .55s cubic-bezier(.19,1,.22,1),
    box-shadow .45s ease,
    border-color .35s ease,
    background .45s ease !important;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.18),
    0 0 25px rgba(0,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;

    cursor:pointer !important;

    animation:floatCard 5s ease-in-out infinite !important;

    isolation:isolate;
}

/* premium glossy layer */
.serve-card::after{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    transparent 35%,
    transparent 100%);

    pointer-events:none;

    z-index:0;
}

/* hover */
.serve-card:hover{
    transform:
    translateY(-14px)
    scale(1.01) !important;

    border-color:rgba(0,255,255,0.35) !important;

    background:
    linear-gradient(
    145deg,
    #213f56 0%,
    #1c3447 45%,
    #122635 100%) !important;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.28),
    0 0 40px rgba(0,255,255,0.14),
    0 0 90px rgba(28,52,71,0.22) !important;

    animation:none !important;
}

/* glow movement */
.serve-card:hover::before{
    transform:
    scale(1.15)
    translateY(20px);

    opacity:1;
}

/* headings */
.serve-card h2{
    position:relative;

    display:inline-block;

    margin-bottom:28px !important;

    color:#fff !important;

    font-size:clamp(32px,4vw,54px) !important;

    font-weight:700 !important;

    line-height:1 !important;

    letter-spacing:-0.04em;
}

/* underline */
.serve-card h2::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:65px;
    height:4px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #00ffff,
    transparent);
}

/* subtitle */
.serve-card h4{
    color:#fff !important;

    font-size:clamp(24px,2vw,38px);

    line-height:1.15;

    margin-bottom:20px;

    letter-spacing:-0.03em;
}

/* text */
.serve-card p{
    color:rgba(255,255,255,0.72) !important;

    font-size:18px;

    line-height:1.7;
}

/* list */
.custom-list{
    margin-top:28px;
    padding-left:0;
    list-style:none;
}

/* list item */
.custom-list li{
    position:relative;

    padding-left:38px;

    margin-bottom:18px;

    color:#fff;

    font-size:18px;

    line-height:1.5;

    transition:all .3s ease;
}

/* custom bullet */
.custom-list li::before{
    content:"";

    position:absolute;

    left:0;
    top:11px;

    width:12px;
    height:12px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    #ffff,
    rgba(0,255,255,0.25));

    box-shadow:
    0 0 12px rgba(0,255,255,0.65);
}

/* hover list */
.serve-card:hover .custom-list li{
    transform:translateX(3px);
}

/* floating animation */
@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

.process-title{
	text-align:center;
	margin-bottom:60px;
}

.process-title h2{
	color:#fff;
}

.process-title h2 span {
    background: linear-gradient(180deg, #fff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.process-title {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.process-title.show {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   MOBILE
   ========================= */

@media(max-width:991px){

    .serve-card{
        padding:40px 30px !important;
    }

    .serve-card h4{
        font-size:30px;
    }

}

@media(max-width:767px){

    .serve-card{
        padding:32px 24px !important;

        border-radius:22px !important;
    }

    .serve-card h2{
        font-size:34px !important;
    }

    .serve-card h4{
        font-size:24px;
    }

    .serve-card p,
    .custom-list li{
        font-size:16px;
    }

}
@media (max-width: 767px) {
	
/* 	.hxnav{
		padding-bottom: 10px;
        padding-top: 10px;
	} */
	
	.hxnav-drawer.open{
		margin-bottom:30px;
	}
	
	section#sales .row{
		row-gap:30px;
	}
	
	

  /* ── Force all reveal elements visible instantly ─────── */
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-clip,
  .pillar-it,
  .val-card,
  .team-card,
  .svc-card,
  .serve-card,
  .mod-row,
  .mod-row.flip,
  .cinfo-card,
  .stat-it {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
    transition-delay: 0s !important;
  }

  /* ── Banner title/sub — show immediately ─────────────── */
  .pgbanner-title,
  .pgbanner-sub,
  .pgbanner-crumb {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── Divx line — show full width immediately ─────────── */
  .divx {
    width: 56px !important;
    transition: none !important;
  }

  /* ── Stop all keyframe animations ───────────────────── */
/*   *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  } */

  /* ── Hero specific — keep basic layout visible ───────── */
  .hero-eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* ── Keep hover transitions on buttons only ──────────── */
  .hbtn {
    transition: background 0.2s ease, color 0.2s ease !important;
  }

  /* ── Stop parallax transforms ────────────────────────── */
  .pgbanner-bg,
  .hero-bgimg {
    transform: none !important;
    will-change: auto !important;
  }
  
  .hxfoot{
      overflow:hidden;
	  padding:60px 0px 40px !important;
  }
  section.sec{
       overflow:hidden;
  }
  .stats-bar{
       overflow:hidden;
  }
  section.sec.bg-cream{
       overflow:hidden;
  }
  section.sec.serve-sec{
       overflow:hidden;
  }
  section.cta-strip{
       overflow:hidden;
  }
  .hero{
      overflow:hidden;
  }  
  .about-img {
        min-height: inherit !important;
    }
}


/* ═══════════════════════════════════════════════════════════
   HAYWOODX — UPDATED ADDITIONS: Pricing Cards, Qualify Cards
   ═══════════════════════════════════════════════════════════ */

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-card {
  background: #fafaf8;
  border: 1px solid rgba(28,52,71,0.08);
  border-radius: 20px;
  padding:22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--tr-slow);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
  background: #ffffff;
}

.pricing-card--featured {
/*   background: var(--navy);
  border-color: var(--navy); */
	background:#000;
	border-color:#fff;
  box-shadow: 0 20px 60px rgba(28,52,71,0.25);
}

.pricing-card--featured:hover {
  background: var(--deep);
  transform: translateY(-8px);
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 20px 0 12px;
}

.pricing-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(44,93,143,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--mid);
  transition: all var(--tr);
}

.pricing-card--featured .pricing-card-icon {
  background: rgba(244,242,238,0.1);
  color: var(--cream);
}

.pricing-card:hover .pricing-card-icon {
  background: var(--mid);
  color: var(--cream);
}

.pricing-card--featured:hover .pricing-card-icon {
  background: rgba(244,242,238,0.15);
}

.pricing-card-icon svg {
  width: 24px;
  height: 24px;
}

.pricing-card-label h3{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-card-label {
  color: rgba(244,242,238,0.6);
}

.pricing-card-price {
  font-family: var(--fh);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pricing-card-price strong {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing-card-price span {
  display: block;
  font-size: 14px;
  color: #000;
  font-family: var(--fb);
  font-weight: 400;
  margin-top: 2px;
}

.pricing-card--featured .pricing-card-price,
.pricing-card--featured .pricing-card-price strong {
  color: var(--cream);
}

.pricing-card--featured .pricing-card-price span {
  color: rgba(244,242,238,0.6);
}

.pricing-card-desc {
  font-size: 0.88rem;
/*   color: var(--soft); */
	color:#000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-card-desc {
  color: rgba(244,242,238,0.7);
}

.pricing-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.pricing-card-list li {
  font-size: 0.85rem;
/*   color: var(--soft); */
	color:#000;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-card-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  margin-top: 6px;
}

.pricing-card--featured .pricing-card-list li {
  color: rgba(244,242,238,0.75);
}

.pricing-card--featured .pricing-card-list li::before {
  background: rgba(244,242,238,0.5);
}

/* ── Qualification Cards ───────────────────────────────────── */
.qualify-card {
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.qualify-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.qualify-card--yes {
  background: #f0f9f4;
  border-color: rgba(16, 185, 129, 0.2);
}

.qualify-card--no {
  background: #fdf5f5;
  border-color: rgba(239, 68, 68, 0.15);
}

.qualify-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.qualify-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.qualify-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.qualify-icon--yes {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.qualify-icon--no {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qualify-list li {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.qualify-card--yes .qualify-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.qualify-card--no .qualify-list li::before {
  content: '×';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: -1px;
}

/* ── Visually hidden (accessibility) ──────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive pricing & qualify cards ───────────────────── */
@media (max-width: 767px) {
  .pricing-card,
  .qualify-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .qualify-card {
    padding: 32px 26px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 28px 20px;
  }
  .qualify-card {
    padding: 28px 22px;
  }
}

.teamx{
    margin: 14px auto !important;
}

.choose-line{
    margin: 10px auto !important;
}


/* our system */

.hero-section .badge-top {
                background: rgba(28, 52, 71, 0.1);
                color: #1c3447;
                padding: 8px 20px;
                border-radius: 50px;
                font-weight: 700;
                font-size: 0.9rem;
                display: inline-block;
                margin-bottom: 25px;
            }
            .hero-section h1 {
                font-size: 4rem;
                line-height: 1.1;
                margin-bottom: 25px;
                color: #1c3447;
            }
            .hero-section .lead {
                font-size: 1.35rem;
                color: #546e7a;
                margin-bottom: 40px;
                max-width: 600px;
            }
            .hero-image-wrapper {
                position: relative;
                z-index: 2;
            }
            .hero-image-wrapper img {
                border-radius: 30px;
                box-shadow: 0 50px 100px rgba(28, 52, 71, 0.15);
            }
            .floating-card {
                position: absolute;
                background: #ffffff;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                z-index: 3;
            }
.system-grid h2 { color: #ffffff; margin-bottom: 60px; }
            .system-card {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 30px;
                padding: 50px;
                height: 100%;
                transition: all 0.4s ease;
                backdrop-filter: blur(10px);
            }
            .system-card:hover {
                background: rgba(255, 255, 255, 0.07);
                border-color: rgba(255, 255, 255, 0.2);
                transform: translateY(-15px);
            }
            .system-card .number {
                font-family: 'Syne', sans-serif;
                font-size: 4rem;
                opacity: 0.1;
                line-height: 1;
                margin-bottom: 20px;
                display: block;
            }
            .system-card h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                letter-spacing: 1px;
                color: #ffffff;
            }
            .system-card .outcome-box {
                margin-top: 30px;
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .system-card ul {
                list-style: none;
                padding: 0;
            }
            .system-card ul li {
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.8);
            }
            .system-card ul li i {
                color: #4db6ac;
            }
  .booking-section h2 { 
	  color: #fff; 
	  margin-bottom: 20px; 
}
            .booking-card {
                background: #f8f9fa;
                border-radius: 40px;
                padding: 60px;
                border: 1px solid #e9ecef;
				height:96%;
            }
            .form-floating > .form-control {
                border-radius: 15px;
                border: 1px solid #dee2e6;
                padding: 1.5rem 1rem;
            }
            .form-floating > .form-control:focus {
                border-color: #1c3447;
                box-shadow: 0 0 0 0.25rem rgba(28, 52, 71, 0.1);
            }
            .qualifier-label {
                font-weight: 700;
                margin-bottom: 25px;
                color: #1c3447;
                font-size: 1.1rem;
            }
  .expectations h2 { color: #1c3447; margin-bottom: 50px; text-align: center; }
            .exp-card {
                background: #ffffff;
                border-radius: 30px;
                padding: 50px;
                height: 100%;
                border: 1px solid #e9ecef;
            }
            .exp-list {
                list-style: none;
                padding: 0;
            }
            .exp-list li {
                padding: 15px 0;
                border-bottom: 1px solid #f1f3f5;
                display: flex;
                align-items: flex-start;
                gap: 15px;
            }
            .exp-list li span {
                width: 28px;
                height: 28px;
                background: #1c3447;
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                font-size: 0.8rem;
                font-weight: 700;
            }
 .suitability .box {
                padding: 50px;
                border-radius: 40px;
                height: 100%;
            }
            .suitability .box-in { background-color: #e8eff5; border: 2px solid #1c3447; }
            .suitability .box-out { background-color: #fdf2f2; border: 2px dashed #dc3545; }
            .suitability ul { list-style: none; padding: 0; }
            .suitability ul li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
  .step-pill {
                background: rgba(255,255,255,0.05);
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 100px;
                padding: 20px 40px;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                gap: 20px;
                transition: all 0.3s ease;
            }
            .step-pill:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(10px);
            }
            .step-pill span {
                width: 40px;
                height: 40px;
                background: #ffffff;
                color: #1c3447;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 800;
                flex-shrink: 0;
            }
 .cta-box {
                background: #1c3447;
                padding: 50px 60px;
                border-radius: 20px;
                color: #ffffff;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            .cta-box h2 { color: #ffffff; font-size: 3.5rem; margin-bottom: 30px; }
            .cta-box .btn-light {
                background: #ffffff;
                color: #1c3447;
                padding: 20px 50px;
                font-weight: 800;
                border-radius: 50px;
                border: none;
                font-size: 1.2rem;
                text-transform: uppercase;
                margin-top: 30px;
            }
.cta-strip img {
    border-radius: 20px;
}
.lead {
   font-size:18px !important;
    font-weight: 500;
}

.four-pil-sec{
    display: flex;
    justify-content: space-between;
}

@media(max-width:767px){
	section.sec.bg-cream::before{
		left:30px;
		top:90px;
		font-size:5rem;
	}
	.who-we-help{
		padding:60px 0px !important;
	}
	
	section.why-sec-hey .row{
		flex-direction:column-reverse;
		gap:20px;
	}
	ul.serve-tags li{
		text-align:start;
	}
	.cta-strip .d-none.d-lg-block.text-end.sd-3.reveal-right{
		display:block !important;
	}
	.pgbanner.pgbanner-loaded .pgbanner-content{
		padding: 30px 20px !important;
	}
	.pgbanner.pgbanner-loaded {
    height: auto !important
}
	.steps-section {
    padding: 80px 0px !important;
}
	section.hero-section h1 {
    font-size: 52px;
}
	.text-center.mt-5.pt-5.cta-box {
    padding: 32px;
    border: 1px solid #f2f6f8;
}
	.exp-card{
		padding:32px;
	}
	section.expectations {
    padding: 60px 0px !important;
}
	section.booking-section {
    padding: 60px 0px !important;
}
	.booking-section .row.align-items-center {
    row-gap: 20px;
}
	section.suitability{
		padding:60px 0px !important;
		background: #f5f6f8 !important;
	}
	.cta-box.shadow-lg {
    padding: 32px;
}
	.cta-box .btn-light{
		padding: 16px;
	}
	.cta-box h2{
		font-size:30px !important;
	}
	.booking-card.shadow-sm{
		padding:32px;
	}
	.four-pil-sec{
		flex-direction:column;
	}
}

.who-sec {
    margin-bottom: 40px;
}
.problem-sec{
	background:linear-gradient(135deg, #0c2a40 0%, #000 100%) ;
}
.problem-sec .prob-stag{
	color:#fff !important;
}

h2#story-heading{
	color:#fff !important;
}

.focus-section .text-soft{
	color:#fff;
}

.delivery-sec-progm{
	background:#000;
}

.system-banner{
	padding: 140px 0 100px;  
	background: linear-gradient(180deg, #0c2a40 0%, #000 100%); 
	position: relative;
	overflow: hidden;
}

.system-banner h1{
	color:#fff !important;
}

.system-banner .badge-top{
	background: #fff;
}

.system-banner .lead{
	color:#fff;
}

.booking-section{
	padding: 120px 0; 
	background: linear-gradient(180deg, #0c2a40 0%, #000 100%);
}

.suitability{
	padding:100px 0px;
	background:linear-gradient(180deg, #0c2a40 50%, #000 100%);
}

h2#focus-heading{
	color:#fff;
}

.focus-details p{
	color:#fff;
}
.focus-details ul li{
	color:#fff;
}

.delivery-sec h2{
	color:#fff;
}

.steps-section{
	background:linear-gradient(140deg, #000 17%, #0c2a40 150%);
}
.bottom-program-sec{
	background:linear-gradient(140deg, #000 20%, #0c2a40 150%);
	 position: relative; overflow: hidden;
}

.program-detail-bottom{
	margin-bottom:20px;
}

.program-detail-bottom h4{
	font-size:34px;
	Color:#fff;
}

.pricing-card--featured:hover h3{
	color:#fff;
}

.brand-section-custom {
  background:#0c2a40;
  padding: 20px;
	margin-bottom:30px;
	border-radius:20px;
}

.brand-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.brand-box-custom {
  background: #1c3447;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.3s;
}

.brand-box-custom img {
  max-width: 70%;
  max-height: 60px;
  object-fit: contain;
  border-radius:none !important;
}

/* Hover effect */
.brand-box-custom:hover {
  background: #1c3447;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .brand-grid-custom {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diff-work ul li{
  list-style-type: none !important;
}
.diff-work ul{
	padding-left:0px;
}

.diff-work li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

/* Custom checkbox */
.diff-work li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 18px;
  height: 18px;
  background: #fff; /* your color */
  color: #0c2a40;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ********** */
.timeline-section-custom {
  padding: 60px 0px;
/*   background: #000; */
}

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

/* BOX */
.timeline-box-custom {
  background: #000;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}

/* NUMBER */
.timeline-number-custom {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #fff;
  color: #0c2a40;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
}

/* TEXT */
.timeline-box-custom h4 {
  color: #fff;
  margin-top: 15px;
/*   font-size: 18px; */
}

.timeline-box-custom p {
  color: #ccc;
  font-size: 16px;
  margin-top: 8px;
}

/* HOVER */
.timeline-box-custom:hover {
  transform: translateY(-5px);
  background: #0c2a40;
}

.timeline-box-custom:hover p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .timeline-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .timeline-grid-custom {
    grid-template-columns: 1fr;
  }
	.hero-scroll{
		display:none;
	}
	.hero{
		min-height:auto;
	}
	.system-banner{
		padding:80px 0px 80px;
	}
	.page-id-67 .system-banner{
		padding:110px 0px 80px;
	}
	.gsap-sec{
		gap:40px;
	}
	.d-flex.gap-3.flex-wrap {
    justify-content: center;
}
}

.most-pop-btn {
	display:block;
	width: fit-content;
    margin: 40px auto 0 !important;
}

.gsap-sec {
    justify-content: center;
    align-items: center;
}

/* button css  */

/* =========================
   BUTTON HOVER EFFECT FIX
   ========================= */

.click-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 100px;
  background: #fff;
  color:#1C3447;
	font-size:16px;
	font-weight:600;
  border: 1px solid #1C3447;
  text-decoration: none;
  overflow: hidden;
  transition:
  color .35s ease,
  border-color .35s ease,
  transform .35s ease;
  z-index: 1;
}

/* arrow */
.click-btn svg{
  width: 18px;
  height: 18px;
  transition: transform .35s ease;
}

/* animated bg */
.btn-style508::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #1C3447;
  transform: translateX(-105%) skewX(-20deg);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.19,1,.22,1);
  z-index: -1;
}

/* hover */
.btn-style508:hover{
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

/* bg slide */
.btn-style508:hover::before{
  transform: translateX(0) skewX(-20deg);
}

/* arrow move */
.btn-style508:hover svg{
  transform: translateX(5px);
}

/* ****************** */
/* =========================
   RESPONSIVE HERO TEXT
   ========================= */

.hero-hover-text{
    color:#fff;
    font-size:clamp(42px, 8vw, 80px) !important;
    font-weight:700;
    line-height:.92;
/*     letter-spacing:-0.03em; */
    text-transform:uppercase;
    width:100%;
}
.hero-hover-text strong{
	font-size:100px;
}
.hero-hover-text .char{
    display:inline-block;
    position:relative;

    cursor:pointer;
    will-change:transform;

    transition:
    color .2s ease,
    text-shadow .2s ease;
}

/* spacing for words */
/* .hero-hover-text .space{
    width:.32em;
} */

/* hover effect */
.hero-hover-text .char:hover{
    color:#1C3447;

    text-shadow:
    1px 1px #fff,
    2px 2px #1C3447,
    3px 3px #1C3447,
    4px 4px #1C3447,
    8px 8px 18px rgba(0,0,0,.12);
}

/* =========================
   TABLET
   ========================= */

@media(max-width:991px){

    .hero-hover-text{
        font-size:clamp(34px, 7vw, 72px);
        line-height:1;
        text-align:center;
    }

}

/* =========================
   MOBILE
   ========================= */

@media(max-width:767px){

    .hero-hover-text{
        font-size:34px !important;
        text-align:start !important;
    }
}

.who-we-help{
    position:relative;
    padding:80px 0;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    background-position:center !important;
    overflow:hidden;
}

/* overlay */
.who-we-help::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
    z-index:0;
}

h2#whoweare-heading{
	position:relative;
	text-transform:uppercase;
}

/* ***** why sec homepage  */
/* --------------------------------------------
   Why HaywoodX Section - Ultra Creative
   NO White Background - Maximum Visual Impact
   -------------------------------------------- */

/* Section Wrapper - Dynamic rich gradient (NO WHITE) */
.why-sec-hey {
  position: relative;
  background: linear-gradient(145deg, #e8edf3 0%, #dce4ec 25%, #d0dae5 50%, #e0e8f0 75%, #eef3f8 100%);
  padding: 80px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Animated wave pattern - Top */
.why-sec-hey::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(28,52,71,0.03) 0px,
    rgba(28,52,71,0.03) 2px,
    transparent 2px,
    transparent 8px
  );
  pointer-events: none;
  animation: slidePattern 20s linear infinite;
  z-index: 0;
}

@keyframes slidePattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(30px) translateY(30px); }
}

/* Large floating blob 1 */
.why-sec-hey::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(28,52,71,0.12) 0%, rgba(28,52,71,0.04) 40%, transparent 70%);
  border-radius: 60% 40% 50% 50% / 45% 50% 50% 55%;
  animation: morphBlob 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Large floating blob 2 */
.why-sec-hey .container::before {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(28,52,71,0.1) 0%, rgba(28,52,71,0.03) 50%, transparent 70%);
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  animation: morphBlob2 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating blob 3 - Center subtle */
.why-sec-hey .container::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(28,52,71,0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes morphBlob {
  0%, 100% { 
    border-radius: 60% 40% 50% 50% / 45% 50% 50% 55%;
    transform: translate(0, 0) scale(1);
  }
  33% { 
    border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
    transform: translate(20px, -15px) scale(1.08);
  }
  66% { 
    border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%;
    transform: translate(-10px, 10px) scale(0.95);
  }
}

@keyframes morphBlob2 {
  0%, 100% { 
    border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
    transform: translate(0, 0) scale(1);
  }
  33% { 
    border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
    transform: translate(-25px, 20px) scale(1.1);
  }
  66% { 
    border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
    transform: translate(15px, -20px) scale(0.92);
  }
}

@keyframes pulseFloat {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Creative mesh gradient overlay */
/* .why-sec-hey {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(28,52,71,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(28,52,71,0.05) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(28,52,71,0.02) 40px, rgba(28,52,71,0.02) 41px);
} */

/* Glassmorphism card effect for content area */
.why-sec-hey .row {
  position: relative;
  z-index: 2;
}

.why-sec-hey .haywood-detail {
  position: relative;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  border-radius: 48px;
  padding: 40px 40px 40px 50px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08), inset 0 1px 1px rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s ease;
}

.why-sec-hey .haywood-detail:hover {
  background: rgba(255,255,255,0.45);
  box-shadow: 0 25px 45px -18px rgba(0,0,0,0.12);
}

/* Heading - Stunning 3D Text Effect */
.why-sec-hey .cta-strip-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0a1c2a 0%, #1c3447 35%, #2c5a7a 65%, #1c3447 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  text-shadow: 4px 4px 12px rgba(28,52,71,0.15);
}

/* Creative animated underline with gradient */
.why-sec-hey .cta-strip-title::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1c3447, #6aadcc, #1c3447, #6aadcc, #1c3447);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; width: 100px; }
  50% { background-position: 100% 50%; width: 140px; }
}

/* .why-sec-hey .cta-strip-title::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 60px;
  height: 2px;
  background: rgba(28,52,71,0.3);
} */

/* Animated shine on heading */
@keyframes textShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* === LIST STYLING - 3D Card Style === */
.why-sec-hey .serve-tags.list-color {
  margin: 2rem 0 1.8rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-sec-hey .serve-tags.list-color li {
  position: relative;
  padding: 14px 0 14px 55px;
  font-size: 1rem;
  line-height: 1.45;
  color: #1a2c3a;
	margin-bottom:10px;
  font-weight: 500;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  border-radius: 60px;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.2);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.why-sec-hey .serve-tags.list-color li:hover {
  background: rgba(255,255,255,0.8);
  transform: translateX(12px) scale(1.02);
  box-shadow: 0 15px 30px -12px rgba(28,52,71,0.2);
  border-color: rgba(28,52,71,0.15);
}

/* Animated 3D Gradient Bullet */
.why-sec-hey .serve-tags.list-color li::before {
  content: "★";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(145deg, #1c3447, #2c5a7a, #1c3447);
  background-size: 150% 150%;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(28,52,71,0.3);
  transition: all 0.35s ease;
  animation: bulletGlow 2s ease-in-out infinite;
}

@keyframes bulletGlow {
  0%, 100% { box-shadow: 0 5px 12px rgba(28,52,71,0.3); }
  50% { box-shadow: 0 5px 20px rgba(28,52,71,0.5); }
}

.why-sec-hey .serve-tags.list-color li:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(180deg);
  background: linear-gradient(145deg, #2c5a7a, #1c3447);
}

/* === PARAGRAPHS - Creative Quote Style === */
.why-sec-hey .haywood-detail p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a2c3e;
  margin-bottom: 1rem;
  padding: 12px 20px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  transition: all 0.4s ease;
  border-left: 4px solid #1c3447;
  font-weight: 450;
}

.why-sec-hey .haywood-detail p:hover {
  background: rgba(255,255,255,0.6);
  transform: translateX(5px);
  border-left-width: 6px;
}

.why-sec-hey .haywood-detail p:first-of-type {
  margin-top: 0.8rem;
}

/* === RIGHT IMAGE - Luxury Card with Motion === */
.why-sec-hey .why-img-right {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 35px 50px -20px rgba(0,0,0,0.35);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
  background: linear-gradient(145deg, #1c3447, #0f1e2a);
}

/* Multi-layer border effect */
.why-sec-hey .why-img-right::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #1c3447, #5a9bc7, #8abdd8, #1c3447);
  background-size: 300% 300%;
  border-radius: 42px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.why-sec-hey .why-img-right:hover::before {
  opacity: 1;
}

/* Inner creative overlay */
.why-sec-hey .why-img-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,52,71,0.15) 0%, transparent 40%, transparent 60%, rgba(28,52,71,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.why-sec-hey .why-img-right img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.2);
  filter: saturate(1.05) contrast(1.02);
}

.why-sec-hey .why-img-right:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 45px 60px -25px rgba(0,0,0,0.45);
}

.why-sec-hey .why-img-right:hover img {
  transform: scale(1.06);
}

/* Creative floating shadow motion */
.why-sec-hey .sd-3 {
  position: relative;
}

.why-sec-hey .sd-3::before {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 95%;
  height: 90%;
  background: linear-gradient(145deg, rgba(28,52,71,0.15), rgba(28,52,71,0.05));
  border-radius: 40px;
  z-index: -1;
  transition: all 0.4s ease;
  animation: shadowMove 6s ease-in-out infinite;
}

@keyframes shadowMove {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(-5px, -5px); opacity: 0.9; }
}

.why-sec-hey .sd-3:hover::before {
  bottom: -30px;
  right: -30px;
}

/* === Premium Floating Animation for Image === */
@keyframes floatPremium3D {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  33% { 
    transform: translateY(-15px) rotate(1.5deg);
  }
  66% { 
    transform: translateY(8px) rotate(-1deg);
  }
}

.why-sec-hey .why-img-right {
  animation: floatPremium3D 6s ease-in-out infinite;
}

.why-sec-hey .sd-3:hover .why-img-right {
  animation-play-state: paused;
}

/* === Reveal Animation Enhanced === */
.why-sec-hey .reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              transform 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.why-sec-hey .reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* === NO BUTTON CSS - Keep your original button styles === */

/* === Responsive === */
@media (max-width: 992px) {
  .why-sec-hey {
    padding: 80px 0;
  }
  
  .why-sec-hey .haywood-detail {
    padding: 30px 25px;
    backdrop-filter: blur(20px);
  }
  
  .why-sec-hey .cta-strip-title {
    font-size: 2.5rem;
    text-align: center;
    display: block;
  }
  
  .why-sec-hey .cta-strip-title::before,
  .why-sec-hey .cta-strip-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .why-sec-hey .cta-strip-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .why-sec-hey .serve-tags.list-color li {
    text-align: left;
  }
  
  .why-sec-hey .haywood-detail p {
    text-align: left;
  }
  
  .why-sec-hey .why-img-right {
    max-width: 450px;
    margin: 50px auto 0;
    animation: none;
  }
  
  .why-sec-hey .sd-3::before {
    display: none;
  }
  
  .why-sec-hey .d-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .why-sec-hey {
    padding: 60px 0;
  }
  
  .why-sec-hey .haywood-detail {
    padding: 25px 18px;
  }
  
  .why-sec-hey .cta-strip-title {
    font-size: 1.8rem;
  }
  
  .why-sec-hey .serve-tags.list-color li {
    font-size: 0.85rem;
    padding: 12px 0 12px 48px;
  }
  
  .why-sec-hey .serve-tags.list-color li::before {
    width: 28px;
    height: 28px;
    font-size: 12px;
    left: 12px;
  }
  
  .why-sec-hey .haywood-detail p {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
}


/* System section css  */
/* =========================
   ULTRA PREMIUM SYSTEM SECTION
   ========================= */

.system-sec{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,0.05),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(122,92,74,0.14),
    transparent 35%),

    linear-gradient(
    135deg,
    #081018 0%,
    #0d1721 40%,
    #121d28 100%);
}

/* animated glow orb */
.system-sec::before{
    content:"";

    position:absolute;

    width:520px;
    height:520px;

    top:-220px;
    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(122,92,74,0.22),
    transparent 70%);

    filter:blur(20px);

    pointer-events:none;
}

/* secondary glow */
.system-sec::after{
    content:"";

    position:absolute;

    width:380px;
    height:380px;

    bottom:-160px;
    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,0.04),
    transparent 70%);

    pointer-events:none;
}

/* content */
.system-sec .system-detail{
    position:relative;
    z-index:2;
}

/* heading */
.system-sec .cta-strip-title{
    position:relative;

    font-size:clamp(42px,5vw,78px);
    font-weight:700;
    line-height:1.02;

    color:#fff;

    letter-spacing:-0.04em;

    margin-bottom:28px;
}

/* luxury underline */
.system-sec .cta-strip-title::after{
    content:"";

    display:block;

    width:110px;
    height:4px;

    margin-top:20px;

    border-radius:100px;

    background:
    linear-gradient(
    90deg,
    #7a5c4a,
    #fff,
    transparent
    );

    box-shadow:
    0 0 18px rgba(122,92,74,0.35);

    transition:width .45s ease;
}

.system-sec:hover .cta-strip-title::after{
    width:170px;
}

/* paragraph */
.system-sec .system-detail p{
    color:rgba(255,255,255,0.72);

    font-size:17px;
    line-height:1.9;

    margin-bottom:1.6rem;

    max-width:650px;
}

/* list */
.system-sec .serve-tags.list-color{
    list-style:none;
    padding:0;
    margin:2rem 0 0;
}

/* list item */
.system-sec .serve-tags.list-color li{
    position:relative;

    display:flex;
    align-items:center;

    gap:16px;

    padding:18px 22px;

    margin-bottom:18px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    border-radius:22px;

    color:#fff;

    font-weight:500;

    backdrop-filter:blur(14px);

    transition:
    transform .45s cubic-bezier(.19,1,.22,1),
    border-color .35s ease,
    box-shadow .45s ease;
}

/* hover */
.system-sec .serve-tags.list-color li:hover{
    transform:
    translateX(12px)
    translateY(-4px);

    border-color:rgba(122,92,74,0.38);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.28),
    0 0 40px rgba(122,92,74,0.14);
}

/* icon */
.system-sec .serve-tags.list-color li::before{
    content:"✓";
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:50%;
    background:
    linear-gradient(135deg, #7a5c4a, #1c3447);
    color:#fff;
    font-size:14px;
    font-weight:700;
    box-shadow:
    0 8px 20px rgba(122,92,74,0.28);
}

/* image wrapper */
.system-sec .system-right-img{
    position:relative;

    border-radius:32px;

    overflow:hidden;

    background:#111;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    0 0 50px rgba(122,92,74,0.12);

    transform:
    perspective(1400px)
    rotateY(-6deg);

    transition:
    transform .55s cubic-bezier(.19,1,.22,1),
    box-shadow .45s ease;
}

/* glossy layer */
.system-sec .system-right-img::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    transparent 40%
    );

    z-index:2;

    pointer-events:none;
}

/* image */
.system-sec .system-right-img img{
    width:100%;
    display:block;

    transition:
    transform 1s cubic-bezier(.19,1,.22,1),
    filter .45s ease;
}

/* hover */
.system-sec .system-right-img:hover{
    transform:
    perspective(1400px)
    rotateY(0deg)
    translateY(-12px);

    box-shadow:
    0 40px 100px rgba(0,0,0,0.42),
    0 0 65px rgba(122,92,74,0.18);
}

.system-sec .system-right-img:hover img{
    transform:scale(1.08);
    filter:contrast(1.04);
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:991px){

    .system-sec{
        padding:90px 0;
    }

    .system-sec .cta-strip-title{
        font-size:50px;
    }

    .system-sec .system-right-img{
        margin-top:50px;
        transform:none;
    }

}

@media(max-width:767px){

    .system-sec{
        padding:70px 0;
    }

    .system-sec .cta-strip-title{
        font-size:34px;
        text-align:center;
    }

    .system-sec .cta-strip-title::after{
        margin:18px auto 0;
    }

    .system-sec .system-detail p{
        text-align:center;
        font-size:16px;
    }

    .system-sec .serve-tags.list-color li{
        padding:16px 18px;
        font-size:15px;
    }

    .system-sec .system-right-img{
        border-radius:24px;
    }

}

.serve-card{
    position:relative;
}

section.sec.serve-sec .col-md-6:first-child .serve-card::before{
    content:'Problem';

    position:absolute;

    top:16%;
    left:50%;

    transform:translate(-50%, -50%);

    font-family:var(--fb);

    font-size:6rem;
    font-weight:700;

    color:rgba(255,255,255,.03);

    letter-spacing:-0.04em;
    line-height:1;

    pointer-events:none;

    text-transform:uppercase;
    white-space:nowrap;

    z-index:0;
}

section.sec.serve-sec .col-md-6:last-child .serve-card::before{
    content:'Solutions';

    position:absolute;

    top:16%;
    left:50%;

    transform:translate(-50%, -50%);

    font-family:var(--fb);

    font-size:6rem;
    font-weight:700;

    color:rgba(255,255,255,.03);

    letter-spacing:-0.04em;
    line-height:1;

    pointer-events:none;

    text-transform:uppercase;
    white-space:nowrap;

    z-index:0;
}


section.sec.bg-cream.focus-section::before{
	display:none;
}

/* New csss  */
            /* ===== HERO SECTION ===== */
    .hero-word-reveal {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
/*       background: #f4f2ee; */
		background:#1c3447e6;
      overflow: hidden;
      isolation: isolate;
		padding:50px 0px 60px;
    }

    /* ===== EXTREME DETAILED BACKGROUND ===== */
    .hero-bg-extreme {
      position: absolute;
      inset: 0;
      background: 
        /* Multiple radial gradients for depth */
        radial-gradient(circle at 10% 20%, rgba(44,93,143,0.18), transparent 45%),
        radial-gradient(circle at 90% 30%, rgba(15,61,92,0.14), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(127,175,180,0.12), transparent 55%),
        radial-gradient(circle at 30% 60%, rgba(62,120,178,0.1), transparent 40%),
        radial-gradient(circle at 70% 15%, rgba(169,198,218,0.15), transparent 48%),
        /* Subtle grid pattern for texture */
        repeating-linear-gradient(45deg, rgba(44,93,143,0.02) 0px, rgba(44,93,143,0.02) 2px, transparent 2px, transparent 8px),
        /* Base gradient */
        linear-gradient(135deg, #f4f2ee 0%, #eef4f7 40%, #f4f2ee 100%);
      z-index: 0;
    }

    /* Animated flowing lines background */
    .flowing-lines {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.12;
      pointer-events: none;
    }
    .flowing-lines svg {
      width: 100%;
      height: 100%;
    }
    .flowing-lines path {
      stroke: #2C5D8F;
      stroke-width: 1.5;
      fill: none;
      animation: lineFlow 20s linear infinite;
    }
    @keyframes lineFlow {
      0% { stroke-dashoffset: 0; }
      100% { stroke-dashoffset: 200; }
    }

    /* Animated grain texture */
    .hero-grain-extreme {
      position: absolute;
      inset: 0;
      background-image: url("https://www.transparenttextures.com/patterns/noise.png");
      opacity: 0.07;
      z-index: 1;
      pointer-events: none;
      animation: grainExtreme 10s steps(4) infinite;
    }
    @keyframes grainExtreme {
      0%, 100% { opacity: 0.06; transform: scale(1);}
      50% { opacity: 0.12; transform: scale(1.02);}
    }

    /* ===== MORPHING LIQUID BLOBS (Ultra Premium) ===== */
    .liquid-blob-word {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      will-change: transform, border-radius;
      animation: liquidMorphWord 25s infinite alternate ease-in-out;
      z-index: 0;
    }
    .blob-word-1 {
      width: 520px;
      height: 520px;
      background: #2C5D8F;
      top: -18%;
      left: -10%;
      opacity: 0.22;
    }
    .blob-word-2 {
      width: 580px;
      height: 580px;
      background: #7fafb4;
      bottom: -25%;
      right: -15%;
      opacity: 0.2;
      animation-duration: 28s;
      animation-delay: 1.8s;
    }
    .blob-word-3 {
      width: 380px;
      height: 380px;
      background: #3e78b2;
      top: 40%;
      right: 0%;
      filter: blur(85px);
      opacity: 0.25;
      animation-duration: 20s;
      animation-delay: 3s;
    }
    .blob-word-4 {
      width: 420px;
      height: 420px;
      background: #a9c6da;
      bottom: 5%;
      left: -5%;
      opacity: 0.2;
      animation-duration: 26s;
      animation-delay: 1s;
    }
    @keyframes liquidMorphWord {
      0% {
        border-radius: 68% 32% 48% 52% / 42% 58% 42% 58%;
        transform: translate(0, 0) scale(1);
      }
      40% {
        border-radius: 32% 68% 75% 25% / 58% 42% 58% 42%;
        transform: translate(55px, -45px) scale(1.22);
      }
      70% {
        border-radius: 48% 52% 35% 65% / 52% 32% 68% 48%;
        transform: translate(-45px, 55px) scale(0.88);
      }
      100% {
        border-radius: 58% 42% 48% 52% / 32% 68% 32% 68%;
        transform: translate(35px, -35px) scale(1.12);
      }
    }

    /* glowing orbs */
    .glow-orb-word {
      position: absolute;
      border-radius: 50%;
      filter: blur(65px);
      animation: orbWordGlide 16s infinite alternate;
    }
    .orb-word-1 {
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, #dce8f3, #2c5d8fdd);
      top: 15%;
      right: 5%;
      opacity: 0.45;
    }
    .orb-word-2 {
      width: 190px;
      height: 190px;
      background: #c7dceb;
      bottom: 18%;
      left: 0%;
      opacity: 0.55;
      animation-duration: 13s;
    }
    @keyframes orbWordGlide {
      0% { transform: translateY(0px) scale(1); opacity: 0.35;}
      100% { transform: translateY(-80px) scale(1.45); opacity: 0.68;}
    }

    /* particle swarm */
    .particle-word-swarm {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .particle-word {
      position: absolute;
      width: 9px;
      height: 9px;
      background: #2C5D8F;
      border-radius: 50%;
      opacity: 0.45;
      animation: orbitWordTrail 32s linear infinite;
    }
    @keyframes orbitWordTrail {
      from { transform: rotate(0deg) translateX(260px) rotate(0deg);}
      to { transform: rotate(360deg) translateX(260px) rotate(-360deg);}
    }

    /* ===== CONTENT WRAPPER ===== */
    .hero-content-word {
      position: relative;
    }

    /* ===== BADGE ===== */
    .badge-word-premium {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(220, 232, 243, 0.85);
      backdrop-filter: blur(12px);
      padding: 10px 32px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 800;
      color: #1C3447;
      letter-spacing: 0.5px;
      margin-bottom: 30px;
      border: 1px solid rgba(44,93,143,0.35);
      animation: badgeWordSlide 0.8s ease forwards;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .badge-word-premium::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      transition: left 0.6s ease;
    }
    .badge-word-premium:hover::before {
      left: 100%;
    }
    .badge-word-premium:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 35px -14px rgba(44,93,143,0.4);
    }
    @keyframes badgeWordSlide {
      from { opacity: 0; transform: translateX(-70px);}
      to { opacity: 1; transform: translateX(0);}
    }

    /* ===== WORD-BY-WORD REVEAL SYSTEM ===== */
   
.word-reveal-headline h1{
	font-size: 70px;
      font-weight: 900;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 20px;
}

    .reveal-line {
      display: block;
    }

    .reveal-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px) scale(0.9);
      animation: wordRevealSequence 0.6s cubic-bezier(0.2, 0.85, 0.4, 1) forwards;
    }
    /* Staggered delays for each word */
    .word-1 { animation-delay: 0.05s; }
    .word-2 { animation-delay: 0.15s; }
    .word-3 { animation-delay: 0.25s; }
    .word-4 { animation-delay: 0.35s; }
    .word-5 { animation-delay: 0.45s; }
    .word-6 { animation-delay: 0.55s; }
    .word-7 { animation-delay: 0.65s; }
    .word-8 { animation-delay: 0.75s; }
    .word-9 { animation-delay: 0.85s; }
    .word-10 { animation-delay: 0.95s; }
    .word-11 { animation-delay: 1.05s;}

    @keyframes wordRevealSequence {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        filter: blur(8px);
      }
      60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    .highlight-word {
      color: #2C5D8F;
      position: relative;
      display: inline-block;
    }

    .highlight-word::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 12px;
      width: 100%;
      height: 16px;
      background: linear-gradient(110deg, #a9c6da, #dcecf5, #c7dceb);
      z-index: -1;
      transform: skewX(-12deg);
      border-radius: 8px;
      transition: all 0.4s ease;
    }

    .highlight-word:hover::after {
      height: 24px;
      background: linear-gradient(110deg, #2c5d8f66, #a9c6da, #7fafb4);
    }

    /* Hover effect on any reveal word */
    .reveal-word:hover {
      /* animation: wordLightFlash 0.35s ease forwards !important; */
      color: #2C5D8F;
      cursor: default;
    }

    @keyframes wordLightFlash {
      0% { transform: scale(1); text-shadow: none; }
      40% { transform: scale(1.1); text-shadow: 0 0 12px rgba(44,93,143,0.5); letter-spacing: 0.5px; }
      100% { transform: scale(1.05); text-shadow: 0 0 4px rgba(44,93,143,0.2); }
    }

.desc-word-reveal p{
	color:#fff;
	font-size:22px
}

    .desc-word-reveal span:not(.pill-word-reveal):hover {
      animation: descWordGlow 0.3s ease forwards;
      color: #2C5D8F;
      cursor: default;
    }
    @keyframes descWordGlow {
      0% { transform: translateX(0); text-shadow: none;}
      30% { transform: translateX(-2px); text-shadow: 0 0 5px rgba(44,93,143,0.3);}
      70% { transform: translateX(2px);}
      100% { transform: translateX(0); text-shadow: none;}
    }

    /* ===== BUTTONS ===== */
    .btn-group-word {
      margin-top: 58px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      opacity: 0;
      animation: fadeInButtons 0.8s ease forwards;
      animation-delay: 2.4s;
    }
    @keyframes fadeInButtons {
      from { opacity: 0; transform: translateY(20px);}
      to { opacity: 1; transform: translateY(0);}
    }
    .btn-primary-word {
      background: #2C5D8F;
      color: white;
      padding: 18px 24px;
      border-radius: 80px;
		border:1px solid #fff;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
      box-shadow: 0 18px 35px -14px rgba(15,61,92,0.45);
      position: relative;
      overflow: hidden;
    }
    .btn-primary-word::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }
    .btn-primary-word:hover::before {
      left: 100%;
    }
    .btn-primary-word:hover {
      background: #0F3D5C;
      transform: translateY(-7px) scale(1.02);
      box-shadow: 0 28px 45px -16px rgba(44,93,143,0.6);
      gap: 22px;
    }
    .btn-secondary-word {
      background: rgba(255, 250, 240, 0.78);
      backdrop-filter: blur(12px);
      border: 1.8px solid #2C5D8F;
      color: #1C3447;
      padding: 18px 24px;
      border-radius: 80px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.35s ease;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }
    .btn-secondary-word::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(44,93,143,0.15), transparent);
      transition: left 0.5s ease;
    }
    .btn-secondary-word:hover::before {
      left: 100%;
    }
    .btn-secondary-word:hover {
      background: #dce8f3;
      transform: translateY(-5px);
      border-color: #0F3D5C;
      box-shadow: 0 18px 32px -12px rgba(0,0,0,0.1);
    }



    /* ===== SCROLL INDICATOR ===== */
    .scroll-word-indicator {
      position: absolute;
      bottom: 38px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 45;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeInScroll 0.8s ease forwards;
      animation-delay: 3s;
    }
    @keyframes fadeInScroll {
      from { opacity: 0; transform: translateX(-50%) translateY(10px);}
      to { opacity: 1; transform: translateX(-50%) translateY(0);}
    }
    .scroll-word-ring {
      width: 38px;
      height: 58px;
      border: 2px solid #2C5D8F;
      border-radius: 30px;
      margin: 0 auto 8px;
      position: relative;
      transition: all 0.3s ease;
    }
    .scroll-word-ring::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 12px;
      background: #2C5D8F;
      border-radius: 3px;
      animation: wheelScrollWord 1.8s infinite;
    }
    @keyframes wheelScrollWord {
      0% { opacity: 1; transform: translateX(-50%) translateY(0);}
      70% { opacity: 0.2; transform: translateX(-50%) translateY(18px);}
      100% { opacity: 1; transform: translateX(-50%) translateY(0);}
    }
    .scroll-word-indicator:hover {
      transform: translateX(-50%) translateY(-6px);
    }
    .scroll-word-indicator:hover .scroll-word-ring {
      border-color: #0F3D5C;
      box-shadow: 0 0 18px rgba(44,93,143,0.35);
    }

    @media (max-width: 860px) {
      .hero-content-word { padding: 0 28px; }
      .metric-word-card { padding: 8px 24px; gap: 14px; }
      .metric-number-word { font-size: 32px; }
      .blob-word-2, .blob-word-4 { display: none; }
      .btn-primary-word, .btn-secondary-word { padding: 14px 28px; }
      .word-reveal-headline { font-size: 44px; }
    }


/* Second section css  */
  .hwx-engine-section {
      background: linear-gradient(135deg, #f4f2ee 0%, #faf8f5 100%);
      padding: 7rem 0;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    /* Decorative floating orbs */
    .hwx-bg-orb-primary {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(44, 93, 143, 0.07) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      z-index: 0;
      animation: hwxOrbFloat 8s ease-in-out infinite;
    }

    .hwx-bg-orb-secondary {
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(28, 52, 71, 0.05) 0%, transparent 70%);
      bottom: -80px;
      left: -80px;
      z-index: 0;
      animation: hwxOrbFloat 10s ease-in-out infinite reverse;
    }

    @keyframes hwxOrbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    .hwx-content-wrapper {
      position: relative;
      z-index: 2;
    }

    /* Section heading */
    .hwx-section-heading {
      text-align: center;
      margin-bottom: 5rem;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hwx-section-heading.hwx-is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .hwx-heading-title {
      font-weight: 700;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      color: #1C3447;
      letter-spacing: -0.8px;
      line-height: 1.2;
      text-transform: uppercase;
      margin: 0;
    }

    .hwx-heading-highlight {
      background: linear-gradient(135deg, #2C5D8F 0%, #3e78b2 50%, #2C5D8F 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: hwxGradientFlow 3s ease infinite;
      display: inline-block;
    }

    @keyframes hwxGradientFlow {
      0% { background-position: 0% center; }
      50% { background-position: 100% center; }
      100% { background-position: 0% center; }
    }

    /* Column reveal animation */
    .hwx-column-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hwx-column-reveal.hwx-is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Glass cards */
    .hwx-glass-panel{
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-radius: 3rem;
    padding: 3.5rem 3rem;
    height: 100%;

    border: 1px solid rgba(255,255,255,.9);

    box-shadow: 0 25px 60px rgba(28,52,71,.18);

    position: relative;
    overflow: hidden;

    transform: translateY(0);
    transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s cubic-bezier(.22,.61,.36,1),
    background .45s ease,
    border-color .45s ease;
}

.hwx-glass-panel:hover{
    transform: translateY(-6px);

    background: rgba(255,255,255,.78);

    box-shadow:
    0 35px 75px rgba(28,52,71,.22);

    border-color: rgba(255,255,255,1);
}

    .hwx-glass-panel::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
      transform: rotate(45deg);
      animation: hwxShine 6s infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes hwxShine {
      0% { transform: translateX(-100%) rotate(45deg); }
      100% { transform: translateX(100%) rotate(45deg); }
    }


    .hwx-glass-panel:hover {
      transform: translateY(-12px);
      box-shadow: 0 45px 80px -25px rgba(15, 61, 92, 0.45);
      background: rgba(255, 255, 255, 0.8);
    }

    /* Problem panel accent */
    .hwx-panel-problem {
      border-left: 5px solid #1C3447;
    }

    /* Solution panel accent */
    .hwx-panel-solution {
      border-left: 5px solid #2C5D8F;
    }

    .hwx-panel-icon-title {
      font-weight: 800;
      font-size: 3rem;
      margin-bottom: 1.8rem !important;
      color: #1C3447;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .hwx-panel-icon-title i {
      font-size: 2.8rem;
      background: linear-gradient(135deg, #2C5D8F, #3e78b2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
    }

    .hwx-panel-subtitle {
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      color: #0F3D5C;
      line-height: 1.5;
      padding-bottom: 1.2rem;
      border-bottom: 2px dashed rgba(169, 198, 218, 0.5);
    }

    .hwx-panel-description {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #1C3447;
      margin-bottom: 1.8rem;
      opacity: 0.9;
      font-weight: 400;
    }

    /* Feature list */
    .hwx-feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 2.5rem 0;
    }

    .hwx-feature-item {
      padding: 1.1rem 1.4rem;
      margin-bottom: 0.9rem;
/*       background: rgba(220, 232, 243, 0.35);
      border-radius: 1.4rem; */
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all 0.35s ease;
/*       border: 1px solid transparent; */
      backdrop-filter: blur(5px);
    }

    .hwx-feature-item:hover {
/*       background: rgba(220, 232, 243, 0.7);
      border-color: rgba(44, 93, 143, 0.4); */
      transform: translateX(8px);
/*       box-shadow: 0 8px 20px rgba(44, 93, 143, 0.15); */
    }

    .hwx-panel-problem .hwx-feature-item i {
      color: #1C3447;
      font-size: 1.3rem;
    }

    .hwx-panel-solution .hwx-feature-item i {
      color: #2C5D8F;
      font-size: 1.3rem;
    }

    .hwx-feature-text {
      flex: 1;
    }

    /* Image animation container */
    .hwx-image-animation-wrap {
      margin-top: 2.5rem;
      position: relative;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hwx-dual-image-stack {
      position: relative;
      width: 190px;
      height: 190px;
    }

    .hwx-dual-image-stack img {
      position: absolute;
      width: 165px;
      height: 165px;
      object-fit: cover;
      border-radius: 26px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.35);
      transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 3px solid white;
    }

    /* Default stack positions */
    .hwx-img-layer-back {
      top: 0;
      left: 0;
      z-index: 1;
      transform: rotate(-6deg);
    }

    .hwx-img-layer-front {
      top: 25px;
      left: 25px;
      z-index: 2;
      transform: rotate(4deg);
    }

    /* Animated state when scrolled into view */
    .hwx-dual-image-stack.hwx-image-animated .hwx-img-layer-back {
      transform: translate(-35px, 35px) rotate(-12deg) scale(1.08);
      filter: brightness(0.75) saturate(0.8);
      border-color: #1C3447;
    }

    .hwx-dual-image-stack.hwx-image-animated .hwx-img-layer-front {
      transform: translate(35px, -35px) rotate(10deg) scale(1.08);
      border-color: #2C5D8F;
      filter: brightness(1.15) contrast(1.1);
    }

    .hwx-image-label {
      text-align: center;
      margin-top: 1.5rem;
      font-weight: 700;
      color: #2C5D8F;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      background: rgba(44, 93, 143, 0.08);
      padding: 0.5rem 2rem;
      border-radius: 50px;
      display: inline-block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hwx-glass-panel {
        padding: 2.5rem 1.8rem;
        border-radius: 2.2rem;
      }
      .hwx-dual-image-stack {
        width: 155px;
        height: 155px;
      }
      .hwx-dual-image-stack img {
        width: 135px;
        height: 135px;
      }
      .hwx-panel-icon-title {
        font-size: 2.4rem;
      }
    }

    /* Custom gap override for Bootstrap row */
    .hwx-custom-gap {
      --bs-gutter-y: 2.5rem;
    }

/* Whol we help css  */
 .hwx-audience-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  /* Particle Canvas */
  .hwx-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Floating Orbs */
  .hwx-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }
  
  .hwx-orb-top-left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 93, 143, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: hwxOrbFloat1 12s ease-in-out infinite;
  }
  
  .hwx-orb-bottom-right {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 120, 178, 0.3) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: hwxOrbFloat2 10s ease-in-out infinite;
  }
  
  .hwx-orb-center {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 175, 180, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hwxOrbFloat3 14s ease-in-out infinite;
  }
  
  @keyframes hwxOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
  }
  
  @keyframes hwxOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.15); }
    66% { transform: translate(30px, 40px) scale(0.85); }
  }
  
  @keyframes hwxOrbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
  }
  
  /* Geometric Pattern */
  .hwx-geo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(30deg, rgba(44, 93, 143, 0.05) 12%, transparent 12.5%),
      linear-gradient(150deg, rgba(44, 93, 143, 0.05) 12%, transparent 12.5%);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
    animation: hwxPatternShift 20s linear infinite;
  }
  
  @keyframes hwxPatternShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
  }
  
  /* Header Styles */
  .hwx-audience-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .hwx-audience-header.hwx-header-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hwx-header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2C5D8F, transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
  }
  
  .hwx-header-line-bottom {
    margin: 1.5rem auto 0;
  }
  
  .hwx-eyebrow-badge {
    display: inline-block;
    background: rgba(44, 93, 143, 0.2);
    color: #a9c6da;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(44, 93, 143, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .hwx-audience-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #f4f2ee;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
  }
  
  .hwx-title-highlight {
    background: linear-gradient(135deg, #3e78b2, #7fafb4, #2C5D8F);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hwxGradientText 4s ease infinite;
  }
  
  @keyframes hwxGradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
  }
  
  .hwx-audience-subtitle {
    color: #a9c6da;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
  }
  
  /* Card Columns */
  .hwx-card-column {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .hwx-card-column.hwx-card-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  #hwxCardColumn2.hwx-card-visible {
    transition-delay: 0.2s;
  }
  
  /* Audience Cards */
  .hwx-audience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .hwx-audience-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(44, 93, 143, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }
  
  /* Card Glow Effect */
  .hwx-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(44, 93, 143, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
  }
  
  .hwx-audience-card:hover .hwx-card-glow {
    opacity: 1;
    animation: hwxGlowRotate 4s linear infinite;
  }
  
  @keyframes hwxGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Card Number Badge */
  .hwx-card-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(44, 93, 143, 0.1);
    z-index: 1;
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  
  .hwx-audience-card:hover .hwx-card-number {
    color: rgba(44, 93, 143, 0.2);
    transform: scale(1.1);
  }
  
  /* Icon Container */
  .hwx-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    z-index: 2;
  }
  
  .hwx-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(44, 93, 143, 0.3);
    animation: hwxIconPulse 2.5s ease-out infinite;
  }
  
  @keyframes hwxIconPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  
  .hwx-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C5D8F, #3e78b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(44, 93, 143, 0.4);
  }
  
  .hwx-card-svg {
    width: 36px;
    height: 36px;
    color: #f4f2ee;
    transition: transform 0.4s ease;
  }
  
  .hwx-audience-card:hover .hwx-card-svg {
    transform: scale(1.2) rotate(-10deg);
  }
  
  /* Card Content */
  .hwx-card-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4f2ee;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }
  
  .hwx-card-text {
    color: #a9c6da;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
  }
  
  /* Feature Pills */
  .hwx-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .hwx-pill {
    background: rgba(44, 93, 143, 0.2);
    color: #dce8f3;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(44, 93, 143, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .hwx-pill i {
    color: #3e78b2;
    font-size: 0.9rem;
  }
  
  .hwx-pill:hover {
    background: rgba(44, 93, 143, 0.4);
    border-color: #2C5D8F;
    transform: translateY(-3px);
  }
  
  /* CTA Button */
  .hwx-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #f4f2ee;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(244, 242, 238, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .hwx-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 242, 238, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .hwx-cta-btn:hover {
    border-color: #f4f2ee;
    background: rgba(244, 242, 238, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .hwx-cta-btn:hover::before {
    left: 100%;
  }
  
  .hwx-btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
  }
  
  .hwx-cta-btn:hover .hwx-btn-arrow {
    transform: translateX(5px);
  }
  
  /* Decorative Corner */
  .hwx-card-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(44, 93, 143, 0.1) 50%);
    border-radius: 0 0 2.5rem 0;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hwx-audience-card {
      padding: 2rem 1.5rem;
      border-radius: 2rem;
    }
    .hwx-card-number {
      font-size: 3.5rem;
      top: 1rem;
      right: 1.5rem;
    }
    .hwx-feature-pills {
      gap: 0.5rem;
    }
    .hwx-pill {
      padding: 0.4rem 0.9rem;
      font-size: 0.78rem;
    }
  }

        /* ============ HAYWOODX UNIQUE SECTION ============ */
        .hxw-whowehelp {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
            background: linear-gradient(135deg, #1C3447 0%, #0F3D5C 40%, #1C3447 100%);
/* 			background:linear-gradient(135deg, #0c2a40 0%, #000 100%) !important; */
            overflow: hidden;
        }
        
        /* Animated particles container */
        .hxw-particles-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        
        .hxw-particle-dot {
            position: absolute;
            background: rgba(44, 93, 143, 0.6);
            border-radius: 50%;
            animation: hxwFloatUp linear infinite;
        }
        
        @keyframes hxwFloatUp {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }
        
        /* Glowing orbs */
        .hxw-orb-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 1;
            pointer-events: none;
        }
        
        .hxw-orb-glow--left {
            width: 500px;
            height: 500px;
            background: rgba(44, 93, 143, 0.3);
            top: -200px;
            left: -150px;
            animation: hxwOrbMove1 15s ease-in-out infinite;
        }
        
        .hxw-orb-glow--right {
            width: 400px;
            height: 400px;
            background: rgba(62, 120, 178, 0.25);
            bottom: -150px;
            right: -100px;
            animation: hxwOrbMove2 12s ease-in-out infinite;
        }
        
        .hxw-orb-glow--center {
            width: 300px;
            height: 300px;
            background: rgba(127, 175, 180, 0.15);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: hxwOrbMove3 18s ease-in-out infinite;
        }
        
        @keyframes hxwOrbMove1 {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(60px, -50px); }
            66% { transform: translate(-30px, 40px); }
        }
        
        @keyframes hxwOrbMove2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, -40px); }
        }
        
        @keyframes hxwOrbMove3 {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.3); }
        }
        
        /* Grid pattern overlay */
        .hxw-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(44, 93, 143, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(44, 93, 143, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
            animation: hxwGridMove 20s linear infinite;
        }
        
        @keyframes hxwGridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Content wrapper */
        .hxw-content-holder {
            position: relative;
            z-index: 2;
        }
        
        /* Section header */
        .hxw-section-top {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hxw-badge-tag {
            display: inline-block;
            background: rgba(44, 93, 143, 0.3);
            color: #a9c6da;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 1px solid rgba(44, 93, 143, 0.4);
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
        }
        
        .hxw-main-heading {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            color: #f4f2ee;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hxw-heading-highlight {
            background: linear-gradient(135deg, #3e78b2, #7fafb4, #2C5D8F);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: hxwGradientMove 3s ease infinite;
        }
        
        @keyframes hxwGradientMove {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }
        
        .hxw-sub-heading {
            color: #a9c6da;
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
        }
        
        /* Divider line */
        .hxw-divider-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #2C5D8F, transparent);
            margin: 20px auto;
            border-radius: 2px;
        }
        
        /* Cards */
        .hxw-info-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px 35px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .hxw-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 93, 143, 0.1) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }
        
        .hxw-info-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(44, 93, 143, 0.5);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }
        
        /* Card number watermark */
        .hxw-card-watermark {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 80px;
            font-weight: 900;
            color: rgba(44, 93, 143, 0.08);
            z-index: 0;
            pointer-events: none;
            transition: all 0.4s ease;
            line-height: 1;
        }
        
        .hxw-info-card:hover .hxw-card-watermark {
            color: rgba(44, 93, 143, 0.15);
            transform: scale(1.1);
        }
        
        /* Icon box */
        .hxw-icon-box {
            position: relative;
            width: 70px;
            height: 70px;
            margin-bottom: 25px;
            z-index: 1;
        }
        
        .hxw-icon-pulse-ring {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(44, 93, 143, 0.4);
            animation: hxwPulseEffect 2s ease-out infinite;
        }
        
        @keyframes hxwPulseEffect {
            0% { transform: scale(0.8); opacity: 0.8; }
            100% { transform: scale(1.8); opacity: 0; }
        }
        
        .hxw-icon-circle {
            position: relative;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(44, 93, 143, 0.5);
        }
        
        .hxw-icon-circle svg {
            width: 32px;
            height: 32px;
            color: #f4f2ee;
            transition: transform 0.4s ease;
        }
        
        .hxw-info-card:hover .hxw-icon-circle svg {
            transform: scale(1.2) rotate(-5deg);
        }
        
        /* Card content */
        .hxw-card-title {
            font-size: 26px;
            font-weight: 700;
            color: #f4f2ee;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .hxw-card-description {
            color: #a9c6da;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        /* Feature tags */
        .hxw-tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .hxw-tag-item {
/*             background: rgba(44, 93, 143, 0.25); */
            color: #dce8f3;
            padding: 8px 18px;
/*             border-radius: 50px; */
            font-size: 14px;
            font-weight: 500;
/*             border: 1px solid rgba(44, 93, 143, 0.35); */
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .hxw-tag-item i {
            color: #3e78b2;
            font-size: 13px;
        }
        
        .hxw-tag-item:hover {
/*             background: rgba(44, 93, 143, 0.45);
            border-color: #2C5D8F; */
            transform: translateY(-3px);
/*             box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
        }
        
        /* CTA Button */
        .hxw-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: #f4f2ee;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(244, 242, 238, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            font-size: 16px;
        }
        
        .hxw-action-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .hxw-action-btn:hover {
            border-color: #f4f2ee;
            background: rgba(244, 242, 238, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            color: #ffffff;
        }
        
        .hxw-action-btn:hover::after {
            left: 100%;
        }
        
        .hxw-btn-arrow-icon {
            transition: transform 0.3s ease;
            font-size: 18px;
        }
        
        .hxw-action-btn:hover .hxw-btn-arrow-icon {
            transform: translateX(6px);
        }
        
        /* Corner decoration */
        .hxw-card-corner-decor {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, transparent 50%, rgba(44, 93, 143, 0.08) 50%);
            border-radius: 0 0 30px 0;
            pointer-events: none;
            z-index: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hxw-whowehelp {
                padding: 60px 0;
            }
            
            .hxw-info-card {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            .hxw-card-watermark {
                font-size: 50px;
                top: 15px;
                right: 20px;
            }
            
            .hxw-card-title {
                font-size: 22px;
            }
            
            .hxw-tag-group {
                gap: 8px;
            }
            
            .hxw-tag-item {
                padding: 6px 14px;
                font-size: 12px;
            }
        }

        /* ============ HAYWOODX SYSTEM SECTION ============ */
        .hxw-system-section {
            position: relative;
            padding: 120px 0;
            background: #f4f2ee;
            overflow: hidden;
            isolation: isolate;
        }
        
        /* Background decorative elements */
        .hxw-sys-bg-shape {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        
        .hxw-sys-bg-circle-large {
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(44, 93, 143, 0.04) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: hxwSysOrbFloat 12s ease-in-out infinite;
        }
        
        .hxw-sys-bg-circle-small {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(28, 52, 71, 0.05) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: hxwSysOrbFloat 10s ease-in-out infinite reverse;
        }
        
        @keyframes hxwSysOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(40px, -30px) scale(1.05); }
            66% { transform: translate(-25px, 25px) scale(0.95); }
        }
        
        /* Grid dots pattern */
        .hxw-sys-dots-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(44, 93, 143, 0.08) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 0;
            pointer-events: none;
        }
        
        /* Floating accent lines */
        .hxw-sys-accent-line {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        
        .hxw-sys-line-horizontal {
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(44, 93, 143, 0.2), transparent);
            top: 15%;
            right: 10%;
            animation: hxwSysLineMove 8s ease-in-out infinite;
        }
        
        .hxw-sys-line-vertical {
            width: 2px;
            height: 200px;
            background: linear-gradient(180deg, transparent, rgba(44, 93, 143, 0.15), transparent);
            bottom: 20%;
            left: 15%;
            animation: hxwSysLineMove 10s ease-in-out infinite reverse;
        }
        
        @keyframes hxwSysLineMove {
            0%, 100% { transform: translate(0, 0); opacity: 0.5; }
            50% { transform: translate(30px, -20px); opacity: 1; }
        }
        
        /* Content wrapper */
        .hxw-sys-content-wrap {
            position: relative;
            z-index: 2;
        }
        
        /* Left content area */
        .hxw-sys-left-content {
            position: relative;
        }
        
        /* Section badge */
        .hxw-sys-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(44, 93, 143, 0.08);
            color: #2C5D8F;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
            border: 1px solid rgba(44, 93, 143, 0.15);
            backdrop-filter: blur(5px);
        }
        
        .hxw-sys-eyebrow-dot {
            width: 8px;
            height: 8px;
            background: #2C5D8F;
            border-radius: 50%;
            animation: hxwSysDotPulse 2s ease-in-out infinite;
        }
        
        @keyframes hxwSysDotPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.8); opacity: 0.4; }
        }
        
        /* Main heading */
        .hxw-sys-heading {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
            color: #1C3447;
            line-height: 1.15;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hxw-sys-heading-highlight {
            position: relative;
            color: #2C5D8F;
            display: inline-block;
        }
        
        .hxw-sys-heading-highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 8px;
            background: rgba(44, 93, 143, 0.15);
            border-radius: 4px;
            z-index: -1;
            animation: hxwSysUnderlineWidth 3s ease-in-out infinite;
        }
        
        @keyframes hxwSysUnderlineWidth {
            0%, 100% { width: 100%; }
            50% { width: 70%; }
        }
        
        /* Description text */
        .hxw-sys-description {
            font-size: 17px;
            line-height: 1.9;
            color: #4F6D8A;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        /* Feature list */
        .hxw-sys-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .hxw-sys-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 16px 20px;
            margin-bottom: 12px;
/*             background: white;
            border-radius: 16px;
            border: 1px solid rgba(44, 93, 143, 0.08); */
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }
        
        .hxw-sys-feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #2C5D8F, #3e78b2);
            border-radius: 0 4px 4px 0;
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }
        
        .hxw-sys-feature-item:hover {
/*             border-color: rgba(44, 93, 143, 0.25);
            box-shadow: 0 15px 40px rgba(28, 52, 71, 0.1); */
            transform: translateX(8px);
        }
        
/*         .hxw-sys-feature-item:hover::before {
            transform: scaleY(1);
        }
         */
        .hxw-sys-feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: linear-gradient(135deg, rgba(44, 93, 143, 0.1), rgba(62, 120, 178, 0.08));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #2C5D8F;
            transition: all 0.4s ease;
        }
        
/*         .hxw-sys-feature-item:hover .hxw-sys-feature-icon {
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            color: #f4f2ee;
            transform: rotate(-10deg) scale(1.1);
        }
         */
        .hxw-sys-feature-text {
            flex: 1;
        }
        
        .hxw-sys-feature-title {
            font-weight: 700;
            color: #1C3447;
            font-size: 15px;
            margin-bottom: 3px;
        }
        
        .hxw-sys-feature-desc {
            font-size: 13px;
            color: #4F6D8A;
            line-height: 1.5;
        }
        
        /* After list paragraph */
        .hxw-sys-after-text {
            font-size: 16px;
            color: #1C3447;
            font-weight: 500;
            margin-bottom: 30px;
            padding: 15px 20px;
            background: rgba(44, 93, 143, 0.04);
            border-radius: 12px;
            border-left: 3px solid #2C5D8F;
        }
        
        /* CTA Button */
        .hxw-sys-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: linear-gradient(135deg, #2C5D8F, #1C3447);
            color: #f4f2ee;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(44, 93, 143, 0.3);
            letter-spacing: 0.5px;
        }
        
        .hxw-sys-cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .hxw-sys-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(44, 93, 143, 0.45);
            color: #ffffff;
        }
        
        .hxw-sys-cta-btn:hover::before {
            width: 400px;
            height: 400px;
        }
        
        .hxw-sys-cta-btn-text {
            position: relative;
            z-index: 1;
        }
        
        .hxw-sys-cta-btn-arrow {
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
            font-size: 20px;
        }
        
        .hxw-sys-cta-btn:hover .hxw-sys-cta-btn-arrow {
            transform: translateX(8px) rotate(-45deg);
        }
        
        /* Right image area */
        .hxw-sys-right-image-wrap {
            position: relative;
            display: inline-block;
        }
        
        /* Image container with effects */
        .hxw-sys-image-frame {
            position: relative;
            display: inline-block;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(28, 52, 71, 0.25);
            transition: all 0.5s ease;
        }
        
        .hxw-sys-image-frame:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(28, 52, 71, 0.35);
        }
        
        .hxw-sys-image-frame img {
            display: block;
            width: 100%;
            max-width: 550px;
            height: auto;
            border-radius: 30px;
            transition: transform 0.6s ease;
        }
        
        .hxw-sys-image-frame:hover img {
            transform: scale(1.03);
        }
        
        /* Floating decorative cards behind image */
        .hxw-sys-float-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 20px 25px;
            box-shadow: 0 20px 40px rgba(28, 52, 71, 0.15);
            z-index: 1;
            animation: hxwSysFloatCard 6s ease-in-out infinite;
        }
        
        .hxw-sys-float-card--top {
            top: -30px;
            left: -40px;
            animation-delay: 0s;
        }
        
        .hxw-sys-float-card--bottom {
            bottom: -30px;
            right: -40px;
            animation-delay: -3s;
        }
        
        @keyframes hxwSysFloatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .hxw-sys-float-card-stat {
            font-size: 28px;
            font-weight: 800;
            color: #2C5D8F;
            line-height: 1;
        }
        
        .hxw-sys-float-card-label {
            font-size: 12px;
            color: #4F6D8A;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        .hxw-sys-float-card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        /* Glow effect behind image */
        .hxw-sys-image-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(44, 93, 143, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -2;
            animation: hxwSysGlowPulse 4s ease-in-out infinite;
        }
        
        @keyframes hxwSysGlowPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hxw-system-section {
                padding: 80px 0;
            }
            
            .hxw-sys-heading {
                font-size: 28px;
            }
            
            .hxw-sys-feature-item {
                padding: 14px 16px;
            }
            
            .hxw-sys-float-card {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hxw-system-section {
                padding: 60px 0;
            }
            
            .hxw-sys-cta-btn {
                padding: 14px 28px;
                font-size: 14px;
            }
            
            .hxw-sys-image-frame img {
                max-width: 100%;
            }
        }


 /* ============ HAYWOODX DELIVERY SECTION ============ */
        .hxw-delivery-section {
            position: relative;
            padding: 120px 0px;
/*             background: linear-gradient(180deg, #f4f2ee 0%, #faf8f5 50%, #f4f2ee 100%); */
			background: linear-gradient(140deg, #000 17%, #0c2a40 100%);
            overflow: hidden;
            isolation: isolate;
        }
        
        /* Animated background shapes */
        .hxw-del-bg-blob {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        
        .hxw-del-blob-1 {
            width: 500px;
            height: 500px;
            background: rgba(44, 93, 143, 0.06);
            top: -150px;
            left: -150px;
            animation: hxwDelBlobFloat 15s ease-in-out infinite;
        }
        
        .hxw-del-blob-2 {
            width: 400px;
            height: 400px;
            background: rgba(28, 52, 71, 0.04);
            bottom: -100px;
            right: -100px;
            animation: hxwDelBlobFloat 12s ease-in-out infinite reverse;
        }
        
        .hxw-del-blob-3 {
            width: 300px;
            height: 300px;
            background: rgba(62, 120, 178, 0.05);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: hxwDelBlobFloat 18s ease-in-out infinite;
        }
        
        @keyframes hxwDelBlobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -40px) scale(1.1); }
            66% { transform: translate(-30px, 30px) scale(0.9); }
        }
        
        /* Content wrapper */
        .hxw-del-content-wrap {
            position: relative;
            z-index: 2;
        }
        
        /* Section header */
        .hxw-del-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hxw-del-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(44, 93, 143, 0.08);
/*             color: #2C5D8F; */
			color:#fff;
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(44, 93, 143, 0.12);
            backdrop-filter: blur(5px);
        }
        
        .hxw-del-header-dot {
            width: 7px;
            height: 7px;
            background: #2C5D8F;
            border-radius: 50%;
            animation: hxwDelDotPulse 2s ease-in-out infinite;
        }
        
        @keyframes hxwDelDotPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(2); opacity: 0.3; }
        }
        
        .hxw-del-main-title {
            font-size: clamp(32px, 5vw, 50px);
            font-weight: 800;
/*             color: #1C3447; */
			color:#FFF;
            letter-spacing: -1px;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hxw-del-title-highlight {
            position: relative;
            display: inline-block;
/*             background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
			color:#fff;
        }
        
        .hxw-del-title-highlight::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #2C5D8F, transparent);
            border-radius: 2px;
        }
        
        .hxw-del-subtitle {
/*             color: #4F6D8A; */
			color:#fff;
            font-size: 17px;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Pricing cards grid */
        .hxw-del-cards-row {
            margin-bottom: 50px;
        }
        
        /* Pricing card */
        .hxw-pricing-panel {
            background: white;
            border-radius: 28px;
            padding: 35px 28px;
            height: 100%;
            display: flex;
			justify-content:center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(44, 93, 143, 0.08);
            box-shadow: 0 10px 40px rgba(28, 52, 71, 0.06);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .hxw-pricing-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2C5D8F, #3e78b2, #7fafb4);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .hxw-pricing-panel:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(28, 52, 71, 0.18);
            border-color: rgba(44, 93, 143, 0.2);
        }
        
        .hxw-pricing-panel:hover::before {
            transform: scaleX(1);
        }
        
        /* Featured card */
        .hxw-pricing-panel--highlighted {
/*             background: linear-gradient(180deg, #000 0%, #1C3447 100%); */
			background:#0F3D5C;
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(28, 52, 71, 0.35);
        }
        
        .hxw-pricing-panel--highlighted:hover {
            box-shadow: 0 35px 70px rgba(28, 52, 71, 0.5);
        }
        
        .hxw-pricing-panel--highlighted::before {
            background: linear-gradient(90deg, #3e78b2, #7fafb4, #2C5D8F);
        }
        
        /* Popular badge */
        .hxw-panel-popular-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
            animation: hxwDelBadgeGlow 3s ease-in-out infinite;
            box-shadow: 0 5px 20px rgba(44, 93, 143, 0.4);
        }
        
        @keyframes hxwDelBadgeGlow {
            0%, 100% { box-shadow: 0 5px 20px rgba(44, 93, 143, 0.4); }
            50% { box-shadow: 0 8px 30px rgba(44, 93, 143, 0.7); }
        }
        
        /* Icon container */
        .hxw-panel-icon-wrap {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(44, 93, 143, 0.08), rgba(62, 120, 178, 0.06));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-icon-wrap {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .hxw-pricing-panel:hover .hxw-panel-icon-wrap {
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            transform: rotate(-5deg) scale(1.1);
        }
        
        .hxw-panel-icon-wrap svg {
            width: 30px;
            height: 30px;
            color: #2C5D8F;
            transition: all 0.5s ease;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-icon-wrap svg {
            color: #f4f2ee;
        }
        
        .hxw-pricing-panel:hover .hxw-panel-icon-wrap svg {
            color: #f4f2ee;
            transform: scale(1.1);
        }
        
        /* Card label */
        .hxw-panel-label-title {
            font-size: 22px;
            font-weight: 700;
            color: #1C3447;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-label-title {
            color: #f4f2ee;
        }
        
        /* Price */
        .hxw-panel-price-block {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .hxw-panel-price-amount {
            font-size: 38px;
            font-weight: 800;
            color: #1C3447;
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 5px;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-price-amount {
            color: #f4f2ee;
        }
        
        .hxw-panel-price-period {
            font-size: 14px;
            font-weight: 500;
            color: #4F6D8A;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-price-period {
            color: #a9c6da;
        }
        
        /* Description */
        .hxw-panel-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #4F6D8A;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-desc {
            color: #a9c6da;
        }
        
        /* Feature list */
        .hxw-panel-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }
        
        .hxw-panel-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            font-size: 14px;
            color: #1C3447;
            border-bottom: 1px solid rgba(44, 93, 143, 0.06);
            transition: all 0.3s ease;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-feature-item {
            color: #dce8f3;
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }
        
        .hxw-panel-feature-item:hover {
            padding-left: 8px;
        }
        
        .hxw-panel-feature-icon {
            color: #2C5D8F;
            font-size: 12px;
            margin-top: 3px;
            transition: all 0.3s ease;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-feature-icon {
            color: #7fafb4;
        }
        
        .hxw-panel-feature-label {
            font-weight: 700;
            font-size: 13px;
            display: block;
            margin-top: 8px;
            color: #2C5D8F;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-feature-label {
            color: #7fafb4;
        }
        
        /* CTA Button */
        .hxw-panel-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 25px;
            background: #1C3447;
            color: #f4f2ee;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
        }
        
        .hxw-panel-action-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }
        
        .hxw-panel-action-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(28, 52, 71, 0.4);
            color: white;
        }
        
        .hxw-panel-action-btn:hover::after {
            width: 400px;
            height: 400px;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-action-btn {
            background: #f4f2ee;
            color: #1C3447;
        }
        
        .hxw-pricing-panel--highlighted .hxw-panel-action-btn:hover {
            background: white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .hxw-panel-btn-arrow {
            transition: transform 0.3s ease;
        }
        
        .hxw-panel-action-btn:hover .hxw-panel-btn-arrow {
            transform: translateX(5px);
        }
        
        /* Bottom CTA */
        .hxw-del-bottom-cta-wrap {
            text-align: center;
        }
        
        .hxw-del-bottom-btn {
            display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: #fff;
  color: #1C3447;
  border: 2px solid #1C3447;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  min-width: 280px; /* button ko bada karega */
        }
        
        .hxw-del-bottom-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
/*             background: #1C3447; */
			background:#2C5D8F;
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .hxw-del-bottom-btn:hover {
            color: #f4f2ee;
            border-color: #1C3447;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(28, 52, 71, 0.25);
        }
        
        .hxw-del-bottom-btn:hover::before {
            left: 0;
        }
        
        .hxw-del-bottom-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }
        
        .hxw-del-bottom-btn:hover svg {
            transform: translateX(6px);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hxw-pricing-panel {
                padding: 28px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .hxw-delivery-section {
                padding: 60px 0 80px;
            }
            
            .hxw-del-main-title {
                font-size: 28px;
            }
            
            .hxw-pricing-panel {
                padding: 25px 18px;
                border-radius: 22px;
            }
            
            .hxw-panel-price-amount {
                font-size: 30px;
            }
        }


        /* ============ HAYWOODX WHY SECTION ============ */
        .hxw-why-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(160deg, #faf8f5 0%, #f4f2ee 30%, #eef4f7 70%, #f4f2ee 100%);
            overflow: hidden;
            isolation: isolate;
        }
        
        /* Animated background mesh */
        .hxw-why-bg-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(44, 93, 143, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(28, 52, 71, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(62, 120, 178, 0.04) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }
        
        /* Floating geometric shapes */
        .hxw-why-float-shape {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        
        .hxw-why-shape-circle {
            width: 300px;
            height: 300px;
            border: 2px solid rgba(44, 93, 143, 0.06);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: hxwWhyShapeRotate 25s linear infinite;
        }
        
        .hxw-why-shape-square {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(28, 52, 71, 0.04);
            bottom: 15%;
            left: 3%;
            transform: rotate(45deg);
            animation: hxwWhyShapeRotate 20s linear infinite reverse;
        }
        
        .hxw-why-shape-dots {
            width: 250px;
            height: 250px;
            background-image: radial-gradient(rgba(44, 93, 143, 0.08) 2px, transparent 2px);
            background-size: 25px 25px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            animation: hxwWhyShapePulse 8s ease-in-out infinite;
        }
        
        @keyframes hxwWhyShapeRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes hxwWhyShapePulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
        }
        
        /* Decorative lines */
        .hxw-why-accent-line {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        
        .hxw-why-line-diagonal {
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(44, 93, 143, 0.15), transparent);
            top: 25%;
            right: 15%;
            transform: rotate(-30deg);
            animation: hxwWhyLineFloat 10s ease-in-out infinite;
        }
        
        .hxw-why-line-vertical {
            width: 1px;
            height: 250px;
            background: linear-gradient(180deg, transparent, rgba(44, 93, 143, 0.1), transparent);
            bottom: 20%;
            left: 10%;
            animation: hxwWhyLineFloat 12s ease-in-out infinite reverse;
        }
        
        @keyframes hxwWhyLineFloat {
            0%, 100% { transform: translate(0, 0) rotate(-30deg); opacity: 0.3; }
            50% { transform: translate(40px, -25px) rotate(-30deg); opacity: 0.8; }
        }
        
        /* Content wrapper */
        .hxw-why-content-wrapper {
            position: relative;
            z-index: 2;
        }
        
        /* Left content */
        .hxw-why-left-block {
            position: relative;
        }
        
        /* Section badge */
        .hxw-why-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
/*             background: white;
            color: #2C5D8F;
            padding: 10px 24px;
            border-radius: 50px; */
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 30px;
/*             box-shadow: 0 8px 25px rgba(44, 93, 143, 0.1);
            border: 1px solid rgba(44, 93, 143, 0.1); */
        }
        
        .hxw-why-badge-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
            animation: hxwWhyBadgePulse 2s ease-in-out infinite;
        }
        
        @keyframes hxwWhyBadgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(44, 93, 143, 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(44, 93, 143, 0); }
        }
        
        /* Main heading */
        .hxw-why-main-heading {
            font-size: clamp(32px, 5vw, 50px);
            font-weight: 800;
            color: #1C3447;
            line-height: 1.15;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }
        
        .hxw-why-heading-word {
            position: relative;
            display: inline-block;
        }
        
        .hxw-why-heading-highlight {
            background: linear-gradient(135deg, #2C5D8F 0%, #3e78b2 50%, #2C5D8F 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: hxwWhyGradientText 4s ease infinite;
            position: relative;
            display: inline-block;
        }
        
        .hxw-why-heading-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(44, 93, 143, 0.1);
            border-radius: 5px;
            z-index: -1;
            animation: hxwWhyUnderlineWave 3s ease-in-out infinite;
        }
        
        @keyframes hxwWhyGradientText {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }
        
        @keyframes hxwWhyUnderlineWave {
            0%, 100% { transform: scaleX(1); }
            50% { transform: scaleX(0.9); }
        }
        
        /* Feature list */
        .hxw-why-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .hxw-why-feature-row {
            display: flex;
            align-items: flex-start;
            gap: 20px;
/*             padding: 20px 24px; */
            margin-bottom: 12px;
/*             background: white;
            border-radius: 20px;
            border: 1px solid rgba(44, 93, 143, 0.06); */
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
/*             box-shadow: 0 5px 20px rgba(28, 52, 71, 0.03); */
        }
        
/*         .hxw-why-feature-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #2C5D8F, #3e78b2, #7fafb4);
            border-radius: 0 5px 5px 0;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        } */
        
/*         .hxw-why-feature-row:hover {
            border-color: rgba(44, 93, 143, 0.2);
            box-shadow: 0 15px 40px rgba(28, 52, 71, 0.1);
            transform: translateX(10px);
        } */
/*         
        .hxw-why-feature-row:hover::before {
            transform: scaleY(1);
        } */
        
        .hxw-why-feature-icon-box {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: linear-gradient(135deg, rgba(44, 93, 143, 0.08), rgba(62, 120, 178, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #2C5D8F;
            transition: all 0.4s ease;
        }
        
/*         .hxw-why-feature-row:hover .hxw-why-feature-icon-box {
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            color: #f4f2ee;
            transform: rotate(-8deg) scale(1.1);
            box-shadow: 0 10px 25px rgba(44, 93, 143, 0.3);
        } */
        
        .hxw-why-feature-text-block {
            flex: 1;
        }
        
        .hxw-why-feature-title {
            font-weight: 700;
            font-size: 16px;
            color: #1C3447;
            margin-bottom: 5px;
        }
        
        .hxw-why-feature-desc {
            font-size: 14px;
            color: #4F6D8A;
            line-height: 1.6;
        }
        
        /* Description paragraphs */
        .hxw-why-description {
            font-size: 17px;
            line-height: 1.9;
            color: #4F6D8A;
            margin-bottom: 18px;
            font-weight: 400;
        }
        
        .hxw-why-description:last-of-type {
            margin-bottom: 30px;
            padding: 18px 22px;
            background: rgba(44, 93, 143, 0.04);
            border-radius: 16px;
            border-left: 4px solid #2C5D8F;
            font-weight: 500;
            color: #1C3447;
        }
        
        /* CTA Button */
        .hxw-why-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: linear-gradient(135deg, #1C3447 0%, #0F3D5C 100%);
            color: #f4f2ee;
            padding: 17px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(28, 52, 71, 0.3);
            letter-spacing: 0.5px;
        }
        
        .hxw-why-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
        }
        
        .hxw-why-cta-button:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(28, 52, 71, 0.45);
            color: white;
        }
        
        .hxw-why-cta-button:hover::before {
            left: 100%;
        }
        
        .hxw-why-btn-icon {
            transition: transform 0.4s ease;
            width: 20px;
            height: 20px;
        }
        
        .hxw-why-cta-button:hover .hxw-why-btn-icon {
            transform: translateX(8px);
        }
        
        /* Right image area */
        .hxw-why-image-container {
            position: relative;
            display: inline-block;
        }
        
        /* Image frame */
        .hxw-why-image-frame {
            position: relative;
            display: inline-block;
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 0 35px 70px rgba(28, 52, 71, 0.2);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .hxw-why-image-frame:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 45px 90px rgba(28, 52, 71, 0.35);
        }
        
        .hxw-why-image-frame img {
            display: block;
            width: 100%;
            max-width: 520px;
            height: auto;
            border-radius: 35px;
            transition: transform 0.8s ease;
        }
        
        .hxw-why-image-frame:hover img {
            transform: scale(1.05);
        }
        
        /* Image glow */
        .hxw-why-image-glow {
            position: absolute;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(44, 93, 143, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            animation: hxwWhyGlowBreathe 5s ease-in-out infinite;
        }
        
        @keyframes hxwWhyGlowBreathe {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
        }
        
        /* Floating stat cards */
        .hxw-why-stat-float {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 20px 25px;
            box-shadow: 0 20px 45px rgba(28, 52, 71, 0.15);
            z-index: 2;
            animation: hxwWhyStatBounce 6s ease-in-out infinite;
        }
        
        .hxw-why-stat-float--years {
            top: -25px;
            left: -35px;
            animation-delay: 0s;
        }
        
        .hxw-why-stat-float--clients {
            bottom: -25px;
            right: -35px;
            animation-delay: -3s;
        }
        
        @keyframes hxwWhyStatBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-18px); }
        }
        
        .hxw-why-stat-number {
            font-size: 32px;
            font-weight: 800;
            color: #2C5D8F;
            line-height: 1;
        }
        
        .hxw-why-stat-label {
            font-size: 12px;
            color: #4F6D8A;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-top: 5px;
        }
        
        .hxw-why-stat-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #2C5D8F, #3e78b2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hxw-why-section {
                padding: 80px 0;
            }
            
            .hxw-why-main-heading {
                font-size: 30px;
            }
            
            .hxw-why-feature-row {
                padding: 16px 18px;
            }
            
            .hxw-why-stat-float {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hxw-why-section {
                padding: 60px 0;
            }
            
            .hxw-why-cta-button {
                padding: 14px 30px;
                font-size: 14px;
            }
            
            .hxw-why-image-frame {
                border-radius: 25px;
            }
            
            .hxw-why-image-frame img {
                border-radius: 25px;
                max-width: 100%;
            }
        }
    
/* ===== INJECTED PREMIUM STYLES ===== */
/* ===== SUPER PREMIUM ENHANCEMENTS ===== */

/* Custom Cursor */
.cursor-dot {
  width: 8px; height: 8px;
  background: #2C5D8F;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(44,93,143,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
body:hover .cursor-ring { width: 36px; }
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 56px; height: 56px; border-color: #2C5D8F; }

/* ===== MAGNETIC HOVER NUMBERS ===== */
.metric-number-word {
  transition: letter-spacing 0.4s ease;
}

/* ===== PREMIUM SECTION DIVIDERS ===== */
.premium-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(44,93,143,0.3), transparent);
  margin: 0;
  position: relative;
  overflow: visible;
}
.premium-divider::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f4f2ee;
  padding: 0 20px;
  color: #2C5D8F;
  font-size: 16px;
  animation: dividerSpin 8s linear infinite;
}
@keyframes dividerSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== SCROLLING MARQUEE BAR ===== */
.premium-marquee-bar {
  background: #1C3447;
  padding: 14px 0;
  margin-top:40px;
  overflow: hidden;
  position: relative;
}
.premium-marquee-bar::before, .premium-marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}
.premium-marquee-bar::before { left: 0; background: linear-gradient(90deg, #1C3447, transparent); }
.premium-marquee-bar::after { right: 0; background: linear-gradient(-90deg, #1C3447, transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a9c6da;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-item .marquee-dot {
  width: 6px; height: 6px;
  background: #2C5D8F;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== REVEAL TEXT LINES ===== */
.reveal-line-mask {
  overflow: hidden;
  display: block;
}
.reveal-line-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.reveal-line-inner.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* ===== PREMIUM COUNTER ENHANCEMENT ===== */
.metric-number-word {
  background: linear-gradient(135deg, #1C3447 0%, #2C5D8F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* ===== SECTION PROGRESS INDICATOR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2C5D8F, #7fafb4, #3e78b2);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(44,93,143,0.5);
}

/* ===== ANIMATED GRADIENT TEXT (enhanced) ===== */
.super-gradient-text {
  background: linear-gradient(270deg, #2C5D8F, #3e78b2, #7fafb4, #1C3447, #2C5D8F);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: superGradient 6s ease infinite;
}
@keyframes superGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== FLOATING DOTS TRAIL ===== */
@keyframes floatDot {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

/* ===== CARD TILT EFFECT (3D) ===== */
.tilt-card {
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== GLOW PULSE ON HOVER ===== */
.glow-on-hover {
  transition: box-shadow 0.4s ease;
}
.glow-on-hover:hover {
  box-shadow: 0 0 40px rgba(44,93,143,0.25), 0 20px 50px rgba(44,93,143,0.15) !important;
}

/* ===== STAGGER FADE-IN FOR SECTIONS ===== */
.stagger-fade-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-fade-child.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PARALLAX WRAPPER ===== */
.parallax-slow { will-change: transform; }
.parallax-medium { will-change: transform; }

/* ===== ENHANCED HERO BG - AURORA EFFECT ===== */
.aurora-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(44,93,143,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(127,175,180,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(62,120,178,0.06) 0%, transparent 50%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 0.7; transform: scale(1.02) rotate(-1deg); }
}

/* ===== SECTION ENTRANCE LINES ===== */
.section-enter-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C5D8F, transparent);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 20px;
}
.section-enter-line.line-visible {
  width: 80px;
}

/* ===== HOVER SHINE EFFECT ===== */
.shine-on-hover {
  position: relative;
  overflow: hidden;
}
.shine-on-hover::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.shine-on-hover:hover::after {
  left: 125%;
}

/* ===== CARD HOVER - BORDER ANIMATION ===== */
.animated-border {
  position: relative;
}
.animated-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #2C5D8F, #7fafb4, #2C5D8F);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderSlide 3s linear infinite;
}
.animated-border:hover::before {
  opacity: 1;
}
@keyframes borderSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== COUNTER NUMBER FLASH ===== */
@keyframes numberFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* ===== HERO STAT CARDS ENHANCED ===== */
.metric-word-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease !important;
}
.metric-word-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(44,93,143,0.2) !important;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.wave-divider svg {
  display: block;
}

/* ===== SECTION LABEL BADGE ===== */
.premium-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(44,93,143,0.08), rgba(62,120,178,0.05));
  border: 1px solid rgba(44,93,143,0.15);
  color: #2C5D8F;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.premium-section-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(44,93,143,0.06), transparent);
  animation: badgePulse 3s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.premium-section-badge .badge-pulse-dot {
  width: 7px; height: 7px;
  background: #2C5D8F;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0.4; }
}

/* ===== TEXT SCRAMBLE ===== */
.scramble-text { display: inline-block; }

/* ===== SECTION FADE + SCALE ENTRANCE ===== */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
[data-scroll-reveal].sr-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-scroll-reveal][data-sr-delay="100"] { transition-delay: 0.1s; }
[data-scroll-reveal][data-sr-delay="200"] { transition-delay: 0.2s; }
[data-scroll-reveal][data-sr-delay="300"] { transition-delay: 0.3s; }
[data-scroll-reveal][data-sr-delay="400"] { transition-delay: 0.4s; }
[data-scroll-reveal][data-sr-delay="500"] { transition-delay: 0.5s; }
[data-scroll-reveal][data-sr-delay="600"] { transition-delay: 0.6s; }

/* ===== PARALLAX HERO BG ===== */
.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background: inherit;
  will-change: transform;
}

/* ===== MOBILE TOUCH GLOW ===== */
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== ANIMATED HIGHLIGHT UNDERLINE ===== */
.animated-underline {
  position: relative;
  display: inline-block;
}
.animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C5D8F, #7fafb4);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.animated-underline:hover::after,
.animated-underline.line-in::after {
  width: 100%;
}


/* ==========================
   BOOK A CALL POPUP
========================== */

.book-call-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.book-call-popup.active{
    display:flex;
}

.popup-box{
    width:100%;
    max-width:800px;
    max-height:90vh;
    overflow-y:auto;
    background:linear-gradient(135deg,#1C3447,#0c2a40);
    border-radius:24px;
    padding:35px;
    position:relative;
    box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.08);
}

.popup-header{
    text-align:center;
    margin-bottom:30px;
}

.popup-header h2{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.popup-header p{
    color:rgba(255,255,255,.75);
    font-size:16px;
    margin:0;
}

.popup-form input,
.popup-form select{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#fff;
    color:#000;
    padding:0 18px;
    font-size:15px;
    transition:.3s ease;
}

.popup-form input:focus,
.popup-form select:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(255,255,255,.15);
}

.popup-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#fff;
    color:#1C3447;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    transition:.35s ease;
}

.popup-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,255,255,.15);
}

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:24px;
    line-height:1;
    cursor:pointer;
    transition:.3s ease;
}

.popup-close:hover{
    background:#fff;
    color:#1C3447;
}

.popup-box::-webkit-scrollbar{
    width:6px;
}

.popup-box::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.3);
    border-radius:20px;
}

@media(max-width:767px){

    .popup-box{
        padding:25px;
        max-height:95vh;
    }

    .popup-header h2{
        font-size:28px;
    }

    .popup-header p{
        font-size:14px;
    }
}

.revenue-title{
	padding: 30px 0px 0px;
}

.revenue-title h3{
	color:#fff;
}

.what-do-sec{
	padding: 80px 0px;
/* 	background: linear-gradient(140deg, rgb(0, 0, 0) 17%, rgb(12, 42, 64) 100%); */
	background:#1c3447;
	position:relative;
}

.what-do-sec:before{
	content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(44, 93, 143, 0.15);
    border-radius: 50%;
}

.what-details h2 {
	color:#fff;
}

.what-details p {
	color:#fff;
}
.what-details ul li{
	color:#fff;
} 

.what-details ul{
	margin-bottom:20px;
}

.what-details ul li{
	padding: 0px !important;
	margin-bottom:16px;
}

.what-details ul li i{
	background:#fff;
	color:#1c3447;
	    width: 25px;
    height: 25px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-details .hxw-action-btn:hover{
	background:#fff;
	color:#1c3447;
}

.what-img{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.what-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(28,52,71,.12);

    box-shadow:
    0 20px 50px rgba(28,52,71,.18);

    transition:
    transform .6s cubic-bezier(.22,.61,.36,1),
    box-shadow .4s ease;
}

.what-img:hover img{
    transform: scale(1.04);
    box-shadow:
    0 30px 70px rgba(28,52,71,.25);
}

.hwx-feature-list li{
	color:#1c3447;
}

/* .marquee-item img {
    width: 100px;
    height:80px;
    object-fit: contain;
}

.marquee-item img {
    filter: brightness(0) invert(1);
}
.marquee-item {
 
    width: 220px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 0 15px;
    transition: .4s;
    justify-content: center;
} */
 
@media(max-width:767px){
	.word-reveal-headline .reveal-line{
		font-size:48px;
	}
	.scroll-word-indicator{
		right:0px !important;
		left:auto;
		bottom:20px !important;
	}
	
	.what-do-sec .row{
		row-gap:40px;
	}
	 .marquee-track {
        animation: marqueeScroll 30s linear infinite !important;
        animation-duration: 30s !important;
        animation-iteration-count: infinite !important;
    }
	.hero-content-word{
		padding:0px;
	}
}


.hero-video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:0;
}

.hwx-service-block h3{
	color:#fff;
}


/* Who We Help Css  */
/* ==========================
   WHO WE HELP SECTION
========================== */

.hx-help-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.hx-help-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(44,93,143,0.05);
    border-radius:50%;
    top:-250px;
    right:-150px;
}

.hx-help-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#2c5d8f;
    margin-bottom:15px;
}

.hx-help-title{
    font-size:48px;
    font-weight:800;
    color:#1c3447;
    margin-bottom:20px;
}

.hx-help-desc{
    font-size:18px;
    color:#0f3d5c;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

.hx-help-card{
    height:100%;
    background:#fff;
    border:1px solid rgba(28,52,71,0.08);
    border-radius:24px;
    padding:40px 30px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(28,52,71,0.06);
}

.hx-help-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1c3447,#2c5d8f);
}

.hx-help-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(28,52,71,0.12);
}

.hx-help-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#1c3447,#2c5d8f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.hx-help-card h3{
    font-size:30px;
    font-weight:700;
    color:#1c3447;
    margin-bottom:25px;
}

.hx-help-tags{
   padding-left:18px;
}

.hx-help-tags li{
	font-weight:500;
	margin-bottom:10px;
}

.hx-help-tags span{
    background:#f7f9fb;
    color:#0f3d5c;
    padding:12px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    border:1px solid rgba(44,93,143,0.12);
    transition:.3s;
}

.hx-help-tags span:hover{
    background:#2c5d8f;
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .hx-help-section{
        padding:80px 0;
    }

    .hx-help-title{
        font-size:38px;
    }
}

@media(max-width:767px){

    .hx-help-title{
        font-size:30px;
    }

    .hx-help-desc{
        font-size:16px;
    }

    .hx-help-card{
        padding:30px 20px;
    }

    .hx-help-card h3{
        font-size:24px;
    }
}

/* How we work css  */
/*=========================
HOW WE WORK
=========================*/

.hx-process-section{
    padding:100px 0;
    background:#1c3447;
    position:relative;
    overflow:hidden;
}

.hx-process-section::before{
    content:"";
    position:absolute;
    top:-250px;
    right:-150px;
    width:500px;
    height:500px;
    background:rgba(44,93,143,0.15);
    border-radius:50%;
}

.hx-process-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hx-process-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.hx-process-desc{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
}

.hx-process-timeline{
    position:relative;
    max-width:900px;
    margin:70px auto 0;
}

.hx-process-timeline::before{
    content:"";
    position:absolute;
    left:40px;
    top:0;
    bottom:0;
    width:3px;
    background:linear-gradient(
        to bottom,
        #2c5d8f,
        #0f3d5c,
        #2c5d8f
    );
}

.hx-process-item{
    position:relative;
    padding-left:120px;
    margin-bottom:45px;
}

.hx-process-item:last-child{
    margin-bottom:0;
}

.hx-process-icon{
    position:absolute;
    left:0;
    top:0;
    width:80px;
    height:80px;
    background:linear-gradient(
        135deg,
        #2c5d8f,
        #0f3d5c
    );
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    border:4px solid #fff;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.hx-process-content{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.hx-process-content:hover{
    transform:translateY(-8px);
}

.hx-process-step{
    display:inline-block;
    color:#2c5d8f;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.hx-process-content h3{
    color:#1c3447;
    font-size:28px;
    font-weight:800;
    margin-bottom:15px;
}

.hx-process-content p{
    color:#0f3d5c;
    line-height:1.8;
    margin:0;
}

.step-btn {
    text-align: center;
    margin-top: 60px;
}
/* Responsive */

@media(max-width:991px){

    .hx-process-title{
        font-size:38px;
    }
}

@media(max-width:767px){

    .hx-process-section{
        padding:80px 0;
    }

    .hx-process-title{
        font-size:30px;
    }

    .hx-process-timeline::before{
        left:30px;
    }

    .hx-process-item{
        padding-left:85px;
    }

    .hx-process-icon{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .hx-process-content{
        padding:25px;
    }

    .hx-process-content h3{
        font-size:22px;
    }
}

@media (max-width: 991px){
    .hx-process-item[data-aos]{
        transform:none !important;
        opacity:1 !important;
    }
}


/*=========================
WHY HAYWOODX
=========================*/

.hx-why-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.hx-why-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hx-why-title{
    font-size:48px;
    font-weight:800;
    color:#1c3447;
    margin-bottom:20px;
}

.hx-why-desc{
    font-size:18px;
    color:#0f3d5c;
    line-height:1.8;
}

.hx-why-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    border:1px solid rgba(44,93,143,.12);
    transition:.4s;
    box-shadow:0 15px 35px rgba(28,52,71,.06);
}

.hx-why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(28,52,71,.12);
}

.hx-why-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:linear-gradient(135deg,#1c3447,#2c5d8f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.hx-why-card h3{
    font-size:24px;
    font-weight:700;
    color:#1c3447;
    margin-bottom:15px;
}

.hx-why-card p{
    color:#0f3d5c;
    line-height:1.8;
    margin:0;
}

.hx-why-statement{
    background:linear-gradient(135deg,#1c3447,#0f3d5c);
    padding:60px;
    border-radius:30px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hx-why-quote-icon{
    font-size:40px;
    color:#2c5d8f;
    margin-bottom:20px;
}

.hx-why-statement p{
    font-size:24px;
    line-height:1.8;
    margin:0;
    font-weight:500;
}

@media(max-width:991px){

    .hx-why-title{
        font-size:38px;
    }

    .hx-why-statement{
        padding:40px 30px;
    }

    .hx-why-statement p{
        font-size:20px;
    }
}

@media(max-width:767px){

    .hx-why-section{
        padding:80px 0;
    }

    .hx-why-title{
        font-size:30px;
    }

    .hx-why-desc{
        font-size:16px;
    }

    .hx-why-card{
        padding:25px;
    }

    .hx-why-card h3{
        font-size:22px;
    }

    .hx-why-statement p{
        font-size:18px;
    }
}

/*=========================
CLIENT TESTIMONIALS
=========================*/

.hx-testimonial-section{
    padding:100px 0;
    background:#1c3447;
    overflow:hidden;
}

.hx-testimonial-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hx-testimonial-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.hx-testimonial-desc{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
}

.hx-testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.4s;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.hx-testimonial-card:hover{
    transform:translateY(-10px);
}

.hx-testimonial-logo{
    height:60px;
    margin-bottom:25px;
}

.hx-testimonial-logo img{
    max-height:60px;
    max-width:180px;
    width:auto;
}

.hx-testimonial-stars{
    color:#2c5d8f;
    margin-bottom:20px;
}

.hx-testimonial-quote{
    font-size:17px;
    line-height:1.9;
    color:#0f3d5c;
    margin-bottom:25px;
    font-style:italic;
}

.hx-testimonial-author h4{
    font-size:18px;
    color:#1c3447;
    font-weight:700;
    margin-bottom:5px;
}

.hx-testimonial-author span{
    color:#2c5d8f;
    font-size:14px;
    font-weight:600;
}

.hx-testimonial-stats{
    background:#fff;
    border-radius:30px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.hx-stat-box{
    text-align:center;
}

.hx-stat-box h3{
    font-size:22px;
    color:#1c3447;
    margin-bottom:10px;
    font-weight:700;
}

.hx-stat-box p{
    color:#0f3d5c;
    margin:0;
    line-height:1.7;
}

@media(max-width:991px){

    .hx-testimonial-title{
        font-size:38px;
    }

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

@media(max-width:767px){

    .hx-testimonial-section{
        padding:80px 0;
    }

    .hx-testimonial-title{
        font-size:30px;
    }

    .hx-testimonial-stats{
        grid-template-columns:1fr;
        padding:30px;
    }

    .hx-testimonial-card{
        padding:25px;
    }
}

/* founder section csss  */
/* =========================
MEET THE FOUNDER
========================= */

.hx-founder-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.hx-founder-section::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(44,93,143,.05);
}

.hx-founder-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hx-founder-title{
    font-size:56px;
    font-weight:800;
    color:#1c3447;
    line-height:1.2;
    margin-bottom:70px;
}

.hx-founder-image-wrap{
    position:relative;
}

.hx-founder-image{
    width:100%;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(28,52,71,.15);
}

.hx-founder-floating-card{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#1c3447;
    color:#fff;
    padding:18px 25px;
    border-radius:18px;
    font-weight:700;
    z-index:2;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.hx-founder-content p{
    font-size:18px;
    line-height:1.9;
    color:#0f3d5c;
    margin-bottom:20px;
}

.hx-founder-highlight{
    background:#fff;
    border:1px solid rgba(44,93,143,.15);
    border-radius:20px;
    padding:22px;
    display:flex;
    gap:18px;
    height:100%;
    transition:.4s;
	align-items:center;
}

.hx-founder-highlight:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(28,52,71,.12);
}

.hx-founder-highlight i{
    width:40px;
    height:40px;
    min-width:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1c3447;
    color:#fff;
    border-radius:16px;
    font-size:22px;
}

.hx-founder-highlight h4{
    color:#1c3447;
    font-size:18px;
    font-weight:700;
    margin-bottom:0px;
}

.hx-founder-highlight p{
    margin:0;
    font-size:14px;
    line-height:1.7;
}

.hx-founder-btn-wrap{
    margin-top:30px;
}

.hx-founder-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 35px;
    background:#1c3447;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:.4s;
}

.hx-founder-btn:hover{
    background:#2c5d8f;
    color:#fff;
    transform:translateY(-4px);
}

.hx-founder-btn i{
    transition:.4s;
}

.hx-founder-btn:hover i{
    transform:translateX(6px);
}

/* Responsive */

@media(max-width:991px){

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

    .hx-founder-title{
        font-size:40px;
        margin-bottom:50px;
    }

    .hx-founder-floating-card{
        right:10px;
        bottom:10px;
    }
}

@media(max-width:767px){

    .hx-founder-title{
        font-size:30px;
    }

    .hx-founder-content p{
        font-size:16px;
    }

    .hx-founder-floating-card{
        bottom:0px;
        display:inline-block;
        margin-top:15px;
    }
}


/* =========================
FINAL CTA SECTION
========================= */

.hx-final-cta-section{
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #1c3447 0%,
        #0f3d5c 100%
    );
    position:relative;
    overflow:hidden;
}

.hx-final-cta-section::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.hx-final-cta-section::after{
    content:"";
    position:absolute;
    bottom:-180px;
    right:-180px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(44,93,143,.15);
}

.hx-final-cta-box{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:80px 60px;
    text-align:center;
}

.hx-final-cta-subtitle{
    display:inline-block;
    color:#2c5d8f;
    background:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:25px;
}

.hx-final-cta-title{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hx-final-cta-text{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    max-width:800px;
    margin:0 auto 15px;
}

.hx-final-cta-btn-wrap{
    margin-top:40px;
}

.hx-final-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 38px;
    background:#fff;
    color:#1c3447;
    text-decoration:none;
    border-radius:60px;
    font-size:16px;
    font-weight:700;
    transition:.4s ease;
}

.hx-final-cta-btn:hover{
    background:#2c5d8f;
    color:#fff;
    transform:translateY(-5px);
}

.hx-final-cta-btn i{
    transition:.4s ease;
}

.hx-final-cta-btn:hover i{
    transform:translateX(6px);
}

/* Responsive */

@media (max-width:991px){

    .hx-final-cta-section{
        padding:80px 0;
    }

    .hx-final-cta-box{
        padding:60px 35px;
    }

    .hx-final-cta-title{
        font-size:42px;
    }

    .hx-final-cta-text{
        font-size:18px;
    }
}

@media (max-width:767px){

    .hx-final-cta-box{
        padding:45px 25px;
        border-radius:20px;
    }

    .hx-final-cta-title{
        font-size:32px;
    }

    .hx-final-cta-text{
        font-size:16px;
        line-height:1.8;
    }

    .hx-final-cta-btn{
        width:100%;
        justify-content:center;
    }
}


/* About page css  */
/* =========================
WHO WE ARE
========================= */

.hx-about-who-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.hx-about-who-section::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(44,93,143,.05);
}

.hx-about-who-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#2c5d8f;
    margin-bottom:20px;
}

.hx-about-who-title{
    font-size:60px;
    line-height:1.1;
    font-weight:800;
    color:#1c3447;
    margin-bottom:0;
}

.hx-about-who-content{
    background:#fff;
    border-left:5px solid #2c5d8f;
    padding-left:35px;
}

.hx-about-who-content p{
    font-size:18px;
    line-height:1.9;
    color:#4f6170;
    margin-bottom:20px;
}

.hx-about-who-content p:last-child{
    margin-bottom:0;
}

@media(max-width:991px){

    .hx-about-who-section{
        padding:80px 0;
    }

    .hx-about-who-title{
        font-size:42px;
        margin-bottom:25px;
    }

    .hx-about-who-content{
        padding-left:25px;
    }
}

@media(max-width:767px){

    .hx-about-who-title{
        font-size:34px;
    }

    .hx-about-who-content p{
        font-size:16px;
        line-height:1.8;
    }
	
	.industries-expertise-section{
		padding:80px 0px !important;
	}
	
	section.industries-expertise-section .row.justify-content-center.text-center.mb-5{
		margin-bottom:30px !important;
	}
	
	.industry-summary{
		margin-top:30px !important;
	}
}

/* =========================
MIKE'S BACKGROUND
========================= */

.hx-about-mike-section{
    padding:100px 0;
    background:#1c3447;
    overflow:visible;
}

/* .hx-about-mike-image {
    position: sticky;
    top: 140px;
} */

.hx-about-mike-image{
	display:flex;
	flex-direction:column;
	gap:20px;
}
.hx-about-mike-image img{
    width:100%;
    border-radius:24px;
    display:block;
    border:4px solid #2c5d8f;
}

.hx-about-mike-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    color:#1c3447;
    font-size:14px;
    font-weight:700;
    padding:12px 18px;
    border-radius:50px;
}

.hx-about-mike-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hx-about-mike-title{
    color:#fff;
    font-size:54px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hx-about-mike-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
    margin-bottom:10px;
}

.hx-about-mike-content p:last-child{
    margin-bottom:0;
}

@media(max-width:991px){

    .hx-about-mike-section{
        padding:80px 0;
    }

    .hx-about-mike-image{
        margin-bottom:40px;
    }

    .hx-about-mike-title{
        font-size:42px;
    }
}

@media(max-width:767px){

    .hx-about-mike-title{
        font-size:34px;
    }

    .hx-about-mike-content p{
        font-size:16px;
    }

    .hx-about-mike-badge{
        position:relative;
        bottom:auto;
        left:auto;
        margin-top:20px;
        display:inline-block;
    }
}


/* =========================
WHY HAYWOODX EXISTS
========================= */

.hx-about-purpose-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}
.frust-text {
    color: #4f6170;
}

.hx-about-purpose-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#1c3447;
    margin-bottom:15px;
}

.hx-about-purpose-title{
    font-size:40px;
    line-height:1.1;
    font-weight:800;
    color:#1c3447;
    margin-bottom:25px;
}

.hx-about-purpose-intro{
    font-size:18px;
    line-height:1.9;
    color:#fff;
    max-width:850px;
    margin:0 auto;
}

.hx-about-purpose-cards{
    margin-top:70px;
}

.frsut-rgt-img{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 4px solid #2c5d8f;
    box-shadow:
        0 15px 40px rgba(2, 119, 203, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.08);

    height: 100%;
}

.frsut-rgt-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .6s ease;
}

.frsut-rgt-img:hover img{
    transform: scale(1.05);
}

.hx-about-purpose-card{
    background:#fff;
    height:100%;
    padding:40px 35px;
    border:1px solid rgba(44,93,143,.12);
    border-radius:24px;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.hx-about-purpose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(28,52,71,.08);
}

.hx-about-purpose-number{
    font-size:52px;
    font-weight:800;
    line-height:1;
    color:#2c5d8f;
    opacity:.15;
    margin-bottom:20px;
}

.hx-about-purpose-card h3{
    font-size:24px;
    color:#1c3447;
    margin-bottom:15px;
    font-weight:700;
}

.hx-about-purpose-card p{
    color:#5c6b78;
    line-height:1.8;
    margin-bottom:0;
}

/* .hx-about-purpose-highlight{
    background:#1c3447;
    padding:45px;
    border-radius:24px;
    border-left:5px solid #2c5d8f;
} */

.hx-about-purpose-highlight a{
    background: #1C3447;
    backdrop-filter: blur(12px);
    border: 1.8px solid #2C5D8F;
    color: #fff;
    padding: 18px 24px;
    border-radius: 80px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.hx-about-purpose-highlight a:hover{
	background: #2c5d8f;
    color: #fff;
    transform: translateY(-4px);
}

@media(max-width:991px){

    .hx-about-purpose-section{
        padding:80px 0;
    }

    .hx-about-purpose-title{
        font-size:42px;
    }
}

@media(max-width:767px){

    .hx-about-purpose-title{
        font-size:34px;
    }

    .hx-about-purpose-intro,
    .hx-about-purpose-highlight p{
        font-size:16px;
    }

    .hx-about-purpose-card{
        padding:30px 25px;
    }
}

/* =========================
OUR MISSION
========================= */

.hx-about-mission-section{
    padding:100px 0;
    background:#1c3447;
    text-align:center;
}

.hx-about-mission-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hx-about-mission-title{
    color:#fff;
    font-size:40px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hx-about-mission-text{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    max-width:850px;
    margin:auto;
}

@media(max-width:991px){
    .hx-about-mission-section{
        padding:90px 0;
    }

    .hx-about-mission-title{
        font-size:42px;
    }
}

@media(max-width:767px){
    .hx-about-mission-title{
        font-size:34px;
    }

    .hx-about-mission-text{
        font-size:16px;
    }
}

/* =========================
OUR VALUES
========================= */

.hx-about-values-section{
    padding:100px 0;
    background: #1c3447;
	    position: relative;
    overflow: hidden;
	border-bottom:4px solid #fff;
}

.hx-about-values-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(44, 93, 143, 0.15);
    border-radius: 50%;
}

.hx-about-values-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hx-about-values-title{
    color:#fff;
    font-size:40px;
    font-weight:800;
    line-height:1.15;
}

.hx-about-value-card{
   background: #fff;
    border: 1px solid rgb(31 58 81);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.4s ease;
}

.hx-about-value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(28,52,71,.08);
}

.hx-about-value-icon{
    width:70px;
    height:70px;
    background:#1c3447;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:24px;
}

.hx-about-value-card h3{
    color:#1c3447;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.hx-about-value-card p{
    color:#1c3447;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .hx-about-values-section{
        padding:80px 0;
    }

    .hx-about-values-title{
        font-size:42px;
    }
	
	
}

@media(max-width:767px){

    .hx-about-values-title{
        font-size:34px;
    }
	.what-do-sec:before{
		display:none;
	}
	
	.hx-about-values-section .row.g-4.mt-4{
		margin-top:10px !important;
	}
}

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

.hx-about-cta-section{
    padding:100px 0;
    background:linear-gradient(135deg,#0f3d5c,#1c3447);
    text-align:center;
}

.hx-about-cta-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hx-about-cta-title{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hx-about-cta-text{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
    max-width:750px;
    margin:0 auto 35px;
}

.hx-about-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 36px;
    background:#fff;
    color:#1c3447;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:.4s ease;
}

.hx-about-cta-btn:hover{
    transform:translateY(-4px);
    color:#1c3447;
}

@media(max-width:991px){

    .hx-about-cta-section{
        padding:90px 0;
    }

    .hx-about-cta-title{
        font-size:42px;
    }
}

@media(max-width:767px){

    .hx-about-cta-title{
        font-size:34px;
    }

    .hx-about-cta-text{
        font-size:16px;
    }
}

/* Programmes Page css  */
/* ===================================
SECTION 1 - CHALLENGES BUSINESSES FACE
=================================== */

.hx-program-challenges {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.hx-program-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c5d8f;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.hx-program-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1c3447;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hx-program-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b77;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'SF Pro Display', sans-serif;
}

.hx-challenge-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid rgba(44, 93, 143, 0.12);
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 52, 71, 0.06);
}

.hx-challenge-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #2c5d8f;
    transition: all 0.4s ease;
}

.hx-challenge-card:hover::before {
    width: 100%;
}

.hx-challenge-card:hover {
    transform: translateY(-10px);
    border-color: #2c5d8f;
    box-shadow: 0 20px 50px rgba(28, 52, 71, 0.12);
}

.hx-challenge-card i {
    width: 70px;
    height: 70px;
    background: rgba(44, 93, 143, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #2c5d8f;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.hx-challenge-card:hover i {
    background: #2c5d8f;
    color: #ffffff;
    transform: rotateY(180deg);
}

.hx-challenge-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c3447;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.hx-challenge-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5f6b77;
    font-family: 'SF Pro Display', sans-serif;
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-challenges {
        padding: 80px 0;
    }

    .hx-program-title {
        font-size: 38px;
    }

    .hx-challenge-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {

    .hx-program-challenges {
        padding: 100px 0 60px;
    }
	
	.hx-program-challenges .row.mt-5{
		margin-top:30px !important;
	}

    .hx-program-title {
        font-size: 30px;
    }

    .hx-program-intro {
        font-size: 16px;
    }
	
	h2{
		font-size:32px !important;
	}

    .hx-challenge-card {
        padding: 25px;
    }

    .hx-challenge-card h3 {
        font-size: 22px;
    }

    .hx-challenge-card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===================================
SECTION 2 - TRAINING OPTIONS
=================================== */

.hx-program-training {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c3447 0%, #0f3d5c 100%);
    position: relative;
    overflow: hidden;
}

.hx-program-training::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.hx-program-training::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(44,93,143,0.15);
}

.hx-program-title-light {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hx-program-intro-light {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    font-family: 'SF Pro Display', sans-serif;
}

.hx-training-card {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hx-training-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,93,143,0.15),
        transparent
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.hx-training-card:hover::before {
    opacity: 1;
}

.hx-training-card:hover {
    transform: translateY(-12px);
    border-color: #2c5d8f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hx-training-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2c5d8f;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

.hx-training-card:hover span {
    transform: rotate(360deg);
    background: #ffffff;
    color: #1c3447;
}

.hx-training-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.hx-training-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    font-family: 'SF Pro Display', sans-serif;
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-training {
        padding: 80px 0;
    }

    .hx-program-title-light {
        font-size: 38px;
    }

    .hx-training-card {
        padding: 35px 28px;
    }
}

@media (max-width: 767px) {

    .hx-program-training {
        padding: 70px 0;
    }

    .hx-program-title-light {
        font-size: 30px;
    }

    .hx-program-intro-light {
        font-size: 16px;
    }

    .hx-training-card {
        padding: 28px 24px;
    }

    .hx-training-card h3 {
        font-size: 22px;
    }

    .hx-training-card span {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}


/* ===================================
SECTION 3 - CONSULTANCY OPTIONS
=================================== */

.hx-program-consultancy {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hx-program-consultancy::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(44, 93, 143, 0.05);
}

.hx-program-consultancy::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(15, 61, 92, 0.04);
}

.hx-consultancy-card {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(28, 52, 71, 0.08);
    box-shadow: 0 15px 40px rgba(28, 52, 71, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.hx-consultancy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
        135deg,
        #1c3447,
        #0f3d5c
    );
    transition: all 0.4s ease;
    z-index: 1;
}

.hx-consultancy-card:hover::before {
    height: 100%;
}

.hx-consultancy-card * {
    position: relative;
    z-index: 2;
}

.hx-consultancy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(28, 52, 71, 0.15);
}

.hx-consultancy-card i {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 93, 143, 0.08);
    color: #2c5d8f;
    font-size: 32px;
    transition: all 0.4s ease;
}

.hx-consultancy-card:hover i {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    transform: rotateY(180deg);
}

.hx-consultancy-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c3447;
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.hx-consultancy-card:hover h3 {
    color: #ffffff;
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-consultancy {
        padding: 80px 0;
    }

    .hx-consultancy-card {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {

    .hx-program-consultancy {
        padding: 70px 0;
    }

    .hx-consultancy-card {
        padding: 30px 20px;
    }

    .hx-consultancy-card i {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .hx-consultancy-card h3 {
        font-size: 20px;
    }
}


/* ===================================
SECTION 4 - TYPICAL OUTCOMES
=================================== */

.hx-program-outcomes {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c3447 0%, #0f3d5c 100%);
    position: relative;
    overflow: hidden;
}

.hx-program-outcomes::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.hx-program-outcomes::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(44,93,143,0.15);
}

.hx-outcome-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 30px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hx-outcome-card::before {
    content: "✓";
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 22px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}

.hx-outcome-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,93,143,0.35),
        transparent
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.hx-outcome-card:hover::after {
    opacity: 1;
}

.hx-outcome-card:hover {
    transform: translateY(-10px);
    border-color: #2c5d8f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hx-outcome-card:hover::before {
    color: #ffffff;
    transform: scale(1.3);
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-outcomes {
        padding: 80px 0;
    }

    .hx-outcome-card {
        min-height: 120px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .hx-program-outcomes {
        padding: 70px 0;
    }
     
	.hx-program-outcomes .row.g-4.mt-5{
		margin-top:0px !important;
	}
    .hx-outcome-card {
        min-height: 100px;
        font-size: 18px;
        padding: 25px 20px;
    }
}


/* ===================================
SECTION 5 - CASE STUDIES
=================================== */

.hx-program-cases {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hx-program-cases::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(44, 93, 143, 0.05);
}

.hx-program-cases::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(15, 61, 92, 0.04);
}

.hx-case-card {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(28, 52, 71, 0.08);
    box-shadow: 0 15px 40px rgba(28, 52, 71, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.hx-case-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #2c5d8f,
        #0f3d5c
    );
    transition: all 0.4s ease;
}

.hx-case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,93,143,0.04),
        transparent
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.hx-case-card:hover::after {
    opacity: 1;
}

.hx-case-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(28, 52, 71, 0.15);
}

.hx-case-card:hover::before {
    width: 100%;
    opacity: 0.04;
}

.hx-case-card h3 {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 700;
    color: #1c3447;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.hx-case-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #5f6f82;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'SF Pro Display', sans-serif;
}

.hx-case-card:hover h3 {
    color: #0f3d5c;
}

/* Optional Case Number Badge */

.hx-case-card h3::before {
    content: "CASE";
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c5d8f;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-cases {
        padding: 80px 0;
    }

    .hx-case-card {
        padding: 35px 28px;
    }

    .hx-case-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {

    .hx-program-cases {
        padding: 70px 0;
    }
	
	.hx-program-cases .row.g-4.mt-5{
		margin-top:0px !important;
	}

    .hx-case-card {
        padding: 28px 24px;
    }

    .hx-case-card h3 {
        font-size: 20px;
    }

    .hx-case-card p {
        font-size: 15px;
    }
}

/* ===================================
SECTION 6 - FINAL CTA
=================================== */

.hx-program-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c3447 0%, #0f3d5c 100%);
    position: relative;
    overflow: hidden;
}

.hx-program-cta::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.hx-program-cta::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(44,93,143,0.15);
}

.hx-program-cta .container {
    position: relative;
    z-index: 2;
}

.hx-program-cta-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 20px 0 25px;
    font-family: 'Inter', sans-serif;
}

.hx-program-cta-text {
    max-width: 750px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.9;
    font-family: 'SF Pro Display', sans-serif;
}

.hx-program-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: #1c3447;
    text-decoration: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hx-program-cta-btn i {
    transition: all 0.4s ease;
}

.hx-program-cta-btn:hover {
    background: #2c5d8f;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hx-program-cta-btn:hover i {
    transform: translateX(6px);
}

.hx-program-cta .hx-program-subtitle {
    display: inline-block;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* ==========================
Responsive
========================== */

@media (max-width: 991px) {

    .hx-program-cta {
        padding: 90px 0;
    }

    .hx-program-cta-title {
        font-size: 42px;
    }

    .hx-program-cta-text {
        font-size: 17px;
    }
}

@media (max-width: 767px) {

    .hx-program-cta {
        padding: 70px 0;
    }

    .hx-program-cta-title {
        font-size: 32px;
    }

    .hx-program-cta-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .hx-program-cta-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}


/* system page css  */
/* ===================================
WHY SALES TEAMS FAIL
=================================== */

.hx-system-fail {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hx-system-fail::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(44,93,143,0.05);
}

.hx-system-fail::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(15,61,92,0.04);
}

.hx-system-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    color: #2c5d8f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.hx-system-title {
    font-size: 40px;
    font-weight: 800;
    color: #1c3447;
    margin-bottom: 20px;
/*     font-family: 'Inter', sans-serif; */
}

.hx-system-intro {
    max-width: 760px;
    margin: 0 auto;
    color: #5d6b79;
    font-size: 18px;
    line-height: 1.9;
    font-family: 'SF Pro Display', sans-serif;
}

.hx-fail-card {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(28,52,71,0.08);
    box-shadow: 0 15px 40px rgba(28,52,71,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hx-fail-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,93,143,0.06),
        transparent
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.hx-fail-card:hover::before {
    opacity: 1;
}

.hx-fail-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(28,52,71,0.12);
}

.hx-fail-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg,#1c3447,#0f3d5c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.hx-fail-icon i {
    color: #fff;
    font-size: 28px;
}

.hx-fail-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c3447;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.hx-fail-card p {
    margin: 0;
    color: #5d6b79;
    line-height: 1.8;
    font-size: 16px;
    font-family: 'SF Pro Display', sans-serif;
}

@media(max-width:767px){

    .hx-system-fail{
        padding:120px 0 60px;
    }
	
	.hx-system-fail .row.g-4.mt-5{
		margin-top:10px !important;
	}

    .hx-system-title{
        font-size:32px;
    }

    .hx-system-intro{
        font-size:16px;
    }

    .hx-fail-card{
        padding:28px;
    }

    .hx-fail-card h3{
        font-size:20px;
    }
}

/* ===================================
COMMON MISTAKES
=================================== */

.hx-system-mistakes {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c3447 0%, #0f3d5c 100%);
    position: relative;
    overflow: hidden;
}

.hx-system-mistakes::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.hx-system-mistakes::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(44,93,143,0.15);
}

.hx-system-mistakes .hx-system-subtitle {
    color: #ffffff;
}

.hx-system-mistakes .hx-system-title {
    color: #ffffff;
}

.hx-system-mistakes .hx-system-intro {
    color: rgba(255,255,255,0.75);
}

.hx-mistake-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hx-mistake-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.hx-mistake-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    font-family: 'Inter', sans-serif;
}

.hx-mistake-card h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.hx-mistake-card p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
    font-family: 'SF Pro Display', sans-serif;
}

@media (max-width: 991px) {

    .hx-system-mistakes {
        padding: 80px 0;
    }

    .mt-lg-5 {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {

    .hx-system-mistakes {
        padding: 70px 0;
    }

    .hx-mistake-card {
        padding: 30px;
    }

    .hx-mistake-card h3 {
        font-size: 20px;
    }

    .hx-mistake-number {
        font-size: 36px;
    }
}

/* ===================================
THE HAYWOODX PHILOSOPHY
=================================== */

.hx-philosophy-sec{
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
    position:relative;
}

.hx-philosophy-sec::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(44,93,143,0.05);
}

.hx-philosophy-badge{
    display:inline-block;
    padding:10px 20px;
    background:#eef5fb;
    color:#2c5d8f;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    border-radius:50px;
    margin-bottom:20px;
    font-family:'Inter',sans-serif;
}

.hx-philosophy-title{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#1c3447;
    margin-bottom:25px;
    font-family:'Inter',sans-serif;
}

.hx-philosophy-text{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:20px;
    font-family:'SF Pro Display',sans-serif;
}

.hx-philosophy-card{
    height:100%;
    padding:35px;
    background:#fff;
    border-radius:24px;
    border:1px solid rgba(28,52,71,0.08);
    box-shadow:0 15px 40px rgba(28,52,71,0.06);
    transition:all .4s ease;
}

.hx-philosophy-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(28,52,71,0.12);
}

.hx-philosophy-card i{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#1c3447,#0f3d5c);
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:20px;
}

.hx-philosophy-card h3{
    font-size:22px;
    color:#1c3447;
    margin-bottom:12px;
    font-weight:700;
    font-family:'Inter',sans-serif;
}

.hx-philosophy-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
}

@media(max-width:991px){

    .hx-philosophy-sec{
        padding:80px 0;
    }

    .hx-philosophy-title{
        font-size:40px;
    }
}

@media(max-width:767px){

    .hx-philosophy-sec{
        padding:80px 0;
    }

    .hx-philosophy-title{
        font-size:32px;
    }

    .hx-philosophy-card{
        padding:28px;
    }
}


/* ===================================
THE HAYWOODX FRAMEWORK
=================================== */

.hx-framework-sec {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c3447 0%, #0f3d5c 100%);
    position: relative;
    overflow: hidden;
}

.hx-framework-subtitle {
    display: inline-block;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hx-framework-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
/*     font-family: 'Inter', sans-serif; */
}

.hx-framework-intro {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    line-height: 1.9;
    font-family: 'SF Pro Display', sans-serif;
}

.hx-framework-timeline {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

.hx-framework-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: translateX(-50%);
}

.hx-framework-step {
    width: 50%;
    padding-right: 70px;
    position: relative;
    margin-bottom: 60px;
}

.hx-framework-right {
    margin-left: auto;
    padding-left: 70px;
    padding-right: 0;
}

.hx-framework-number {
    position: absolute;
    right: -28px;
    top: 20px;
    width: 56px;
    height: 56px;
    background: #2c5d8f;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    z-index: 2;
}

.hx-framework-right .hx-framework-number {
    left: -28px;
}

.hx-framework-content {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all .4s ease;
}

.hx-framework-content:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.hx-framework-content h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.hx-framework-content p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
    font-family: 'SF Pro Display', sans-serif;
}

/* ======================
Responsive
====================== */

@media (max-width: 991px) {

    .hx-framework-title {
        font-size: 40px;
    }

    .hx-framework-timeline::before {
        left: 28px;
    }

    .hx-framework-step,
    .hx-framework-right {
        width: 100%;
        margin-left: 0;
        padding-left: 80px;
        padding-right: 0;
    }

    .hx-framework-number,
    .hx-framework-right .hx-framework-number {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {

    .hx-framework-sec {
        padding: 80px 0;
    }

    .hx-framework-title {
        font-size: 32px;
    }

    .hx-framework-intro {
        font-size: 16px;
    }

    .hx-framework-content {
        padding: 25px;
    }

    .hx-framework-content h3 {
        font-size: 22px;
    }
}

/*===================================
WHY IT WORKS
===================================*/

.hx-system-works{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.hx-system-works::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(44,93,143,0.05);
}

.hx-system-works-subtitle{
    display:inline-block;
    color:#2c5d8f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-family:'Inter',sans-serif;
}

.hx-system-works-title{
    font-size:40px;
    color:#1c3447;
    font-weight:800;
    margin-bottom:20px;
/*     font-family:'Inter',sans-serif; */
}

.hx-system-works-intro{
    max-width:760px;
    margin:0 auto;
    color:#64748b;
    line-height:1.9;
    font-size:18px;
    font-family:'SF Pro Display',sans-serif;
}

.hx-works-card{
    height:100%;
    padding:40px 30px;
    background:#fff;
    border-radius:24px;
    border:1px solid rgba(28,52,71,0.08);
    box-shadow:0 15px 40px rgba(28,52,71,0.06);
    text-align:center;
    transition:all .4s ease;
    position:relative;
}

.hx-works-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(28,52,71,0.12);
}

.hx-works-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    background:linear-gradient(135deg,#1c3447,#0f3d5c);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.hx-works-icon i{
    color:#fff;
    font-size:32px;
}

.hx-works-card h3{
    font-size:24px;
    color:#1c3447;
    margin-bottom:15px;
    font-weight:700;
    font-family:'Inter',sans-serif;
}

.hx-works-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
    font-family:'SF Pro Display',sans-serif;
}

@media(max-width:991px){

    .hx-system-works{
        padding:80px 0;
    }

    .hx-system-works-title{
        font-size:40px;
    }
}

@media(max-width:767px){

    .hx-system-works{
        padding:70px 0;
    }
	
	.hx-system-works .row.g-4.mt-5{
		margin-top:20px !important;
	}

    .hx-system-works-title{
        font-size:32px;
    }

    .hx-system-works-intro{
        font-size:16px;
    }

    .hx-works-card{
        padding:30px 25px;
    }

    .hx-works-icon{
        width:75px;
        height:75px;
    }

    .hx-works-icon i{
        font-size:28px;
    }
	
	.hx-about-purpose-cards{
		margin-top:20px !important;
	}
	
	.hx-about-purpose-highlight{
		padding:22px;
	}
}

/*===================================
RESULTS SECTION
===================================*/

.hx-system-results{
    padding:100px 0;
    background:linear-gradient(135deg,#1c3447 0%,#0f3d5c 100%);
    position:relative;
    overflow:hidden;
}

.hx-system-results::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.hx-system-results::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(44,93,143,.25);
}

.hx-results-subtitle{
    display:inline-block;
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-family:'Inter',sans-serif;
}

.hx-results-title{
    font-size:52px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:20px;
    font-family:'Inter',sans-serif;
}

.hx-results-intro{
    max-width:760px;
    margin:0 auto;
    color:rgba(255,255,255,.75);
    line-height:1.9;
    font-size:18px;
    font-family:'SF Pro Display',sans-serif;
}

.hx-result-card{
    position:relative;
    height:100%;
    padding:40px 30px;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    transition:all .4s ease;
    overflow:hidden;
}

.hx-result-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2c5d8f,#ffffff);
    opacity:.6;
}

.hx-result-card:hover{
    transform:translateY(-12px);
    border-color:rgba(255,255,255,.18);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.hx-result-number{
    font-size:60px;
    font-weight:800;
    line-height:1;
    margin-bottom:15px;
    color:rgba(255,255,255,.10);
    font-family:'Inter',sans-serif;
}

.hx-result-card h3{
    font-size:24px;
    color:#ffffff;
    margin-bottom:15px;
    font-weight:700;
    font-family:'Inter',sans-serif;
}

.hx-result-card p{
    margin:0;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:16px;
    font-family:'SF Pro Display',sans-serif;
}

@media(max-width:991px){

    .hx-system-results{
        padding:80px 0;
    }

    .hx-results-title{
        font-size:40px;
    }

    .hx-result-card{
        padding:35px 25px;
    }
}

@media(max-width:767px){

    .hx-system-results{
        padding:70px 0;
    }

    .hx-results-title{
        font-size:32px;
    }

    .hx-results-intro{
        font-size:16px;
    }

    .hx-result-card{
        padding:30px 22px;
    }

    .hx-result-number{
        font-size:48px;
    }

    .hx-result-card h3{
        font-size:21px;
    }
}

/*===================================
FINAL CTA SECTION
===================================*/

.hx-system-cta{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.hx-system-cta::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-220px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(44,93,143,.05);
}

.hx-system-cta::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(44,93,143,.08);
}

.hx-system-cta-box{
    position:relative;
    z-index:2;
    text-align:center;
    padding:80px 60px;
    border-radius:30px;
    background:#133a55;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 80px rgba(28,52,71,.20);
    overflow:hidden;
}

.hx-system-cta-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #2c5d8f,
        #ffffff,
        #2c5d8f
    );
}

.hx-system-cta-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-family:'Inter',sans-serif;
}

.hx-system-cta-title{
    font-size:40px !important;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
}

.hx-system-cta-text{
    max-width:760px;
    margin:0 auto 35px;
    color:#fff;
    font-size:16px;
    line-height:1.9;
}

.hx-system-cta-btn-wrap{
    margin-top:10px;
}

.hx-system-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 36px;
    border-radius:60px;
    background:#ffffff;
    color:#1c3447;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:all .35s ease;
    font-family:'Inter',sans-serif;
    border:2px solid #ffffff;
}

.hx-system-cta-btn i{
    transition:.35s ease;
}

.hx-system-cta-btn:hover{
    background:#2c5d8f;
    border-color:#2c5d8f;
    color:#ffffff;
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(44,93,143,.40);
}

.hx-system-cta-btn:hover i{
    transform:translateX(6px);
}

@media (max-width:991px){

    .hx-system-cta{
        padding:90px 0;
    }

    .hx-system-cta-box{
        padding:60px 35px;
    }

    .hx-system-cta-title{
        font-size:42px;
    }

    .hx-system-cta-text{
        font-size:17px;
    }
}

@media (max-width:768px){

    .hx-system-cta{
        padding:80px 0;
    }

    .hx-system-cta-box{
        padding:45px 25px;
        border-radius:22px;
    }

    .hx-system-cta-title{
        font-size:32px;
    }

    .hx-system-cta-text{
        font-size:16px;
        line-height:1.8;
    }

    .hx-system-cta-btn{
        width:100%;
        justify-content:center;
        padding:16px 24px;
    }
	.page-wrap {
  padding-top: 0px;
}
	
	.hx-about-who-section .row{
		row-gap:20px;
	}
	
	.services-intro-section{
		padding:120px 0px 80px !important;
	}
	
	.sales-training-section{
		padding:80px 0px !important;
	}
	
	.consultancy-section{
		padding:80px 0px !important;
	}
	
	.which-option-section{
		padding:80px 0px !important;
	}
	
	.hx-about-mike-section{
		padding:120px 0px 80px !important;
	}
}


.right-main-vdo{
    width: 100%;
    height: 450px; /* adjust hero height */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.train-video{
    width: 100%;
    height: 100%;
    object-fit: cover; /* important: proper crop */
    display: block;
}

.what-details h2{
    position: relative;
    display: inline-block;
	margin-bottom:40px !important;
}

/* underline / line effect */
.what-details h2::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 3px;
    background: #fff; /* your brand blue */
    border-radius: 10px;
}

/* about page new industry css  */
.industries-expertise-section{
    background:#1c3447;
	padding: 100px 0px;
}

.industry-heading{
    font-size:40px;
    font-weight:800;
    color:#fff;
}

.industry-intro{
    font-size:16px;
    color:#fff;
}

.industry-tile{
    background:#fff;
    border:2px solid rgba(15,61,92,.12);
    border-radius:22px;
    min-height:120px;

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

    padding:25px;
    transition:.4s ease;

    box-shadow:0 10px 30px rgba(28,52,71,.06);
}

.industry-tile span{
    color:#1c3447;
    font-size:20px;
    font-weight:600;
}

.industry-tile:hover{
    transform:translateY(-8px);
    background:#0f3d5c;
    border-color:#0f3d5c;
}

.industry-tile:hover span{
    color:#fff;
}

/* .industry-summary{
    background:#0f3d5c;
    border-radius:24px;
    padding:40px;
} */

.industry-summary p{
    margin:0;
    color:#fff;
    font-size:20px;
    line-height:1.8;
}

@media(max-width:991px){

    .industry-heading{
        font-size:36px;
    }

    .industry-summary{
/*         padding:30px 25px; */
    }

    .industry-summary p{
        font-size:17px;
    }
}   

/* Our services new css  */
.services-intro-section{
    background:#1c3447;
	padding: 100px 0px;
}

.services-intro-box{
/*     background:#fff;
    padding:60px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 15px 50px rgba(28,52,71,.08);
    border:1px solid rgba(15,61,92,.08); */
	color:#fff;
}

.services-intro-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#0f3d5c;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.services-intro-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:25px;
}

.services-intro-box p{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    max-width:850px;
    margin:0 auto 20px;
}

.services-delivery-options{
    display:flex;
    justify-content:start;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.delivery-item{
    background:#fff;
    color:#1c3447;
    padding:15px 25px;
    border-radius:60px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
	transition:all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

.delivery-item i{
    color:#1c3447;
}

.delivery-item:hover{
	background:var(--deep);
	color:#fff;
	transform:translateY(-7px);
}

.delivery-item:hover i{
	color:#fff;
}

@media(max-width:991px){

/*     .services-intro-box{
        padding:40px 25px;
    } */

    .services-intro-box h2{
        font-size:34px;
    }

    .services-intro-box p{
        font-size:16px;
    }
}


/* ************* */
.sales-training-section{
    background:#fff;
	padding: 100px 0px;
}

.sales-training-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#0f3d5c;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.sales-training-content h2{
    font-size:52px;
    line-height:1.15;
    color:#1c3447;
    margin-bottom:25px;
}

.sales-training-content p{
    font-size:18px;
    line-height:1.9;
    color:#5f6b76;
}

.training-benefits-wrap{
    display:grid;
    gap:20px;
}

.benefit-card{
    position:relative;
    background:#fff;
    padding:16px;
    border-radius:24px;
    border:1px solid rgba(15,61,92,.08);
    box-shadow:0 12px 35px rgba(28,52,71,.06);
    transition:.4s ease;
	display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-card:hover{
    transform:translateY(-8px);
}


.benefit-number{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#1c3447;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-card h4{
    margin:0;
    color:#1c3447;
    font-size:22px;
    line-height:1.4;
}

@media(max-width:991px){

    .sales-training-content h2{
        font-size:38px;
    }

    .sales-training-content p{
        font-size:16px;
    }

    .benefit-card{
        padding:22px;
    }

    .benefit-card h4{
        font-size:18px;
    }
}

/* consuktance css  */

.consultancy-section{
    background:#1c3447;
    padding: 100px 0px;
}

.consultancy-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#fff;
    color:#1c3447;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.consultancy-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    margin-bottom:25px;
}

.consultancy-content p{
    color:rgba(255,255,255,.80);
    font-size:18px;
    line-height:1.9;
}

.consultancy-benefits{
    display:grid;
    gap:20px;
}

.consultancy-card{
    background:#0f3d5c;
	color:#fff;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:16px;
    transition:.4s ease;
	display:flex;
	align-items:center;
	gap:20px;
}

.consultancy-card:hover{
    transform:translateY(-8px);
}

.consultancy-card span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;

    color:#1c3447;
    font-weight:700;

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

    margin-bottom:15px;
}

.consultancy-card h4{
    color:#fff;
    font-size:22px;
    line-height:1.5;
    margin:0;
}

@media(max-width:991px){

    .consultancy-content h2{
        font-size:38px;
    }

    .consultancy-content p{
        font-size:16px;
    }

    .consultancy-card h4{
        font-size:18px;
    }
}

/* right section css  */
.which-option-section{
    background:#fff;
    position:relative;
    overflow:hidden;
	padding: 100px 0px;
}

.which-option-box{
    max-width:950px;
    margin:auto;

    background:#fff;
    padding:70px 60px;

    border-radius:32px;

    border:1px solid rgba(15,61,92,.08);

    box-shadow:
        0 20px 60px rgba(28,52,71,.08),
        0 8px 20px rgba(28,52,71,.05);

    position:relative;

    transition:.4s ease;
}

.which-option-box:hover{
    transform:translateY(-8px);

    box-shadow:
        0 30px 80px rgba(28,52,71,.12),
        0 10px 25px rgba(28,52,71,.08);
}

/* top accent */
.which-option-box::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;

    transform:translateX(-50%);

    width:120px;
    height:5px;

    background:#0f3d5c;

    border-radius:0 0 20px 20px;
}

/* .which-option-badge{
    display:inline-flex;
    align-items:center;

    padding:10px 22px;

    border-radius:50px;

    background:#0f3d5c;
    color:#fff;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:25px;
} */

.which-option-box h2{
    font-size:52px;
    line-height:1.15;

    color:#1c3447;

    margin-bottom:30px;

    font-weight:700;
}

.which-option-box p{
    max-width:780px;

    margin:0 auto 22px;

    font-size:20px;
    line-height:1.9;

    color:#5f6b76;
}

.which-option-box p:last-child{
    margin-bottom:0;
}

@media(max-width:991px){

    .which-option-box{
        padding:45px 30px;
    }

    .which-option-box h2{
        font-size:38px;
    }

    .which-option-box p{
        font-size:17px;
        line-height:1.8;
    }

}


.idea-box{
    position:relative;
    padding:40px 50px;

    background:linear-gradient(
        135deg,
        #1c3447,
        #0f3d5c
    );

    border-radius:28px;

    overflow:hidden;

    box-shadow:
        0 20px 50px rgba(28,52,71,.20);
}

/* decorative circle */
.idea-box::before{
    content:"";
    position:absolute;

    width:220px;
    height:220px;

    top:-120px;
    right:-80px;

    border-radius:50%;

    background:rgba(255,255,255,.05);
}

/* decorative circle */
.idea-box::after{
    content:"";
    position:absolute;

    width:120px;
    height:120px;

    bottom:-60px;
    left:-40px;

    border-radius:50%;

    background:rgba(255,255,255,.04);
}

.idea-box p{
    position:relative;
    z-index:2;

    margin:0;

    color:#fff;

    font-size:28px;
    line-height:1.6;
    font-weight:500;

    text-align:center;
}

/* mobile */
@media(max-width:991px){

    .idea-box{
        padding:30px 25px;
    }

    .idea-box p{
        font-size:20px;
    }
}

.popup-form textarea,
.popup-form .wpcf7-textarea{
	width:100%;
    height:200px !important;
    min-height:200px !important;
    padding:15px 20px;
    resize:vertical;
	border-radius:10px;
}

@media(max-width:767px){
    .hero-word-reveal .row {
    row-gap: 40px;
}
.btn-group-word {
    margin-top: 20px;
}
.premium-marquee-bar{
    margin-top:70px;
}
.right-main-vdo{
    height:auto;
}
}


.programe-img{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.programe-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

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

.system-img{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.system-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

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

@media (max-width: 768px){
    .programe-img img{
        height: auto;
    }
	.system-img img{
		height: auto;
	}
	
	.hx-system-fail .row{
		gap:30px;
	}
	
	.right-what-video{
		height:auto !important;
	}
	
	section#consultancy .row{
		row-gap:30px;
	}
	
	.services-intro-section .row{
		row-gap:30px;
	}
	
	    .benefit-card {
        padding: 12px;
        gap: 10px;
    }
	
	.benefit-number{
		width:40px;
		height:40px;
		padding:10px;
	}
}

.which-btn.philosophy-btn {
    display: flex;
    justify-content: center;
	margin-top:40px;
}

.hx-founder-btn.founder-abt-btn{
	background:#fff;
	color: #1c3447;
}

.hx-founder-btn.founder-abt-btn:hover {
    background: #2c5d8f;
    color: #fff;
    transform: translateY(-4px);
}

.hx-founder-title-abt {
    color: #fff;
    margin-bottom: 50px !important;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 340px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-label{
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.industry-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.6),
        transparent
    );
}

.industry-content h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-content span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.right-what-video{
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.cms-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hxnav-links {
    margin-bottom: 0px;
}
@media (max-width: 767px) {
    .hx-mistake-card h3 {
        max-width: 200px;
    }
	.foot-bottom {
    margin-top: 0px !important;
}

}