/* ================================================
   ClickERP — Premium Light Theme Enhancement
   Custom UI overrides (no content/nav changes)
   ================================================ */

/* Google Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* -----------------------------------------------
   Design Tokens
----------------------------------------------- */
:root {
  --primary:       #dc0000;
  --primary-light: #fff0f0;
  --dark:          #1a1a2e;
  --body-bg:       #f8f9fc;
  --surface:       #ffffff;
  --border:        #e8eaf0;
  --text-main:     #1f2437;
  --text-muted:    #6b7280;
  --shadow-xs:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:     0 4px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.10);
  --shadow-red:    0 8px 24px rgba(220,0,0,.18);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --ease:          0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------------------------
   Base
----------------------------------------------- */
body {
  font-family: 'Inter', 'Nunito', sans-serif;
  background-color: var(--body-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  color: var(--text-main);
  letter-spacing: -0.02em;
}

p { color: var(--text-muted); line-height: 1.75; }

a { transition: color var(--ease); }

section { padding: 5rem 0; }

/* Container width consistency — matches navbar pill width (#header-wrap) */
.container {
  max-width: 1160px !important;
}

/* -----------------------------------------------
   Pre-loader
----------------------------------------------- */
#ht-preloader {
  background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
}
.loader span {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

/* ==============================================
   NAVBAR — Modern Floating Pill Style
   Targets: header.site-header > #header-wrap
================================================ */

/* ---- Outer header shell ---- */
.site-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 14px 0;
  transition: padding var(--ease);
}

/* ---- Inner pill container — distinct floating card ---- */
#header-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(220, 0, 0, 0.14);
  border-radius: 56px;
  box-shadow:
    0 10px 30px -4px rgba(0, 0, 0, 0.08),
    0 4px 14px -2px rgba(220, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Thin red accent glow line at bottom of pill */
#header-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220, 0, 0, 0.35) 20%,
    rgba(220, 0, 0, 0.8) 50%,
    rgba(220, 0, 0, 0.35) 80%,
    transparent);
  pointer-events: none;
}

/* Scrolled — solid crisp floating pill */
.site-header.scrolled {
  padding: 8px 0;
}
.site-header.scrolled #header-wrap {
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-color: rgba(220, 0, 0, 0.22);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(220, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

/* ---- Logo ---- */
.navbar-brand { padding: 0; margin-right: 16px; }
.navbar-brand img {
  height: 54px !important;
  width: auto;
  transition: all 0.35s ease;
  filter: drop-shadow(0 2px 8px rgba(220,0,0,.14));
}
.navbar-brand:hover img {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 4px 14px rgba(220,0,0,.25));
}

/* ---- Navbar row layout ---- */
.navbar {
  padding: 0;
  gap: 0;
}

/* ---- Nav items — pill track ---- */
header .navbar-nav {
  background: rgba(241,241,246,0.70);
  border-radius: 40px;
  padding: 4px 6px;
  gap: 2px;
  align-items: center;
}

header .navbar-nav .nav-item { margin: 0; }

/* ---- Nav link ---- */
.navbar-nav .nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #374151 !important;
  padding: 7px 16px !important;
  border-radius: 32px !important;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

/* Underline — hidden */
.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after { display: none !important; }

/* Hover */
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(255,255,255,0.90) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Active — white pill with red text + shadow */
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(220,0,0,.15), 0 1px 3px rgba(0,0,0,.08);
  font-weight: 700;
}

/* Focus ring */
.navbar-light .navbar-nav .nav-link:focus {
  outline: 2px solid rgba(220,0,0,.30);
  outline-offset: 2px;
}

/* ---- Dropdown toggle arrow ---- */
.nav-link.dropdown-toggle::after {
  display: inline-block !important;
  content: '';
  border: none;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  transition: transform 0.25s ease;
  vertical-align: middle;
}
.nav-item.dropdown.show .nav-link.dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* ---- Dropdown menu ---- */
.navbar-nav .nav-item.dropdown .dropdown-menu {
  background: rgba(255,255,255,0.98) !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06) !important;
  padding: 6px !important;
  margin-top: 8px !important;
  min-width: 210px;
  animation: ddSlide 0.18s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@keyframes ddSlide {
  from { opacity:0; transform:translateY(-8px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* Dropdown items */
.dropdown-item {
  border-radius: 10px !important;
  font-size: 0.84rem;
  font-weight: 500;
  color: #374151 !important;
  padding: 9px 14px !important;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item::before { display:none !important; }
.dropdown-item::after  {
  content: '→';
  position: absolute;
  right: 12px;
  opacity: 0;
  font-size: 0.8rem;
  color: var(--primary);
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(220,0,0,.06) !important;
  color: var(--primary) !important;
  padding-left: 14px !important;
}
.dropdown-item:hover::after,
.dropdown-item:focus::after {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Hamburger — mobile ---- */
.navbar-toggler {
  border: 1.5px solid rgba(220,0,0,.20);
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.80);
  transition: all 0.25s ease;
  width: 42px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(220,0,0,.15); }
.navbar-toggler:hover { background: rgba(220,0,0,.07); border-color: var(--primary); }

.navbar-toggler-icon {
  background-image: none !important;
  width: 18px; height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 100%; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}
.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon::after  { bottom: 0; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 5px;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 5px;
  transform: rotate(-45deg);
}

/* Mobile collapse panel */
@media (max-width:991.98px) {
  .site-header { padding: 10px 12px; }
  #header-wrap {
    border-radius: 20px;
    padding: 8px 14px;
  }
  header .navbar-nav {
    background: transparent;
    border-radius: 0;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
  }
  .navbar-collapse {
    border-top: 1px solid rgba(220,0,0,.10);
    margin-top: 10px;
    padding-top: 8px;
  }
  .navbar-nav .nav-link {
    border-radius: 12px !important;
    padding: 11px 14px !important;
    margin-bottom: 3px;
  }
  .navbar-light .navbar-nav .nav-link.active {
    background: rgba(220,0,0,.06) !important;
  }
}

/* Hero section itself handles top-spacing — no wrapper padding needed */
.page-wrapper { padding-top: 0; }
@media (max-width:991.98px) { .page-wrapper { padding-top: 0; } }


/* JS scroll class helper — add via shapes.js scroll listener */




/* -----------------------------------------------
   Buttons
----------------------------------------------- */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.6rem;
  transition: all var(--ease);
}

.btn:before { display: none !important; }

.btn-primary {
  background: linear-gradient(135deg, #e80000 0%, #b50000 100%);
  border: none;
  color: #fff !important;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #b50000 0%, #8a0000 100%);
  box-shadow: 0 12px 32px rgba(220,0,0,.28);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary) !important;
  border: 1.5px solid #fff;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

/* ==============================================
   HERO SECTION — Full-Viewport Editorial Style
   Unified with navbar: shares same gradient canvas
================================================ */
/* ==============================================
   HERO SECTION — High-Tech Modern SaaS Style
   Unified with navbar: shares continuous gradient canvas
================================================ */

.hero-banner {
  /* starts at very top, sits behind floating navbar */
  padding-top: 136px;
  padding-bottom: 90px;
  background:
    /* Left-side ambient glowing aurora blooms */
    radial-gradient(ellipse 55% 65% at 14% 30%, rgba(220, 0, 0, 0.14) 0%, rgba(254, 215, 215, 0.45) 45%, transparent 70%),
    radial-gradient(circle at 6% 15%, rgba(220, 0, 0, 0.09) 0%, transparent 42%),
    /* Right-side subtle bloom */
    radial-gradient(ellipse 60% 55% at 85% 15%, rgba(220, 0, 0, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 85%, rgba(220, 0, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(254, 242, 242, 0.85) 0%, transparent 70%),
    linear-gradient(175deg, #ffffff 0%, #fffbfb 30%, #fdf3f3 65%, #f4f6fc 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* High-tech matrix grid + crosshair overlay */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(220, 0, 0, 0.22) 1.2px, transparent 1.2px),
    linear-gradient(rgba(220, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 96px 96px, 96px 96px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 25%, transparent 80%);
  opacity: 0.5;
}

/* Floating ambient glowing orb */
.hero-banner::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 650px; height: 650px;
  background: conic-gradient(
    from 210deg,
    rgba(220, 0, 0, 0.10) 0deg,
    rgba(255, 130, 130, 0.06) 75deg,
    transparent 140deg,
    rgba(220, 0, 0, 0.08) 210deg,
    transparent 290deg,
    rgba(220, 0, 0, 0.05) 360deg
  );
  border-radius: 50%;
  pointer-events: none;
  animation: orbSpin 26s linear infinite;
  opacity: 0.8;
  filter: blur(20px);
}

@keyframes orbSpin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.08); }
  to   { transform: rotate(360deg) scale(1); }
}

/* ==========================================
   LEFT COLUMN — Typography, Cards & Graphics
=========================================== */
.hero-banner .container {
  max-width: 1160px !important;
}

.hero-banner .col-12.col-lg-7 {
  position: relative;
  z-index: 3;
  padding-right: 1.5rem;
}

.hero-banner .me-lg-n8 {
  margin-right: 0 !important;
}

/* Left Background Graphic 1: Concentric Tech Radar Rings */
.hero-banner .col-12.col-lg-7::before {
  content: '';
  position: absolute;
  top: -65px;
  left: -85px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px dashed rgba(220, 0, 0, 0.16);
  box-shadow:
    inset 0 0 0 50px rgba(220, 0, 0, 0.02),
    inset 0 0 0 90px transparent,
    inset 0 0 0 92px rgba(220, 0, 0, 0.08),
    inset 0 0 0 170px transparent,
    inset 0 0 0 172px rgba(220, 0, 0, 0.05);
  background:
    radial-gradient(circle at center, rgba(220, 0, 0, 0.08) 0%, rgba(254, 226, 226, 0.35) 45%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: leftRadarSpin 45s linear infinite;
}

@keyframes leftRadarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Left Background Graphic 2: Floating Tech Grid Matrix Card */
.hero-banner .col-12.col-lg-7::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: -70px;
  width: 320px;
  height: 280px;
  background-image:
    radial-gradient(rgba(220, 0, 0, 0.22) 1.5px, transparent 1.5px),
    linear-gradient(rgba(220, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 24px 24px, 72px 72px, 72px 72px;
  border: 1px solid rgba(220, 0, 0, 0.14);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(220, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: -1;
  animation: leftMatrixFloat 8s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes leftMatrixFloat {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50%      { transform: translateY(-12px) rotate(-3deg); }
}

/* ----- Eyebrow badge with live pulse dot ----- */
.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 0, 0, 0.22);
  border-radius: 100px;
  padding: 5px 16px 5px 13px;
  width: fit-content;
  box-shadow:
    0 4px 18px rgba(220, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.hero-badge:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(220, 0, 0, 0.4);
  box-shadow:
    0 8px 25px rgba(220, 0, 0, 0.14),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: #dc0000;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 8px rgba(220, 0, 0, 0.8);
  flex-shrink: 0;
}

.hero-badge .badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: rgba(220, 0, 0, 0.45);
  animation: badgeDotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badgeDotPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  50% { transform: scale(2); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

.hero-badge .badge-text {
  display: inline-block;
}

/* ----- Main headline ----- */
.hero-banner h1 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 0;
}

/* Red metallic gradient on keywords */
.hero-banner h1 .text-primary {
  background: linear-gradient(135deg, #c50000 0%, #e63946 45%, #990000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  filter: drop-shadow(0 2px 8px rgba(220, 0, 0, 0.12));
}

/* Animated underline sweep */
.hero-banner h1 .text-primary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2.5px; width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #dc0000, #ff7575);
  animation: lineReveal 0.9s 0.6s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes lineReveal {
  to { width: 100%; }
}

/* ----- High-tech Divider rule ----- */
.hero-banner h1 + * {
  position: relative;
}
.hero-banner h1 + *::before {
  content: '';
  display: block;
  width: 48px; height: 2.5px;
  background: linear-gradient(90deg, transparent, #dc0000, transparent);
  border-radius: 3px;
  margin: 18px auto 0;
  box-shadow: 0 0 10px rgba(220, 0, 0, 0.35);
}

/* ==========================================
   INDUSTRY STRIP — Interactive Glass Cards
=========================================== */
.hero-banner .text-center.mb-4 { margin-top: 22px !important; }

.hero-banner .d-flex.justify-content-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Each industry card wrapper - equal dimensions */
.hero-banner .d-flex.justify-content-center > .mx-5 {
  margin: 0 !important;
  width: 108px;
  min-width: 108px;
  max-width: 108px;
  height: 94px;
  min-height: 94px;
  max-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(220, 0, 0, 0.12);
  border-radius: 16px;
  padding: 10px 6px 8px;
  box-shadow:
    0 6px 20px -4px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(220, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.hero-banner .d-flex.justify-content-center > .mx-5:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(220, 0, 0, 0.32);
  box-shadow:
    0 14px 32px -6px rgba(220, 0, 0, 0.20),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Icon container - identical dimensions */
.hero-banner .red-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 13px !important;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.9), rgba(255, 255, 255, 0.9)) !important;
  border: 1px solid rgba(220, 0, 0, 0.16) !important;
  box-shadow: 0 4px 12px rgba(220, 0, 0, 0.08);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Shimmer beam inside card */
.hero-banner .red-circle::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  animation: cardShimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cardShimmer {
  0%, 70%, 100% { left: -60%; opacity: 0; }
  50%           { left: 130%; opacity: 1; }
}

.hero-banner .red-circle i {
  font-size: 1.15rem !important;
  width: 22px;
  height: 22px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-banner .d-flex.justify-content-center > .mx-5:hover .red-circle {
  background: linear-gradient(135deg, #dc0000, #a80000) !important;
  border-color: transparent !important;
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 10px 24px rgba(220, 0, 0, 0.35);
}

.hero-banner .d-flex.justify-content-center > .mx-5:hover .red-circle i {
  color: #fff !important;
  transform: scale(1.12);
}

/* Industry label */
.hero-banner .font-w-6.text-primary.mt-2 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4b5563 !important;
  margin-top: 0 !important;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.hero-banner .d-flex.justify-content-center > .mx-5:hover .font-w-6.text-primary.mt-2 {
  color: var(--primary) !important;
}

/* ==========================================
   CTA BUTTONS — Modern Dual Action
=========================================== */
.hero-banner .text-center.mt-4 {
  margin-top: 22px !important;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Primary filled pill ("Try Accounts Demo") */
.hero-banner .btn-primary:first-of-type {
  background: linear-gradient(135deg, #dc0000 0%, #b30000 100%);
  border: none;
  color: #fff !important;
  border-radius: 100px;
  padding: 10px 26px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 6px 22px rgba(220, 0, 0, 0.32),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-banner .btn-primary:first-of-type::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.hero-banner .btn-primary:first-of-type:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(220, 0, 0, 0.40),
    0 4px 12px rgba(0, 0, 0, 0.12);
}
.hero-banner .btn-primary:first-of-type:hover::before { left: 160%; }

/* Secondary modern tech pill ("Try Hotel Demo") */
.hero-banner .btn-primary:last-of-type {
  background: #0f172a;
  border: 1.5px solid rgba(220, 0, 0, 0.3);
  color: #ffffff !important;
  border-radius: 100px;
  padding: 10px 26px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.20),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-banner .btn-primary:last-of-type:hover {
  background: #1e293b;
  border-color: #dc0000;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 28px rgba(220, 0, 0, 0.26),
    0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ==========================================
   CONTACT STRIP — Single-Row Floating Glass Pill
=========================================== */
.contact-details {
  margin-top: 14px;
  text-align: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(220, 0, 0, 0.16);
  border-radius: 50px;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 18px -4px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.contact-details p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.contact-details .contact-sep {
  color: rgba(220, 0, 0, 0.32);
  font-size: 0.74rem;
  font-weight: 300;
  padding: 0 2px;
  user-select: none;
}

.contact-details a {
  color: #374151 !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 4px 9px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap !important;
}

.contact-details a:hover {
  background: rgba(220, 0, 0, 0.08);
  color: var(--primary) !important;
  transform: translateY(-1px);
}

.contact-details a i {
  font-size: 0.70rem;
  color: var(--primary);
}

/* ==========================================
   RIGHT COLUMN — SaaS Cloud Window & Badges
=========================================== */
.hero-banner .col-12.col-lg-5 {
  position: relative;
  z-index: 3;
}

/* Floating Metric Badge 1: Top-Left */
.hero-banner .col-12.col-lg-5::before {
  content: '⚡ GST Ready & Automated';
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 12;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(220, 0, 0, 0.18);
  border-radius: 40px;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111827;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08),
    0 3px 8px rgba(220, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  animation: badgeFloat1 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* Floating Metric Badge 2: Bottom-Right */
.hero-banner .col-12.col-lg-5::after {
  content: '★ 99.9% Reliable • Real-time Sync';
  position: absolute;
  bottom: -16px;
  right: -4px;
  z-index: 12;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 40px;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #15803d;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08),
    0 3px 10px rgba(34, 197, 94, 0.14),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  animation: badgeFloat2 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(7px); }
}

/* Floating Showcase Card */
.hero-banner .bg-white {
  position: relative;
  z-index: 2;
  border-radius: 26px !important;
  border: 1px solid rgba(220, 0, 0, 0.12) !important;
  box-shadow:
    0 35px 80px -15px rgba(0, 0, 0, 0.16),
    0 12px 28px -5px rgba(220, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
  overflow: hidden;
  animation: cardFloat 8s ease-in-out infinite;
  background: #ffffff !important;
  padding: 14px !important;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%      { transform: translateY(-10px) rotate(0.4deg); }
  75%      { transform: translateY(-5px) rotate(-0.3deg); }
}

/* Subtle top brand accent line */
.hero-banner .bg-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc0000 0%, #ff7575 50%, #dc0000 100%);
  z-index: 10;
}

/* Inner screenshot frame */
.hero-banner .bg-white .owl-carousel img {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* ==========================================
   DARK HERO (Services / Contact / Demo pages)
=========================================== */
section.hero-banner.bg-dark {
  background:
    radial-gradient(ellipse 65% 55% at 85% 15%, rgba(220, 0, 0, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(140, 0, 0, 0.18) 0%, transparent 50%),
    linear-gradient(150deg, #0a0a14 0%, #170707 45%, #240b0b 100%) !important;
  min-height: 400px;
  padding-top: 136px;
  padding-bottom: 70px;
  align-items: flex-end;
}

section.hero-banner.bg-dark::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.15) 1.2px, transparent 1.2px),
    linear-gradient(rgba(220, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 32px 32px, 96px 96px, 96px 96px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 75%);
}

section.hero-banner.bg-dark::after {
  background: conic-gradient(
    from 220deg,
    rgba(220, 0, 0, 0.14) 0deg,
    transparent 100deg,
    rgba(220, 0, 0, 0.09) 200deg,
    transparent 280deg,
    rgba(220, 0, 0, 0.06) 360deg
  );
  animation: orbSpin 24s linear infinite;
  opacity: 0.7;
}

section.hero-banner.bg-dark h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(220, 0, 0, 0.25);
}

/* ==========================================
   RESPONSIVE
=========================================== */
@media (max-width: 1199.98px) {
  .hero-banner {
    padding-top: 120px;
    min-height: 85vh;
  }
  .hero-banner .col-12.col-lg-7 { padding-right: 1rem; }
}

@media (max-width: 991.98px) {
  .hero-banner {
    padding-top: 110px;
    padding-bottom: 60px;
    min-height: auto;
  }
  section.hero-banner.bg-dark { padding-top: 110px; }
  .hero-banner h1 { font-size: clamp(1.55rem, 4.5vw, 2.15rem); }
  .hero-banner .col-12.col-lg-7 { padding-right: 0; text-align: center; }
  .hero-banner .col-12.col-lg-7::before {
    top: -20px;
    left: 50%;
    margin-left: -170px;
    width: 340px;
    height: 340px;
    opacity: 0.7;
  }
  .hero-banner .col-12.col-lg-7::after {
    left: 50%;
    margin-left: -140px;
    bottom: -10px;
    width: 280px;
    height: 220px;
    opacity: 0.5;
  }
  .hero-banner .col-12.col-lg-5::before { top: -10px; left: 0; }
  .hero-banner .col-12.col-lg-5::after { bottom: -10px; right: 0; }
}

@media (max-width: 767.98px) {
  .hero-banner { padding-top: 95px; }
  .hero-badge-wrap { margin-bottom: 12px; }
  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 4px 12px 4px 10px;
  }
  .hero-banner h1 { font-size: 1.55rem; }
  .hero-banner .col-12.col-lg-7::before {
    width: 280px;
    height: 280px;
    margin-left: -140px;
  }
  .hero-banner .col-12.col-lg-7::after {
    display: none;
  }
  .hero-banner .d-flex.justify-content-center > .mx-5 {
    width: 96px;
    min-width: 96px;
    max-width: 96px;
    height: 86px;
    min-height: 86px;
    max-height: 86px;
    padding: 8px 4px;
  }
  .hero-banner .red-circle { width: 38px; height: 38px; min-width: 38px; min-height: 38px; border-radius: 11px !important; }
  .hero-banner .red-circle i { font-size: 1rem !important; width: 18px; height: 18px; }
  .hero-banner .font-w-6.text-primary.mt-2 { font-size: 0.62rem; }
  .contact-details {
    padding: 5px 10px;
    max-width: 100%;
    overflow-x: auto;
  }
  .contact-details a {
    font-size: 0.72rem;
    padding: 3px 5px;
    gap: 4px;
  }
  .contact-details .contact-sep {
    font-size: 0.68rem;
  }
  .hero-banner .btn-primary:first-of-type,
  .hero-banner .btn-primary:last-of-type {
    padding: 10px 22px;
    font-size: 0.78rem;
    width: 100%;
  }
  .hero-banner .col-12.col-lg-5::before,
  .hero-banner .col-12.col-lg-5::after {
    font-size: 0.70rem;
    padding: 6px 14px;
  }
}





.red-circle {
  border: 2.5px solid var(--primary) !important;
  border-radius: 50% !important;
  padding: 18px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  transition: all var(--ease);
}

.red-circle:hover {
  background: var(--primary);
  border-color: var(--primary) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.red-circle:hover i { color: #fff !important; }

.contact-details {
  font-size: 0.92rem;
  color: var(--text-muted) !important;
  margin-top: 24px;
}

.contact-details a {
  color: var(--primary) !important;
  font-weight: 600;
  transition: all var(--ease);
}

.contact-details a:hover { color: #8a0000 !important; }

.hero-banner .bg-white {
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden;
  animation: floatUp 6s ease-in-out infinite;
}

/* -----------------------------------------------
   Dark Hero (Services / Contact / Demo)
----------------------------------------------- */
section.hero-banner.bg-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c1a1a 60%, #3d1010 100%) !important;
  padding: 5rem 0 6rem;
}

section.hero-banner.bg-dark h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* -----------------------------------------------
   Feature Hover Cards
----------------------------------------------- */
.feature-hover {
  border-radius: var(--radius-lg) !important;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease) !important;
}

.feature-hover:hover,
.feature-hover.active {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px);
  border-color: rgba(220,0,0,.2);
}

.feature-hover:before {
  background: linear-gradient(145deg, #fff8f8 0%, #ffffff 100%);
  border-radius: var(--radius-lg) !important;
}

.f-icon {
  color: var(--primary);
  background: var(--primary-light);
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 2rem !important;
  line-height: 1 !important;
  transition: all var(--ease);
}

.feature-hover:hover .f-icon,
.feature-hover.active .f-icon {
  background: var(--primary);
  color: #fff;
  animation: none;
}

/* -----------------------------------------------
   About Section
----------------------------------------------- */
section.py-5 { padding: 5rem 0 !important; }

section.py-5 img.rounded {
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-lg) !important;
  transition: transform var(--ease);
}

section.py-5 img.rounded:hover { transform: scale(1.015); }

.list-dot {
  width: 10px; height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.d-flex.align-items-start {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1rem;
  transition: all var(--ease);
}

.d-flex.align-items-start:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(220,0,0,.15);
}

/* -----------------------------------------------
   Service / Blog Cards
----------------------------------------------- */
.card {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  transition: all var(--ease) !important;
  background: var(--surface);
}

.card.border-0.shadow {
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
}

.card.border-0.shadow:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px);
  border-color: rgba(220,0,0,.15) !important;
}

.card-img-top { border-bottom: 1px solid var(--border); }

.card-body { padding: 1.5rem !important; }

.link-title {
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--ease);
}

.link-title:hover { color: var(--primary) !important; }

/* -----------------------------------------------
   Contact Cards
----------------------------------------------- */
.d-flex.align-items-center.bg-white.p-3 {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--ease) !important;
  padding: 1.5rem !important;
}

.d-flex.align-items-center.bg-white.p-3:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px);
  border-color: rgba(220,0,0,.2) !important;
}

.f-icon-s {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  color: var(--primary);
  border-radius: var(--radius-md) !important;
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light) !important;
  transition: all var(--ease);
}

.d-flex.align-items-center.bg-white.p-3:hover .f-icon-s {
  background: var(--primary) !important;
  color: #fff !important;
}

.d-flex.align-items-center h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.btn-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-link:hover { color: var(--primary) !important; }

/* -----------------------------------------------
   Pricing Table
----------------------------------------------- */
.table-responsive {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cart-table { border-collapse: separate; border-spacing: 0; }

.cart-table thead th.bg-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d0000 100%) !important;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 1rem 1.25rem;
  border: none;
}

.cart-table tbody tr { transition: background var(--ease); }

.cart-table tbody tr:hover { background: var(--primary-light) !important; }

.cart-table tbody tr:nth-child(even) { background: #fafbfc; }

.cart-table td {
  padding: 0.85rem 1.25rem;
  border-color: var(--border);
  vertical-align: middle;
}

.cart-table td h6 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0;
}

h4.text-center {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem !important;
}

/* -----------------------------------------------
   Product / Video Cards
----------------------------------------------- */
.card.product-card {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-xs) !important;
  overflow: hidden;
  background: var(--surface);
  transition: all var(--ease) !important;
}

.card.product-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px);
  border-color: rgba(220,0,0,.18) !important;
}

.card.product-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform var(--ease);
}

.card.product-card:hover img { transform: scale(1.04); }

.product-title { font-size: 0.95rem; font-weight: 600; }

.product-link {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: #fafbfc;
}

button.btn-cart {
  background: linear-gradient(135deg, #e80000 0%, #b50000 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: var(--shadow-red);
}

button.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220,0,0,.28);
}

/* -----------------------------------------------
   YouTube Modal
----------------------------------------------- */
.modal-content {
  border-radius: var(--radius-xl) !important;
  border: none;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}

.btn-close {
  background-color: rgba(0,0,0,.5);
  border-radius: 50%;
  opacity: 1;
}

/* -----------------------------------------------
   Footer
----------------------------------------------- */
footer {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1a1a 100%);
  color: rgba(255,255,255,.85);
  padding: 4.5rem 0 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(220,0,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem !important;
}

footer p {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

footer .list-unstyled li a,
footer .list-group-item-action {
  color: rgba(255,255,255,.65) !important;
  font-size: 0.9rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--ease);
}

footer .list-unstyled li a:hover,
footer .list-group-item-action:hover {
  color: var(--primary) !important;
  background: transparent !important;
  padding-left: 4px;
}

footer .btn-link {
  color: rgba(255,255,255,.65) !important;
  font-size: 0.9rem;
}
footer .btn-link:hover { color: var(--primary) !important; }

footer .list-inline-item a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  color: rgba(255,255,255,.7) !important;
  font-size: 1rem;
  transition: all var(--ease);
  padding: 0 !important;
}

footer .list-inline-item a:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

footer hr {
  border-color: rgba(255,255,255,.12) !important;
  margin: 2.5rem 0 !important;
}

footer .row.align-items-center.mb-5 > div {
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
}

footer .text-primary { color: var(--primary) !important; }

/* -----------------------------------------------
   Utilities
----------------------------------------------- */
.scroll-top a { color: var(--primary) !important; }

.shadow     { box-shadow: var(--shadow-sm) !important; }
.shadow-primary { box-shadow: var(--shadow-red) !important; }
.bg-light   { background-color: #f4f6fb !important; }

section h2 { line-height: 1.2; letter-spacing: -0.025em; }

section h2 .font-w-4 {
  color: var(--text-muted);
  font-weight: 400 !important;
}

/* -----------------------------------------------
   Animations
----------------------------------------------- */
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-content > section {
  animation: fadeInUp 0.55s ease both;
}

/* -----------------------------------------------
   Responsive
----------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-banner { padding: 4rem 0 3rem; }
  .hero-banner h1 { font-size: 1.9rem; }
  footer { padding: 3.5rem 0 0; }
}

@media (max-width: 767.98px) {
  .hero-banner h1 { font-size: 1.6rem; }
  section { padding: 3.5rem 0; }
  .red-circle { width: 60px; height: 60px; padding: 14px !important; }
}

@media (max-width: 575.98px) {
  .hero-banner h1 { font-size: 1.4rem; }
  .d-flex.align-items-start { padding: 0.85rem 1rem; }
}


/* ================================================
   BACKGROUND SHAPES — z-index guards only
   Actual shapes are rendered by /assets/js/shapes.js
   ================================================ */

/* Ensure the JS-injected shape container stays behind everything */
#bg-shapes {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#bg-shapes > span {
  position: absolute;
  display: block;
  opacity: 1;
}

/* All real content sits above the shape layer */
.page-wrapper,
.site-header,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Header sits highest */
.site-header,
#header-wrap.fixed-header {
  z-index: 1000 !important;
}

/* Preloader covers everything */
#ht-preloader { z-index: 99999; }


