:root {
  --logo-blue: #2563eb;
  --logo-dark-blue: #1e40af;
  --logo-purple: #7c3aed;
  --neon-glow: 0 0 10px rgba(124, 58, 237, 0.7);
  --header-height: 44px;
  --footer-height: 48px; /*#6b21a8 or whatever the real footer height is */
}

/* =========================================================
   HEADER LAYOUT & EFFECTS
   ========================================================= */
header,
header * {
  box-sizing: border-box;
}

header {
  display: flex;
  align-items: center; /* Vertically center all items */
  justify-content: space-between; /* Logo/name left, nav right */
  min-height: var(--header-height);
  height: var(--header-height);
  padding: 0 1rem;
  background-color: #0f172a;
  border-bottom: 1px solid #6b21a8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  overflow: hidden;
  box-sizing: border-box;
}

header::before,
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 50px;
  height: 1px;
  background: radial-gradient(circle, #ffd270 25%, transparent 50%);
  box-shadow:
    0 0 4px #ffd270,
    0 0 8px #ffd270,
    0 0 12px #ffd270;
  animation: sparkleFly 2s linear infinite;
}

header::before {
  animation-delay: 0s;
}

header::after {
  animation-delay: 1s;
}

@keyframes sparkleFly {
  0% { left: -50px; opacity: 0.7; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0.7; }
}

/* Left: logo + company name */
.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: var(--header-height);
}

.header-left img,
header img,
header svg {
  height: 28px;
  max-height: 30px;
  width: auto;
  display: block;
  vertical-align: middle;
}

.company-name {
  font-family: 'Russo One', sans-serif;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  letter-spacing: 0.6px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  animation: nameColorPulse 4s steps(1, end) infinite;
}

@keyframes nameColorPulse {
  0%   { color: #cabfff;}
  25%  { color: #3a0eff;}
  50%   { color: #6a49ff;}
  75%  { color: #9a84ff;}
  100%   { color: #cabfff;}
}

/* Navigation on right side */
nav {
  margin-left: auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.top-menu-item,
.nav-link {
  font-size: 1.0rem;
  font-weight: 600;
  padding: 0 0.75rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  line-height: 1;
  background: none;
  border: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-purple));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

header > * {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .header-left {
  margin-left: 0;
  padding-left: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0c1843;
  color: #e2e8f0;
  background-image:
    radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  
    /* Added for fixed header/footer layout */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ensures body fills viewport */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
  margin-top: var(--header-height);
  margin-bottom: 0;
  overflow-y: auto;
}

main.content-mode {
  margin-bottom: 0;
  overflow-y: auto; /* allows scroll only when needed */
}

a:focus, button:focus {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
  outline-radius: 4px;
}
a:not(:focus-visible), button:not(:focus-visible) {
  outline: none;
}

a:focus, button:focus {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
  outline-radius: 4px;
}
a:not(:focus-visible), button:not(:focus-visible) {
  outline: none;
}

.dropdown-container, .nested-dropdown {
  position: relative;
}
.dropdown-menu, .nested-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(21, 30, 51, 0.98);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  z-index: 100;
  white-space: nowrap;
}
.nested-dropdown-menu {
  left: 100%;
  top: -10px;
}
.nested-dropdown-menu.flip-left {
  left: auto;
  right: 100%;
  top: -10px;
}

.dropdown-container:hover .dropdown-menu,
.nested-dropdown:hover .nested-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item, .nested-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #e2e8f0;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  cursor: pointer;
}
.nested-dropdown-item { font-size: 0.85rem; padding: 8px 20px 8px 15px; }
.dropdown-item:hover,
.nested-dropdown-item:hover,
.dropdown-item:focus,
.nested-dropdown-item:focus {
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
}
.dropdown-item i, .nested-dropdown-item i {
  width: 20px;
  margin-right: 12px;
  font-size: 0.9rem;
}

#chatMessages {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 12px;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  overflow-y: auto;
  flex: 1;
  box-sizing: border-box;
  min-height: 0;
}

.message.user {
  align-self: flex-end;
  background-color: #eafbdd;
  color: #000000;
  padding: 8px 10px;
  border-radius: 16px 16px 0 16px;
  margin: 6px 0;
  max-width: 90%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.message.bot {
  align-self: flex-start;
  background-color: #e7f5ff;
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 16px 16px 16px 0;
  margin: 6px 0;
  max-width: 90%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  animation: scaleIn 1s ease-out forwards;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-purple));
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.chat-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #0078d4;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#chat-close {
  font-size: 30px;
  cursor: pointer;
  margin-left: auto;
}

.chat-window {
  display: flex;
  flex-direction: column;
  height: 320px;
  background-color: #ffffff;
  overflow: hidden;
}

.chat-log {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: #444;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #e0e0e0;
  background-color: #0078d4;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

#chatInput {
  color: #333333;
  background-color: #ffffff;
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.chatSubmit {
  margin-left: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@keyframes hoverPulse {
  0%   { background-color: #ff709e; box-shadow: 0 0 6px #ff709e; }
  20%  { background-color: #9b82ff; box-shadow: 0 0 8px #e6004a; }
  40%  { background-color: #ff709e; box-shadow: 0 0 10px #ff709e; }
  60%  { background-color: #81bcff; box-shadow: 0 0 8px #e6004a; }
  80%  { background-color: #ff709e; box-shadow: 0 0 6px #ff709e; }
  100% { background-color: #00c0ff; box-shadow: 0 0 4px #e6004a; }
}

.chat-toggle {
  position: fixed;
  bottom: 100px;
  right: 4vw;
  z-index: 999;
  padding: 12px 20px;
  background: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 40px 40px 40px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: hoverPulse 1s ease-in-out infinite;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.chatbot-container {
  position: fixed;
  top: calc(var(--header-height) + 20px);
  right: 4vw;
  width: 60vw;
  height: calc(80vh - var(--footer-height)); 
  flex-direction: column;
  background: rgba(21, 30, 51, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 1000;
  display: flex;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  visibility: hidden;
}
 
.chatbot-container.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  visibility: visible;
  animation: scaleIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.user-msg {
  background: #3b82f6;
  color: white;
  align-self: flex-end;
}

.bot-msg {
  background: #334155;
  color: #ddd;
  align-self: flex-start;
}

.inline-wrapper {
  display: inline;
  word-break: break-word;
  white-space: normal; /* allows wrapping */
}

.show-more-btn {
  all: unset;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0078d4;
  text-decoration: underline;
  cursor: pointer;
  display: inline;
  margin-left: 4px;
  vertical-align: baseline;
}

@media (max-width: 767px) {
  .dropdown-menu,
  .nested-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu.open,
  .nested-dropdown-menu.open {
    max-height: 500px;
  }

  #mobileMenu {
    max-height: 100vh;
    overflow-y: auto;
  }
}

.solutions {
  padding: 4rem 1.5rem;
  background-color: #1e293b;
}

.solutions h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
  text-align: center;
}

.solutions .bg-slate-900 {
  background-color: #0f172a;
  border-color: #7c3aed;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.solutions .p-6 {
  padding: 1.5rem;
}

.solutions .flex {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.solutions img {
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}

.solutions h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.solutions ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.solutions ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.solutions ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 900;
}

.footer-content {
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.7s ease;
}

.footer-content.opacity-100 {
  opacity: 1;
}

.footer-content.translate-y-0 {
  transform: translateY(0);
}

.hero-section {
  background-image: url('../assets/hero/hero-bg.png'); /* Replace with your image path */
  background-position: center center;
  background-size: 100% 100%; 
  background-repeat: no-repeat;
  height: calc(100vh - var(--header-height) - var(--footer-height)); /* Full viewport height minus header/footer */
  width: 100%;
  position: relative; /* Keep if needed for overlay or other child elements */
  display: flex;
  align-items: center;    /* center content vertically if any */
  justify-content: center; /* center content horizontally if any */
}

.under-construction-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 5rem; /* Large font size */
  font-weight: bold;
  text-shadow: 0 0 8px #fedc91, 0 0 20px #7c3aedcc;
  z-index: 100; /* Sit above the hero image */
  user-select: none;
  pointer-events: none; /* So it doesn't block clicks */
  white-space: nowrap; /* Prevent line breaks */
}


.hero-section.menu-content-mode {
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  color: white;
  height: auto;                 /* fully flexible height */
  min-height: 0;                 /* remove viewport clamping */
  overflow: visible;             /* allow children to extend height */
  width: 100%;
}

.hero-section:not(.menu-content-mode) {
  height: calc(100vh - var(--header-height) - var(--footer-height));
  margin: 0;
  padding: 0;
}

.menu-content-mode > div {
    text-align: center;
}

.fade-in {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.cta-button {
  background-color: #0ea5e9;
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: background 0.3s ease;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #38bdf8;
}
.card-group {
  display: flex;
  gap: 20px;
}
.ai-card {
  background-color: #1e3a8a;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: translateY(40px);
  opacity: 0;
  animation: slideUp 1s ease forwards;
}
.ai-card:nth-child(2) {
  animation-delay: 0.4s;
}
.ai-card:nth-child(3) {
  animation-delay: 0.8s;
}

.ai-card {
  background: #1e3a8a;
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  min-width: max-content;
  transition: transform 0.3s ease;
}
.ai-card:hover {
  transform: scale(1.05);
}

@keyframes cardHover {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.card {
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0078d4;
  background-color: #ffffff;
  border: 1px solid #0078d4;
  border-radius: 12px;
  height: auto;
  width: auto;
  max-width: none;
  margin: 12px auto;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: none;
  padding: 6px 12px;                /* Add some internal spacing */
  white-space: nowrap;             /* Prevent wrapping inside cards */
}

.card:hover,
.card:active {
  background-color: #f1f3f5;
  animation: cardHover 0.4s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px)
}

#chatMenuRoot {
  display: flex;
  flex-direction: column;     /* Stack cards vertically */
  align-items: flex-start;    /* Align cards to the left */
  margin-top: 12px;           /* Optional spacing above cards */
}

@media (max-width: 600px) {
  .card {
    font-size: 14px;
    height: 42px;
    max-width: 100%;
    margin: 10px auto;
  }
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.loader:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #0078d4;
  border-color: #0078d4 transparent #0078d4 transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.message.loading em {
  opacity: 0.1;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.1; }
  50% { opacity: 1; }
  100% { opacity: 0.; }
}

/* Glass effect utility */
.glass {
  background: rgba(25, 20, 52, 0.4);
  backdrop-filter: blur(9px) saturate(140%);
  border: 1.5px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 6px 36px 0 rgba(37,99,235,0.12);
}
.neon-text {
  color: #fad676;
  text-shadow: 0 0 8px #fedc91, 0 0 40px #7c3aed66;
}
.gradient-text {
  background: linear-gradient(90deg, #38bdf8 30%, #7c3aed 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.neon-accent { color: #7c3aed; }

.role-img {
  width: 64px; height: 64px; margin-bottom: 14px; filter: drop-shadow(0 1px 20px #7c3aed55);
  border-radius: 11px; background: #23295b29; padding: 0.4rem;
}
.role-title {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #89faff;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.features {
  flex: 1;
  list-style: none;
  padding: 0; margin: 0 0 1.2rem 0;
}
.features li {
  text-align: left;
  font-size: 0.99rem;
  color: #a0aec0;
  margin-bottom: 0.3em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-btn {
  margin-top: auto;
  min-width: 100px;
}

.see-all-card {
  display: flex; align-items: center; justify-content: center;
}
.see-all-roles {
  padding: 1.2rem 0; color: #b5fae2; text-align: center;
  font-size: 1.11rem; opacity: .74;
}
.see-all-roles i { color: #7c3aed; margin-bottom: 0.5rem; display: block; }

.price-card {
  min-width: 230px;
  padding: 1.3rem 2.1rem;
  border-radius: 1.0em;
  text-align: center;
  color: #e0e9ff;
  font-weight: 500;
  margin-bottom: 7px;
}
.price-card .card-title {
  font-size: 1.08rem;
  margin-bottom: 0.7em;
  color: #fae3fe;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.price-card .card-price {
  font-size: 2rem; font-weight: bold; color: #7c3aed;
  letter-spacing: -2px;
  text-shadow: 0 2px 16px #7c3aed21;
  margin-bottom: 0.1em;
}
.price-card .card-desc {
  color: #b4daff;
  font-size: 1.01rem;
}
.price-card.glow-blue {
  box-shadow: 0 0 18px 0 #38bdf890;
  border: 2px solid #38bdf8cc;
}
.price-card.glow-purple {
  box-shadow: 0 0 18px 0 #7c3aed80;
  border: 2px solid #7c3aedcc;
}
.price-card.highlight {
  background: linear-gradient(99deg, #7c3aed1e 30%, #38bdf829 80%);
}
.price-card:not(.highlight) {
  background: linear-gradient(99deg, #1e283b 25%, #23295b 80%);
}

.big-btn-glow:hover, .main-btn:hover {
  background: linear-gradient(90deg, #7c3aed 45%, #38bdf8 100%);
  color: #fff;
  box-shadow: 0 6px 32px #7c3aed29, 0 2px 14px #38bdf85a;
}
.cta-note { color: #b9f9f5; opacity: 0.78; font-size: 1.01rem; }

/* Buttons – role cards */
.main-btn {
  background: linear-gradient(90deg, #7c3aed 25%, #38bdf8 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.54em 1.6em;
  font-weight: 600;
  font-size: 1.02rem;
  box-shadow: 0 0 16px #6be2fa13;
  transition: background 0.23s, color 0.23s;
  cursor: pointer;
}

/* Initially hide for SPA swap */
.hidden {
  display: none;
}

/* === Fixed footer layout === */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  background: #0f172a; /* match your theme background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--logo-purple);
  z-index: 50;
}

/* === Themed Scrollbar: Applies everywhere site-wide === */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--logo-blue) #0f172a; /* Firefox */
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.85);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--logo-blue), var(--logo-purple));
  border-radius: 6px;
  border: 2px solid #0f172a;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #60a5fa, #a78bfa);
}

/* Make injected menu content inside hero full width */
.hero-section.menu-content-mode > * {
  width: 100%;
  max-width: none;  /* removes any width cap */
}

/* === AI Workforce (final, single source of truth) === */
.ai-workforce { width: 100%; color: #e5e7eb; }

.aiw-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
}

.aiw-slider-viewport {
  height: 252px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.aiw-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
	transition: transform 5s cubic-bezier(0.19, 1, 0.22, 1);
}

.aiw-feature-box {
    height: 252px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	justify-content: center; /* Center text vertically */
    padding: 1.5rem; /* Increased padding for balance */
	position: relative; /* For layering effects */
}

.aiw-feature-box strong {
  font-size: 1.3rem; /* Larger for emphasis */
  font-weight: 800; /* Bolder for highlight */
  color: #ffffff;
  background: linear-gradient(90deg, #7c3aed, #38bdf8); /* Neon gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Gradient shows through */
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5); /* Neon glow */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0; /* Tightened spacing */
  position: relative;
  z-index: 2; /* Above overlay */
}

.aiw-feature-desc {
  font-size: 0.95rem; /* Slightly larger for clarity */
  color: #e2e8f0; /* Light gray for contrast */
  line-height: 1.5; /* Better readability */
  font-weight: 500; /* Medium weight for professionalism */
  opacity: 0.9; /* Subtle fade to distinguish from title */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Enhance readability */
  margin: 0;
  position: relative;
  z-index: 2; /* Above overlay */
}

.aiw-feature-box.active {
  height: 252px;
  transform: scale(1);
  opacity: 1;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.45), 0 0 40px rgba(72, 61, 139, 0.35);
  z-index: 3;
}

/* Reset hero-style bleed for AI Workforce */
#ai-workforce {
  background: none !important;
  padding-bottom: 5rem; /* A larger value to fix the overlap */
}

/* AI Workforce Header */
.aiw-header {
  position: relative;
  z-index: 2;                 /* keep above slider */
  text-align: center;
  margin-top: -1.5rem; 
  line-height: 1.4;
  margin-bottom: 2.25rem;
}

.aiw-heading-line1,
.aiw-heading-line2,
.aiw-heading-line3 {
  display: block !important; /* Add !important here */
  text-align: center;
  margin: 0.5rem 0;
  color: #fff;                /* white text */
}

.aiw-heading-line1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.aiw-heading-line2 {
  font-size: 1rem;
  font-weight: 800;
}

.aiw-heading-line3 {
  font-size: 1.8rem;
  font-weight: 900;
}

.aiw-feature-box,
.aiw-feature-desc {
  display: block;
}

.recruit-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e6004a;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 10px;
	border: 2px dotted #e6004a; /* Red dotted border */
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 14px rgba(230, 0, 74, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
	margin-top: 1rem;
	animation: fadeIn 0.5s ease-in forwards;
}

.recruit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recruit-cta:hover {
    transform: translateY(-2px);
	color: #0f172a;
	border: 1px solid #e6004a;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.recruit-cta:hover::before {
    opacity: 1;
}

.recruit-cta:active {
    transform: translateY(0);
}

.recruit-cta span {
    position: relative;
    z-index: 1;
}