/* === Custom Palette Test === */
:root {
  --primary-dark: #0F5F5A;
  --primary-light: #CCD4DA;
  --accent: #C7B1A3;
  --muted: #768382;
  --secondary-dark: #125C5E;
}

body,
body.dark-theme {
  background: #0F2317 !important;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--primary-dark);
}

.navbar,
.neon-navbar,
.glassy-navbar {
  background: #0F2317 !important;
  background-color: #0F2317 !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 16px rgba(15, 95, 90, 0.04);
  border-radius: 0 0 1.5rem 1.5rem;
  margin-bottom: 2rem;
}

.navbar-brand {
  font-size: 2rem;
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.2s;
  color: var(--primary-light) !important;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.btn-success, .btn-dark {
  box-shadow: 0 4px 24px rgba(15, 95, 90, 0.08);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
  background: var(--secondary-dark);
  color: var(--primary-light);
}

.btn-success:hover, .btn-dark:hover {
  box-shadow: 0 8px 32px rgba(15, 95, 90, 0.16);
  transform: translateY(-2px) scale(1.03);
  background: var(--primary-dark);
  color: var(--accent);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--primary-light) 60%, var(--accent) 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-left {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
  border-radius: 2rem;
  padding: 4rem 3rem;
  max-width: 900px;
  min-width: 350px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(4px);
  animation: fadeInLeft 1s;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px);}
  to { opacity: 1; transform: translateX(0);}
}

.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
}

.hero-left p {
  font-size: 1.25rem;
  color: var(--muted);
}

.hero-img {
  max-width: 95%;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  animation: fadeInRight 1.2s;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px);}
  to { opacity: 1; transform: translateX(0);}
}

.trusted-brands {
  margin-top: 2rem;
}

.trusted-brands p {
  font-size: 0.95rem;
  color: #198754;
  font-weight: 600;
  letter-spacing: 1px;
}

.trusted-brands span {
  color: #000;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 1.5rem;
  font-size: 1.1rem;
}

.floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255,255,255,0.85);
  padding: 12px 28px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s, background 0.2s;
}

.floating-widget:hover {
  box-shadow: 0 12px 48px rgba(25, 135, 84, 0.18);
  background: rgba(255,255,255,0.95);
  transform: scale(1.04);
}

.floating-widget img {
  border-radius: 50%;
  margin-right: 0.7rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

/* Animated SVG background shape */
.hero-bg-shape {
  position: absolute;
  top: -120px;
  left: -180px;
  z-index: 0;
  pointer-events: none;
}

/* Glassy sticky navbar */
.glassy-navbar {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

/* Headline gradient */
.headline-gradient {
  background: linear-gradient(90deg, #38bdf8 20%, #a3e635 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Animate hero image float */
.animate-float {
  animation: floatY 3.5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Brand logos */
.brand-logo {
  height: 56px;
  width: auto;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s, transform 0.2s;
}
.brand-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

/* SVG wave divider */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Floating widget pulse animation */
.pulse {
  animation: pulseAnim 1.8s infinite;
}
@keyframes pulseAnim {
  0% { box-shadow: 0 0 0 0 rgba(56,189,248,0.18); }
  70% { box-shadow: 0 0 0 12px rgba(56,189,248,0.01); }
  100% { box-shadow: 0 0 0 0 rgba(56,189,248,0.18); }
}

/* Responsive improvements */
@media (max-width: 991px) {
  .hero-bg-shape { display: none; }
  .hero-section { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-left { padding: 2.5rem 1.2rem; max-width: 100%; }
  .brand-logo { height: 36px; }
}
@media (max-width: 767px) {
  .hero-section { min-height: 70vh; }
  .hero-left h1 { font-size: 2.1rem; }
  .wave-divider svg { height: 32px; }
}

/* Section titles */
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

/* Why need biosoft360 section */
.why-biosoft {
  background: #fff;
  z-index: 2;
}

/* New Hero Section Styles (Dark Theme) */
.dark-theme .hero-section-new {
  min-height: 95vh;
  padding-top: 100px;
  color: #94a3b8; /* Lighter text for paragraphs */
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.dark-theme .hero-headline-new {
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.dark-theme .hero-subheadline-new {
  color: #94a3b8;
}

.dark-theme .bg-success-soft {
  background-color: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.2);
}

.dark-theme .text-success-emphasis {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.dark-theme .hero-img-wrap-new {
  position: relative;
  border-radius: 50%;
  padding: 1rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: pulseAnim 3s infinite;
}

.dark-theme .hero-img-new {
  border-radius: 50%;
  padding: 1rem;
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
}

/* Re-using neon accents from original design */
.dark-theme .hero-section-new::before,
.dark-theme .hero-section-new::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}
.dark-theme .hero-section-new::before {
    width: 250px;
    height: 250px;
    background: #38bdf8;
    top: 50px;
    left: -100px;
}
.dark-theme .hero-section-new::after {
    width: 200px;
    height: 200px;
    background: #a3e635;
    bottom: 0px;
    right: -50px;
}

/* Custom Hero Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.anim-fade-in {
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

/* Why Section New Design */
.why-section-new {
  padding: 6rem 0;
  background: var(--muted);
}

.section-title-new {
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
  margin-bottom: 1rem;
}

.text-muted-new {
  color: #000000 !important;
}

.feature-card-new {
  background: rgba(199, 177, 163, 0.10); /* var(--accent) with opacity */
  border: 1px solid rgba(118, 131, 130, 0.18); /* --muted */
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  transition: background-color 0.3s, transform 0.3s;
}

.feature-card-new:hover {
  background: rgba(199, 177, 163, 0.18);
  transform: translateY(-5px);
}

.feature-icon-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(163, 230, 53, 0.1));
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #a3e635;
}

.feature-card-new h5 {
  color: #fff;
}

.feature-card-new p {
  color: #94a3b8;
}

/* Specification section */
.specification-section {
  background: #f8fafc;
  z-index: 2;
}
.spec-card {
  background: #f8fafc;
  border: none;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}
.spec-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
}

/* Difference section */
.difference-section {
  position: relative;
  background: linear-gradient(120deg, #101624 60%, #1a2233 100%);
  overflow: hidden;
}
.difference-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle at 30% 30%, #38bdf855 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, #a3e63544 0%, transparent 70%);
  z-index: 0;
  animation: diffBgAnim 8s linear infinite alternate;
}
@keyframes diffBgAnim {
  0% { filter: blur(0px); opacity: 0.7; }
  100% { filter: blur(8px); opacity: 1; }
}

/* Equal size for feature cards */
.difference-section .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2.5rem 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.difference-section .col-md-6.col-lg-3 {
  display: flex;
  align-items: stretch;
}
.feature-card {
  background: rgba(22, 28, 44, 0.6);
  box-shadow: inset 0 0 1.5px 1px #a3e63544, 0 8px 48px 0 #38bdf822;
  border: 1px solid #38bdf833;
  border-radius: 2.5rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-out;
  transform-style: preserve-3d;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), #a3e63533 0%, transparent 40%);
  border-radius: inherit;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  box-shadow: inset 0 0 2px 2px #a3e63566, 0 16px 64px 0 #38bdf844;
  border-color: #a3e63555;
  transform: scale(1.05) translateZ(20px);
}
.feature-card:hover::before {
  opacity: 1;
}

/* Custom SVG Icon Styling */
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, #101624, #1a2233);
  box-shadow: inset 0 0 12px #00000088, 0 0 16px #38bdf833;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: #38bdf8;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 6px #38bdf8);
  transition: all 0.3s ease-out;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(145deg, #1a2233, #101624);
  box-shadow: inset 0 0 16px #000000, 0 0 32px #a3e63566;
}
.feature-card:hover .feature-icon svg {
  stroke: #a3e635;
  filter: drop-shadow(0 0 12px #a3e635);
  transform: scale(1.1);
}

.feature-card h6 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #eaf6fb;
  text-shadow: 0 0 12px #38bdf899;
  letter-spacing: 1px;
  margin-top: 1.5rem;
}
.feature-card p {
  color: #aeb9c4;
  font-size: 1rem;
}

/* Card Layout Tweaks */
.difference-section .row.g-4 {
  gap: 2.5rem 0;
}
.difference-section .col-md-6.col-lg-3:nth-child(2) .feature-card {
  margin-top: 2.5rem;
}
.difference-section .col-md-6.col-lg-3:nth-child(3) .feature-card {
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .feature-card { min-height: 320px; }
  .feature-card h6 { font-size: 1.05rem; }
  .feature-card i { font-size: 2.2rem !important; }
  .difference-section .col-md-6.col-lg-3:nth-child(2) .feature-card,
  .difference-section .col-md-6.col-lg-3:nth-child(3) .feature-card {
    margin-top: 0; margin-bottom: 2.2rem;
  }
  .difference-section .row.g-4 { gap: 1.2rem 0.8rem; }
}
@media (max-width: 767px) {
  .feature-card { min-height: 280px; }
  .feature-card h6 { font-size: 0.95rem; }
  .feature-card i { font-size: 1.5rem !important; }
  .difference-section .row.g-4 { gap: 0.7rem 0.5rem; }
}

/* Unique Hero Section */
.hero-section-unique {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #e6f4ee 60%, #f8fafc 100%);
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.hero-svg-bg {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100vw;
  height: 120vh;
  z-index: 0;
  pointer-events: none;
}

/* Glassmorphic Card */
.glass-card {
  background: rgba(207, 212, 218, 0.35); /* var(--primary-light) with opacity */
  box-shadow: 0 8px 48px 0 rgba(15, 95, 90, 0.18), 0 1.5px 8px 0 rgba(199, 177, 163, 0.08); /* --primary-dark, --accent */
  border: 1.5px solid rgba(199, 177, 163, 0.25); /* --accent */
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  max-width: 540px;
  min-width: 340px;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.glass-card:hover {
  box-shadow: 0 16px 64px 0 rgba(15, 95, 90, 0.22), 0 2.5px 12px 0 rgba(199, 177, 163, 0.12);
  transform: translateY(-4px) scale(1.02);
}

/* 3D Headline */
.hero-headline-3d {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
  text-shadow: 0 4px 24px rgba(56,189,248,0.08), 0 1.5px 0 #fff;
}
.hero-headline-3d-text {
  display: inline-block;
  background: linear-gradient(90deg, #38bdf8 10%, #a3e635 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px #a3e63533);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Floating Accent Shapes */
.accent-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
  animation: accentFloat 8s ease-in-out infinite alternate;
}
.accent-shape-1 {
  width: 320px;
  height: 220px;
  background: linear-gradient(120deg, #38bdf8 60%, #a3e635 100%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.accent-shape-2 {
  width: 180px;
  height: 140px;
  background: linear-gradient(120deg, #a3e635 60%, #38bdf8 100%);
  bottom: 8%;
  right: 8%;
  animation-delay: 2s;
}
@keyframes accentFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.08); }
}

/* Asymmetric Floating Image */
.hero-img-float-wrap {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 32px rgba(44, 62, 80, 0.18));
  animation: floatY 4s ease-in-out infinite;
}
.hero-img-float {
  border-radius: 2.5rem;
  max-width: 420px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  border: 2.5px solid rgba(56,189,248,0.12);
}

/* Animate entrance */
.animate-entrance {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: entranceFadeIn 1.2s 0.2s forwards;
}
@keyframes entranceFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive tweaks for unique hero */
@media (max-width: 991px) {
  .hero-section-unique { padding-top: 2rem; padding-bottom: 2rem; }
  .glass-card { padding: 2.2rem 1.2rem; min-width: 0; max-width: 100%; }
  .hero-headline-3d { font-size: 2.1rem; }
  .hero-img-float { max-width: 260px; }
  .accent-shape-1 { width: 180px; height: 120px; }
  .accent-shape-2 { width: 100px; height: 80px; }
}
@media (max-width: 767px) {
  .hero-section-unique { min-height: 70vh; }
  .hero-img-float { max-width: 180px; min-width: 100px; }
  .hero-headline-3d { font-size: 1.3rem; }
  .hero-headline-3d-text { font-size: 1.1rem; }
}

/* Glassy Section Wrapper */
.glassy-section {
  background: rgba(207, 212, 218, 0.18); /* var(--primary-light) with lower opacity */
  position: relative;
  z-index: 1;
}

/* Accent shapes for other sections */
.accent-shape-3 {
  width: 180px;
  height: 120px;
  background: linear-gradient(120deg, #38bdf8 60%, #a3e635 100%);
  top: 10%;
  left: 2%;
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  animation: accentFloat 7s ease-in-out infinite alternate;
}
.accent-shape-4 {
  width: 120px;
  height: 80px;
  background: linear-gradient(120deg, #a3e635 60%, #38bdf8 100%);
  bottom: 12%;
  right: 4%;
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  animation: accentFloat 9s ease-in-out infinite alternate;
}
.accent-shape-5 {
  width: 160px;
  height: 100px;
  background: linear-gradient(120deg, #38bdf8 60%, #a3e635 100%);
  top: 18%;
  right: 8%;
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  animation: accentFloat 8s ease-in-out infinite alternate;
}

/* SVG Dividers */
.svg-divider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.svg-divider-bottom svg {
  display: block;
  width: 100%;
  height: 40px;
}
.svg-divider-top {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.svg-divider-top svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* Staggered entrance animation for cards */
.animate-entrance {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: entranceFadeIn 1.2s 0.2s forwards;
}
.glass-card[style*="animation-delay:0.15s"] {
  animation-delay: 0.35s !important;
}
.glass-card[style*="animation-delay:0.3s"] {
  animation-delay: 0.5s !important;
}
.glass-card[style*="animation-delay:0.45s"] {
  animation-delay: 0.65s !important;
}

@media (max-width: 991px) {
  .accent-shape-3, .accent-shape-4, .accent-shape-5 { display: none; }
  .svg-divider-bottom svg, .svg-divider-top svg { height: 24px; }
}

/* Dark Theme Base */
body.dark-theme {
  background: var(--primary-dark);
  color: var(--primary-light);
  font-family: 'Inter', Arial, sans-serif;
}

/* Neon Navbar */
.neon-navbar {
  background: rgba(15, 23, 42, 0.8) !important; /* Semi-transparent dark blue */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 32px 0 #38bdf855, 0 1.5px 8px 0 #a3e63533;
  border-radius: 1.5rem;
  margin: 1rem auto;
  max-width: 1200px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all 0.3s ease;
}
.neon-text {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #38bdf8, 0 0 24px #a3e635;
}

.navbar-nav .nav-link {
  color: #eaf6fb !important;
  font-weight: 600;
  margin: 0 0.7rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #a3e635 !important;
}

.btn-neon {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 25%, #0284c7 50%, #0369a1 75%, #075985 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 
    0 4px 16px rgba(56, 189, 248, 0.4),
    0 2px 8px rgba(163, 230, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.btn-neon::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.6s ease;
}

.btn-neon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(56, 189, 248, 0.6),
    0 4px 12px rgba(163, 230, 53, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 25%, #7dd3fc 50%, #a3e635 75%, #84cc16 100%);
  color: #ffffff;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-neon:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    0 4px 16px rgba(56, 189, 248, 0.5),
    0 2px 8px rgba(163, 230, 53, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-outline-neon {
  border: 2px solid #38bdf8;
  color: #38bdf8;
  background: transparent;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-outline-neon:hover {
  background: #38bdf8;
  color: #0a0f1a;
  border-color: #a3e635;
}

/* Hero Section Fixes */
.hero-section-future {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 120px; /* Ensures hero is not hidden behind navbar */
  padding-bottom: 4rem;
  background: linear-gradient(120deg, #0a0f1a 60%, #1a2233 100%);
  overflow: hidden;
}
.hero-section-future .container-fluid {
  max-width: 1300px;
}
.hero-animation {
  min-width: 320px;
  min-height: 320px;
  max-width: 420px;
  max-height: 420px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-card-future {
  background: rgba(18, 22, 34, 0.85);
  box-shadow: 0 8px 48px 0 #38bdf855, 0 1.5px 8px 0 #a3e63533;
  border: 1.5px solid rgba(56,189,248,0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  max-width: 540px;
  min-width: 320px;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.glass-card-future:hover {
  box-shadow: 0 16px 64px 0 #38bdf8cc, 0 2.5px 12px 0 #a3e63599;
  transform: translateY(-4px) scale(1.02);
}
.hero-subtitle-future {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #a3e635;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.neon-headline {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: #38bdf8;
  text-shadow: 0 0 16px #38bdf8, 0 0 32px #a3e635;
}
.neon-gradient {
  background: linear-gradient(90deg, #38bdf8 10%, #a3e635 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px #a3e63533);
}

/* Neon Accent Shapes */
.neon-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.neon-accent-1 {
  width: 320px;
  height: 220px;
  background: linear-gradient(120deg, #38bdf8 60%, #a3e635 100%);
  top: 10%;
  left: 5%;
  animation: accentFloat 8s ease-in-out infinite alternate;
}
.neon-accent-2 {
  width: 180px;
  height: 140px;
  background: linear-gradient(120deg, #a3e635 60%, #38bdf8 100%);
  bottom: 8%;
  right: 8%;
  animation: accentFloat 10s ease-in-out infinite alternate;
}
.neon-accent-3 {
  width: 120px;
  height: 80px;
  background: linear-gradient(120deg, #38bdf8 60%, #a3e635 100%);
  top: 60%;
  left: 60%;
  animation: accentFloat 12s ease-in-out infinite alternate;
}
@keyframes accentFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.08); }
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .neon-navbar { max-width: 98vw; padding-left: 0.5rem; padding-right: 0.5rem; }
  .hero-section-future { padding-top: 90px; }
  .neon-headline { font-size: 2.1rem; }
  .glass-card-future { padding: 2.2rem 1.2rem; min-width: 0; max-width: 100%; }
  .hero-animation { min-width: 180px; min-height: 180px; max-width: 220px; max-height: 220px; }
}
@media (max-width: 767px) {
  .hero-section-future { min-height: 70vh; padding-top: 70px; }
  .neon-headline { font-size: 1.3rem; }
  .glass-card-future { padding: 1.2rem 0.7rem; }
}

/* --- DEPRECATED/OLD FOOTER STYLES (to be removed safely later) --- */
.site-footer, .site-footer-new {
  display: none !important;
}

/* --- FINAL, ISOLATED FOOTER V2 STYLES --- */
.footer-v2 {
  background: var(--primary-dark);
  color: #aeb9c4;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer-v2__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, #38bdf81a 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, #a3e6351a 0%, transparent 60%);
  z-index: 1;
}
.footer-v2__title {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #eaf6fb;
  letter-spacing: 1px;
}
.footer-v2__links li {
  margin-bottom: 0.75rem;
}
.footer-v2__links a {
  color: #aeb9c4;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-v2__links a:hover {
  color: #a3e635;
  padding-left: 5px;
}
.footer-v2__social-icons .footer-v2__social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #aeb9c4;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-v2__social-icons .footer-v2__social-icon:hover {
  background: #a3e635;
  color: #0a0f1a;
  transform: translateY(-3px);
  box-shadow: 0 0 16px #a3e63588;
}
.footer-v2__divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-logo {
  filter: brightness(0) invert(1);
}

/* Specification Section New Design */
.spec-section-new {
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.section-title-new {
  color: #000000 !important;
  font-weight: 700;
}

.text-muted-new {
  color: #000000 !important;
}

.spec-title {
  color: #000000 !important;
  font-weight: 700;
}

.spec-desc {
  color: #333333 !important;
}

.spec-arrow {
  color: #21796b !important;
}

.spec-card-new {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, transform 0.3s;
}

.spec-card-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0) 70%);
  transition: opacity 0.5s;
  opacity: 0;
  transform: scale(0);
}

.spec-card-new:hover::before {
  opacity: 1;
  transform: scale(1);
}

.spec-card-new:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.5);
}

.spec-icon-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(163, 230, 53, 0.1));
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #38bdf8;
  transition: all 0.3s;
  position: relative; /* To stay above the ::before element */
  z-index: 1;
}

.spec-card-new:hover .spec-icon-new {
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #a3e635);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.spec-card-new h5 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.spec-card-new p {
  color: #94a3b8;
  position: relative;
  z-index: 1;
}

/* News Section New Design */
.news-section-new {
    padding: 6rem 0;
    background: #0F2317 !important;
    background-color: #0F2317 !important;
}

.news-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.news-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.news-card-body {
    padding: 1.5rem;
}

.news-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-new h5 {
    color: #fff;
}

.stretched-link-new {
    text-decoration: none;
    color: #a3e635;
    font-weight: 600;
}

.stretched-link-new::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.stretched-link-new .bi {
    transition: transform 0.3s;
    display: inline-block;
}

.news-card-new:hover .stretched-link-new .bi {
    transform: translateX(5px);
}

/* Footer New Design */
.footer-new {
    background-color: var(--primary-dark);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links-new li {
    margin-bottom: 0.75rem;
}

.footer-links-new a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links-new a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons-new a {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-right: 1rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-icons-new a:hover {
    color: #38bdf8;
    transform: scale(1.1);
}

.form-control-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control-dark:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #38bdf8;
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.25);
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
}

/* Integrations Section - White Text */
.integrations-section-new {
  background: #181c32;
  padding: 60px 0;
}

.integration-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.integration-desc {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 32px;
}

.integration-btn {
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  background: #fff;
  color: #181c32;
  border: none;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.integration-btn:hover {
  background: #e0e0e0;
  color: #181c32;
}

.integration-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 70px);
  grid-template-rows: repeat(3, 70px);
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.icon-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 0 #181c32;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.icon-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.icon-card:hover {
  box-shadow: 0 2px 0 #181c32;
  transform: translateY(4px);
}

/* Quote Section New Design -> Testimonial Card */
.quote-section-new {
    padding: 6rem 0;
    background: #0F2317 !important;
    background-color: #0F2317 !important;
}

.testimonial-card-new {
    background: #0F2317 !important;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.7;
}

.dropdown-menu {
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: #94a3b8;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    background-color: rgba(56, 189, 248, 0.1);
}

/* Mega Menu New Design */
.mega-menu-new {
    background: #0F2317 !important;
    background-color: #0F2317 !important;
    border: none;
    padding: 1rem;
    width: 600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    perspective: 1500px;
  position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1021; /* Ensure it's above other content */
}

.nav-item.dropdown:hover .mega-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.platform-card {
  background: #0F2317 !important;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-align: center;
  transition: all 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.platform-card:hover {
  background: #0F2317 !important;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-color: #38bdf8;
}

/* Team Section */
.team-card-new {
  background: rgba(15, 95, 90, 0.18); /* --primary-dark glassy */
  border: 1px solid rgba(18, 92, 94, 0.18); /* --secondary-dark */
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.team-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.5);
}

.team-member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card-new:hover .team-member-img {
    border-color: rgba(56, 189, 248, 0.7);
}

.team-card-new h5 {
  color: #f8fafc;
  font-weight: 700;
}

.team-card-new p {
  color: #94a3b8;
}

/* Support Page */
.support-form-container {
  background: rgba(15, 95, 90, 0.18); /* --primary-dark glassy */
  border: 1px solid rgba(18, 92, 94, 0.18); /* --secondary-dark */
  border-radius: 1rem;
  padding: 3rem;
  margin-top: 2rem;
}

#faq .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
}

#faq .accordion-button {
  background-color: rgba(30, 41, 59, 0.5);
  color: #f8fafc;
  font-weight: 600;
  border-radius: 0.5rem !important;
}

#faq .accordion-button:not(.collapsed) {
  background-color: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
  box-shadow: none;
}

#faq .accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.3);
  border: none;
}

#faq .accordion-body {
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.3);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 0 0 0.5rem 0.5rem;
}

#faq .accordion-button::after {
  filter: brightness(0) invert(1) grayscale(100%) brightness(2);
}

.platform-card:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-4px);
}

.platform-card.active {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
}

.platform-card:hover .bi {
  color: #7dd3fc;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
}

.platform-card.active .bi {
  color: #7dd3fc;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
}

.platform-card:hover span {
    color: #f8fafc;
}

.platform-card.active span {
    color: #f8fafc;
}

.platform-card .bi {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.platform-card span {
  display: block;
  font-weight: 500;
  line-height: 1.2;
}

/* New Page Design Styles */

.page-hero-alt {
  padding: 120px 0;
  background: #111827; /* Darker background */
}

.page-hero-alt .hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  color: #f8fafc;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.page-hero-alt .hero-content p {
  color: #94a3b8;
  font-size: 1.15rem;
}

.page-hero-alt .hero-img-wrap {
  position: relative;
  perspective: 1000px;
}

.page-hero-alt .hero-img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4), 0 0 30px rgba(56, 189, 248, 0.2);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.4s ease;
}

.page-hero-alt .hero-img:hover {
  transform: rotateY(0) rotateX(0) scale(1.05);
}

.features-alt {
  background-color: #fff;
}

.feature-item-alt {
  padding: 3rem 0;
}

.feature-item-alt .feature-img {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-item-alt .feature-content h3 {
  color: #21796b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-item-alt .feature-content p {
  color: #555;
}

.feature-item-alt .feature-content .icon {
  font-size: 2.5rem;
  color: #21796b;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, #21796b, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.cta-section-new {
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1557683316-9ca4126b010b?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 6rem 0;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.cta-section-new h2 {
    color: #f8fafc;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-new p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* FAQ Glassy Card Styles */
.faq-glass-card {
  background: rgba(17, 24, 39, 0.92);
  border-left: 4px solid #38bdf8;
  box-shadow: 0 8px 32px 0 rgba(56,189,248,0.08), 0 1.5px 8px 0 rgba(56,189,248,0.10);
  color: #e0e7ef;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.faq-glass-card:hover, .faq-glass-card:focus-within {
  border-left: 4px solid #a3e635;
  box-shadow: 0 0 16px 2px #38bdf8, 0 8px 32px 0 rgba(56,189,248,0.12);
}
.faq-glass-card .faq-answer {
  color: #cbd5e1;
}

/* Neon FAQ Grid Styles */
.faq-neon-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0f172a 60%, #1e293b 100%);
}
.faq-neon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.faq-neon-bg::before, .faq-neon-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.5;
  animation: neon-dot-move 8s linear infinite alternate;
}
.faq-neon-bg::before {
  width: 120px; height: 120px;
  left: 10%; top: 20%;
  background: #38bdf8;
  animation-delay: 0s;
}
.faq-neon-bg::after {
  width: 90px; height: 90px;
  right: 12%; bottom: 18%;
  background: #a3e635;
  animation-delay: 2s;
}
@keyframes neon-dot-move {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}
.faq-neon-tile {
  perspective: 900px;
  min-height: 220px;
  cursor: pointer;
  background: transparent;
}
.faq-neon-tile .faq-tile-front,
.faq-neon-tile .faq-tile-back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  backface-visibility: hidden;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 32px 0 rgba(56,189,248,0.10);
  background: rgba(17,24,39,0.92);
  border: 2.5px solid #38bdf8;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-neon-tile .faq-tile-front {
  z-index: 2;
}
.faq-neon-tile .faq-tile-back {
  transform: rotateY(180deg);
  background: linear-gradient(120deg, rgba(56,189,248,0.12), rgba(17,24,39,0.96));
  color: #e0e7ef;
  border-color: #a3e635;
  z-index: 3;
}
.faq-neon-tile .neon-icon {
  font-size: 2.2rem;
  color: #38bdf8;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 8px #38bdf8);
}
.faq-neon-tile span {
  font-weight: 600;
  color: #e0e7ef;
  letter-spacing: 0.01em;
}
.faq-neon-tile p {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}
.faq-neon-tile {
  position: relative;
  height: 220px;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s;
}
.faq-neon-tile:hover, .faq-neon-tile:focus-within {
  box-shadow: 0 0 24px 2px #38bdf8, 0 8px 32px 0 rgba(56,189,248,0.18);
}
.faq-neon-tile:hover .faq-tile-front, .faq-neon-tile:focus-within .faq-tile-front {
  border-color: #a3e635;
}
.faq-neon-tile:hover .faq-tile-back, .faq-neon-tile:focus-within .faq-tile-back {
  border-color: #38bdf8;
}
.faq-neon-tile .faq-tile-front,
.faq-neon-tile .faq-tile-back {
  transition: transform 0.7s cubic-bezier(.4,2,.3,1), border-color 0.3s, box-shadow 0.3s;
}
.faq-neon-tile.flipped .faq-tile-front {
  transform: rotateY(180deg);
}
.faq-neon-tile.flipped .faq-tile-back {
  transform: rotateY(0deg);
}
@media (max-width: 991px) {
  .faq-neon-tile { min-height: 240px; height: 240px; }
}
@media (max-width: 767px) {
  .faq-neon-tile { min-height: 200px; height: 200px; }
}
/* Flip on hover for desktop, on click for mobile */
@media (hover: hover) and (pointer: fine) {
  .faq-neon-tile:hover .faq-tile-front {
    transform: rotateY(180deg);
  }
  .faq-neon-tile:hover .faq-tile-back {
    transform: rotateY(0deg);
  }
}
@media (hover: none) and (pointer: coarse) {
  .faq-neon-tile:active .faq-tile-front {
    transform: rotateY(180deg);
  }
  .faq-neon-tile:active .faq-tile-back {
    transform: rotateY(0deg);
  }
}

/* Force all major sections to use #0F2317 as background */
.hero-section-new,
.why-section-new,
.integrations-section-new,
.footer-v2,
.footer-new,
.difference-section,
.page-hero-alt,
.cta-section-new,
.quote-section-new,
.faq-neon-section {
  background: #0F2317 !important;
}

nav.navbar.neon-navbar.glassy-navbar {
  background: #0F2317 !important;
  background-color: #0F2317 !important;
  backdrop-filter: none !important;
}

/* === Dashboard Why Section (2x2 Boxes) === */
.why-section-dashboard {
  background: #0F2317;
  padding: 5rem 0;
}
.why-section-dashboard .dashboard-card {
  background: #0F2317 !important;
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px 0 rgba(15, 95, 90, 0.18);
  border: 1px solid rgba(207, 255, 245, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.why-section-dashboard .dashboard-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 48px 0 rgba(15, 95, 90, 0.28);
}
.why-section-dashboard .dashboard-card-graphic {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.why-section-dashboard .dashboard-link {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
}
.why-section-dashboard .dashboard-link:hover {
  color: #a3e635;
  text-decoration: underline;
}
.why-section-dashboard h5 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}
.why-section-dashboard p {
  color: #b6d0c6;
  font-size: 1.05rem;
}
@media (max-width: 991px) {
  .why-section-dashboard .dashboard-card {
    min-height: 260px;
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 767px) {
  .why-section-dashboard .dashboard-card {
    min-height: 180px;
    padding: 1rem 0.5rem;
  }
  .why-section-dashboard .row.g-4 > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* --- Enforce 2-column grid for dashboard cards, for plain divs --- */
.why-section-dashboard .row.g-4 > div {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0;
  padding-right: 0;
  align-items: stretch;
}
@media (max-width: 991px) {
  .why-section-dashboard .row.g-4 > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .why-section-dashboard .row.g-4 {
    gap: 1.2rem 0;
  }
  .why-section-dashboard .dashboard-card {
    min-height: 180px;
  }
}

/* --- Add horizontal space between boxes in each row --- */
.why-section-dashboard .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: stretch;
}
@media (max-width: 991px) {
  .why-section-dashboard .row.g-4 {
    column-gap: 0;
    row-gap: 1.2rem;
  }
}

/* --- FINAL: Enforce 2 boxes per row, 60/40 split, with gap --- */
.why-section-dashboard .row.g-4 > div {
  box-sizing: border-box;
}
.why-section-dashboard .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: stretch;
}
.why-section-dashboard .row.g-4 > div:nth-child(4n-3) {
  flex: 0 0 58%;
  max-width: 58%;
}
.why-section-dashboard .row.g-4 > div:nth-child(4n-2) {
  flex: 0 0 38%;
  max-width: 38%;
}
.why-section-dashboard .row.g-4 > div:nth-child(4n-1) {
  flex: 0 0 38%;
  max-width: 38%;
}
.why-section-dashboard .row.g-4 > div:nth-child(4n) {
  flex: 0 0 58%;
  max-width: 58%;
}
@media (max-width: 991px) {
  .why-section-dashboard .row.g-4 {
    column-gap: 0;
    row-gap: 1.2rem;
  }
  .why-section-dashboard .row.g-4 > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Power Tools Section - Updated with Subtle Colors */
.power-tools-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem !important;
}

.power-tools-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.power-tools-title .highlight-underline {
  position: relative;
  color: #0f5f5a;
}

.power-tools-title .highlight-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f5f5a, #c7b1a3);
  border-radius: 2px;
}

.power-tools-subtitle {
  color: #fff !important;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6;
}

.power-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.power-tool-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.power-tool-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(10px);
}

.power-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0f5f5a, #c7b1a3, #768382);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

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

.power-tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(15, 95, 90, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #0f5f5a, #125c5e);
  box-shadow: 0 4px 12px rgba(15, 95, 90, 0.2);
}

.power-tool-card:hover .icon-wrapper {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 6px 16px rgba(15, 95, 90, 0.3);
}

.card-badge {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-body h3 {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-body h4 {
  color: #475569;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-body p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.card-footer {
  margin-top: auto;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  box-shadow: none;
  color: #0f5f5a;
  flex: 0 1 auto;
  min-width: auto;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
  color: #125c5e;
  text-decoration: underline;
}

.btn-primary {
  background: transparent;
  color: #0f5f5a;
  flex: 0 1 auto;
  min-width: auto;
  box-shadow: none;
}

.btn-primary:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.btn-secondary {
  background: transparent;
  color: #0f5f5a;
  border: none;
  flex: 0 1 auto;
  min-width: auto;
}

.btn-secondary:hover {
  background: transparent;
  color: #0f5f5a;
  transform: none;
  box-shadow: none;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 95, 90, 0.03), rgba(199, 177, 163, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.power-tool-card:hover .card-overlay {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .power-tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .power-tool-card {
    padding: 1.5rem;
  }
  
  .card-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .power-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animation for cards on load */
.power-tool-item:nth-child(1) { animation-delay: 0.1s; }
.power-tool-item:nth-child(2) { animation-delay: 0.2s; }
.power-tool-item:nth-child(3) { animation-delay: 0.3s; }
.power-tool-item:nth-child(4) { animation-delay: 0.4s; }
.power-tool-item:nth-child(5) { animation-delay: 0.5s; }
.power-tool-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove individual card color variations - use consistent styling */
.power-tool-item:nth-child(1) .btn-primary,
.power-tool-item:nth-child(2) .btn-primary,
.power-tool-item:nth-child(3) .btn-primary,
.power-tool-item:nth-child(4) .btn-primary,
.power-tool-item:nth-child(5) .btn-primary,
.power-tool-item:nth-child(6) .btn-primary {
  background: linear-gradient(135deg, #0f5f5a, #125c5e);
  color: white;
  flex: 1;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(15, 95, 90, 0.2);
}

.power-tool-item:nth-child(1) .btn-primary:hover,
.power-tool-item:nth-child(2) .btn-primary:hover,
.power-tool-item:nth-child(3) .btn-primary:hover,
.power-tool-item:nth-child(4) .btn-primary:hover,
.power-tool-item:nth-child(5) .btn-primary:hover,
.power-tool-item:nth-child(6) .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 95, 90, 0.3);
  background: linear-gradient(135deg, #125c5e, #0f5f5a);
}

.power-tool-item:nth-child(1) .btn-secondary,
.power-tool-item:nth-child(2) .btn-secondary,
.power-tool-item:nth-child(3) .btn-secondary,
.power-tool-item:nth-child(4) .btn-secondary,
.power-tool-item:nth-child(5) .btn-secondary,
.power-tool-item:nth-child(6) .btn-secondary {
  background: transparent;
  color: #0f5f5a;
  border: 2px solid #0f5f5a;
  flex: 1;
  min-width: 120px;
}

.power-tool-item:nth-child(1) .btn-secondary:hover,
.power-tool-item:nth-child(2) .btn-secondary:hover,
.power-tool-item:nth-child(3) .btn-secondary:hover,
.power-tool-item:nth-child(4) .btn-secondary:hover,
.power-tool-item:nth-child(5) .btn-secondary:hover,
.power-tool-item:nth-child(6) .btn-secondary:hover {
  background: #0f5f5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 95, 90, 0.2);
}

/* Consistent icon wrapper styling for all cards */
.power-tool-item:nth-child(1) .icon-wrapper,
.power-tool-item:nth-child(2) .icon-wrapper,
.power-tool-item:nth-child(3) .icon-wrapper,
.power-tool-item:nth-child(4) .icon-wrapper,
.power-tool-item:nth-child(5) .icon-wrapper,
.power-tool-item:nth-child(6) .icon-wrapper {
  background: linear-gradient(135deg, #0f5f5a, #125c5e);
  box-shadow: 0 4px 12px rgba(15, 95, 90, 0.2);
}

.power-tools-subtitle {
  color: #64748b !important;
  font-weight: 500;
}

.power-tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.spec-card-modern {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 2rem;
  max-width: calc(100% - 4rem);
}

.spec-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

.spec-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
  border-radius: 16px 16px 0 0;
}

/* Modern Hero Section Text Colors */
.modern-hero-section {
  color: #ffffff !important;
}

.modern-hero-section * {
  color: #ffffff !important;
}

.modern-hero-section .btn {
  color: #ffffff !important;
}

.modern-hero-section .theme-highlight,
.modern-hero-section .theme-highlight-2 {
  color: #ffffff !important;
}

.modern-hero-title {
  color: #000000 !important;
  font-weight: 700;
}

.modern-hero-subtitle {
  color: #000000 !important;
  font-weight: 500;
}

.get-in-touch {
  color: #000000 !important;
  font-weight: 600;
}

.theme-highlight {
  color: #000000 !important;
  font-weight: 700;
}

.theme-highlight-2 {
  color: #000000 !important;
  font-weight: 600;
}

.feature-point {
  color: #000000 !important;
  font-weight: 600;
}

.feature-check {
  color: #21796b !important;
  font-weight: bold;
}

/* Payroll Page Specific Styles */
.why-biosoft360-ta-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-biosoft360-ta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(15,95,90,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.why-biosoft360-ta-section .container {
  position: relative;
  z-index: 2;
}

.ta-feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 95, 90, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 95, 90, 0.1);
}

.ta-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(163, 230, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ta-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 95, 90, 0.15);
  border-color: rgba(15, 95, 90, 0.2);
}

.ta-feature-card:hover::before {
  opacity: 1;
}

.ta-feature-icon {
  color: #0F5F5A;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.ta-feature-card:hover .ta-feature-icon {
  transform: scale(1.1);
  color: #a3e635;
}

.ta-feature-card h5 {
  color: #0F2317;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.ta-feature-card p {
  color: #768382;
  position: relative;
  z-index: 2;
}

/* Take Control Modern Section - Green Version */
.take-control-modern-section {
  background: linear-gradient(135deg, #0F5F5A 0%, #38bdf8 100%);
  position: relative;
  overflow: hidden;
}

.take-control-modern-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"dots\" width=\"20\" height=\"20\" patternUnits=\"userSpaceOnUse\"><circle cx=\"10\" cy=\"10\" r=\"1\" fill=\"rgba(163,230,53,0.12)\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23dots)\"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.take-control-modern-section .container {
  position: relative;
  z-index: 2;
}

.take-control-modern-card {
  background: #fff;
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(15, 95, 90, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.take-control-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.07) 0%, rgba(163, 230, 53, 0.07) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.take-control-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(15, 95, 90, 0.15);
}

.take-control-modern-card:hover::before {
  opacity: 1;
}

.take-control-modern-title {
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F5F5A;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.take-control-modern-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
  border-radius: 2px;
}

.take-control-modern-desc {
  color: #21796b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.take-control-modern-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #a3e635 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.take-control-modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.take-control-modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.18);
  color: #fff;
}

.take-control-modern-btn:hover::before {
  left: 100%;
}

.take-control-modern-blur-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

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

.take-control-modern-phone-img {
  max-width: 380px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateY(5deg); }
}

.take-control-modern-phone-img:hover {
  transform: scale(1.05) rotateY(10deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .take-control-modern-title {
    font-size: 2rem;
  }
  .take-control-modern-card {
    padding: 3rem !important;
  }
  .take-control-modern-phone-img {
    max-width: 280px;
  }
  .take-control-modern-blur-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .take-control-modern-title {
    font-size: 1.5rem;
  }
  .take-control-modern-desc {
    font-size: 1rem;
  }
  .take-control-modern-card {
    padding: 2rem !important;
  }
  .take-control-modern-phone-img {
    max-width: 200px;
  }
  .take-control-modern-blur-circle {
    width: 150px;
    height: 150px;
  }
}

/* Enhanced Features Alt Section */
.features-alt {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.features-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(15,95,90,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.features-alt .container {
  position: relative;
  z-index: 2;
}

.features-alt .section-title-new {
  color: #0F2317 !important;
  font-weight: 800 !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-alt .text-muted-new {
  color: #768382 !important;
  font-size: 1.2rem;
}

.feature-item-alt {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  margin-bottom: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(15, 95, 90, 0.08);
  border: 1px solid rgba(15, 95, 90, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.02) 0%, rgba(163, 230, 53, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item-alt:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 95, 90, 0.12);
  border-color: rgba(15, 95, 90, 0.1);
}

.feature-item-alt:hover::before {
  opacity: 1;
}

.feature-item-alt .hero-img,
.feature-item-alt .feature-img {
  border-radius: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item-alt:hover .hero-img,
.feature-item-alt:hover .feature-img {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.feature-content .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0F5F5A 0%, #a3e635 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-content .icon::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;
}

.feature-item-alt:hover .feature-content .icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-item-alt:hover .feature-content .icon::before {
  left: 100%;
}

.feature-content .icon i {
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.feature-content h3 {
  color: #0F2317;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-content p {
  color: #768382;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Design for Features */
@media (max-width: 991px) {
  .features-alt .section-title-new {
    font-size: 2rem;
  }
  
  .feature-item-alt {
    padding: 2rem;
  }
  
  .feature-content h3 {
    font-size: 1.5rem;
  }
  
  .feature-content .icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-content .icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .features-alt .section-title-new {
    font-size: 1.5rem;
  }
  
  .features-alt .text-muted-new {
    font-size: 1rem;
  }
  
  .feature-item-alt {
    padding: 1.5rem;
  }
  
  .feature-content h3 {
    font-size: 1.3rem;
  }
  
  .feature-content p {
    font-size: 1rem;
  }
  
  .feature-content .icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-content .icon i {
    font-size: 1.2rem;
  }
}

/* Streamline Visitor Experience Section */
.streamline-visitor-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.streamline-header {
  margin-bottom: 3rem;
}

.streamline-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  font-family: 'Inter', Arial, sans-serif;
}

.streamline-subtitle {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 0;
}

.streamline-features-layout {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.features-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3rem;
  gap: 2rem;
}

.features-row.top-row {
  margin-bottom: 4rem;
}

.streamline-feature-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.streamline-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.feature-icon-circle::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #ff6b35;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.feature-icon-circle i {
  color: #ffffff;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.4;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.corner-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #ff6b35;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.corner-shape.top-left {
  top: -60px;
  left: -60px;
}

.corner-shape.bottom-right {
  bottom: -60px;
  right: -60px;
}

/* Grid Layout for Features */
.streamline-features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .features-row.top-row {
    margin-bottom: 2rem;
  }
  
  .streamline-title {
    font-size: 2rem;
  }
  
  .streamline-feature-box {
    padding: 1.2rem;
  }
  
  .feature-icon-circle {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon-circle i {
    font-size: 1.2rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .features-row {
    gap: 1rem;
  }
  
  .streamline-title {
    font-size: 1.8rem;
  }
  
  .streamline-feature-box {
    padding: 1rem;
  }
  
  .feature-icon-circle {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon-circle i {
    font-size: 1.1rem;
  }
  
  .feature-title {
    font-size: 0.95rem;
  }
  
  .feature-desc {
    font-size: 0.8rem;
  }
  
  .corner-shape {
    width: 80px;
    height: 80px;
  }
  
  .corner-shape.top-left {
    top: -40px;
    left: -40px;
  }
  
  .corner-shape.bottom-right {
    bottom: -40px;
    right: -40px;
  }
}

/* Take Control Modern Section */

.payroll-hero-lead {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(15,95,90,0.18);
}

/* Payroll page specific button styling */
.payroll-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Style the "Start 15 Days Trial" button */
.btn-outline-dark.btn-lg {
  border: 2px solid #21796b !important;
  color: #21796b !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
}

.btn-outline-dark.btn-lg:hover {
  background: #21796b !important;
  color: white !important;
  border-color: #21796b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(33,121,107,0.3) !important;
}

.btn-outline-dark.btn-lg:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 15px rgba(33,121,107,0.2) !important;
}

/* Ensure the dark button is also properly styled */
.btn-dark.btn-lg {
  background: #21796b !important;
  border: 2px solid #21796b !important;
  color: white !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
}

.btn-dark.btn-lg:hover {
  background: #1a5f55 !important;
  border-color: #1a5f55 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(33,121,107,0.3) !important;
}

.btn-dark.btn-lg:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 15px rgba(33,121,107,0.2) !important;
}

/* Visitor Management page specific styling */
.visitor-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Floating Cards Hover Effects */
.floating-card-alt {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.floating-card-alt:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 16px 48px 0 rgba(33,121,107,0.3), 0 4px 12px rgba(0,0,0,0.08) !important;
  z-index: 10 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Hover effects for links inside cards */
.floating-card-alt:hover a {
  color: #1a5f55 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

/* Hover effects for icons */
.floating-card-alt:hover i {
  transform: scale(1.1) !important;
  transition: transform 0.2s ease !important;
}

/* Pulse animation for status indicators on hover */
.floating-card-alt:hover .d-flex > div:first-child {
  animation: pulse-glow 2s infinite !important;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

/* Meeting Scheduler page specific styling */
.meeting-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Onboarding page specific styling */
.onboarding-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Time Attendance page specific styling */
.time-attendance-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Access Control page specific styling */
.access-control-hero-lead {
  color: #768382 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-content-new img[alt="Cloud"] {
  width: 80px !important;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #e0e7ef;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: block;
}

.integrations-section-new .text-muted-new {
  color: #ffffff !important;
}

.modern-hero-section .modern-hero-subtitle {
  color: #ffffff !important;
}

.modern-hero-section .modern-hero-subtitle * {
  color: #ffffff !important;
}

.modern-hero-section .modern-hero-title {
  color: #ffffff !important;
}

.modern-hero-section .modern-hero-title * {
  color: #ffffff !important;
}

.footer-new .text-muted-new {
  color: #ffffff !important;
}

.text-white-override {
  color: white !important;
}

/* =============================================== */
/* == COOKIE CONSENT BANNER - Polished Design == */
/* =============================================== */

.cookie-consent-banner {
    /* Positioning */
    position: fixed;
    bottom: 0;
  left: 0;
  right: 0;
    z-index: 100000;

    /* Glassmorphism Appearance */
    background: rgba(15, 35, 23, 0.85); /* Dark glassy background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(15, 95, 90, 0.4);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;

    /* Animation & Initial State */
    transform: translateY(100%); /* Start hidden off-screen */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth slide-in */
    pointer-events: none; /* Can't be clicked when hidden */
}

/* State when the banner is visible */
.cookie-consent-banner.show {
    transform: translateY(0);
    pointer-events: auto; /* Allow clicks when visible */
}

/* Inner content alignment */
.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
}

/* Icon, Title, and Description styles */
.cookie-consent-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.cookie-icon {
  font-size: 2.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.cookie-description {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.cookie-policy-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.cookie-policy-link:hover {
  color: #ffffff;
}

/* Buttons container */
.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-consent-text {
        flex-direction: column;
        align-items: center;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Global Locations Section Styles */
.global-locations-section {
  background: linear-gradient(120deg, #0F2317 60%, #125C5E 100%);
}
.global-locations-section .location-card {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 18px 28px 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
  min-height: 60px;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid rgba(56,189,248,0.18);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s;
}
.global-locations-section .location-card:hover {
  box-shadow: 0 8px 32px rgba(56,189,248,0.18);
}
.global-locations-section .location-card .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #38bdf8 0%, #125C5E 100%);
  color: #fff;
  font-size: 1.2rem;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(56,189,248,0.10);
}
.global-locations-section .location-card strong {
  font-weight: 600;
  font-size: 1.08em;
  color: #fff;
}
.global-locations-section .location-card span {
  color: #a3e635;
  font-size: 0.98em;
  font-weight: 500;
}

/* New Global Locations Section Styles */
.global-locations-section-new {
  background: linear-gradient(120deg, #0F2317 60%, #125C5E 100%);
  position: relative;
  overflow: hidden;
}
.global-locations-title {
  color: #fff;
  text-shadow: 0 2px 16px #000a;
}
.global-locations-subtitle {
  color: #d1fae5;
  font-size: 1.2rem;
  text-shadow: 0 1px 8px #0006;
}
.world-svg-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
  filter: drop-shadow(0 8px 32px #0008);
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 430px;
  max-width: 1000px;
  margin: 0 auto;
}
.location-marker {
  position: absolute;
  width: 38px;
  height: 38px;
  background: rgba(56,189,248,0.18);
  border: 2.5px solid #38bdf8;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(56,189,248,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: box-shadow 0.2s, background 0.2s;
}
.location-marker::before {
  content: '\2713';
  color: #38bdf8;
  font-size: 1.3rem;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(56,189,248,0.10);
}
.location-marker:hover {
  background: #38bdf8;
  box-shadow: 0 8px 32px #38bdf8aa;
}
.location-tooltip {
  position: fixed;
  background: rgba(24,24,27,0.98);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 1.08rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px #0008;
  pointer-events: none;
  z-index: 9999;
  white-space: pre-line;
  min-width: 120px;
  text-align: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.global-locations-cta {
  font-size: 1.15rem;
  border-radius: 32px;
  box-shadow: 0 4px 24px #38bdf866;
  background: linear-gradient(90deg, #38bdf8 0%, #125C5E 100%);
  color: #fff;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.global-locations-cta:hover {
  background: linear-gradient(90deg, #125C5E 0%, #38bdf8 100%);
  box-shadow: 0 8px 32px #38bdf8aa;
}
@media (max-width: 700px) {
  .map-wrapper { height: 220px; }
  .world-svg-bg svg { height: 220px; }
  .location-marker { width: 26px; height: 26px; }
  .location-marker::before { width: 16px; height: 16px; font-size: 0.9rem; }
}

.credential-card {
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  border-radius: 24px;
}
.credential-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.18), 0 2px 8px rgba(0,0,0,0.18);
  z-index: 10;
}

.credentials-cards-wrapper {
  overflow: visible !important;
}
.credentials-cards-wrapper > .d-flex.flex-nowrap {
  pointer-events: none;
  user-select: none;
}
.credentials-cards-wrapper .credential-card,
.credentials-arrow {
  pointer-events: auto !important;
}

.credentials-cards-wrapper {
  position: relative;
}
.credentials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24,24,27,0.85);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px #0006;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.credentials-arrow.left {
  left: 8px;
}
.credentials-arrow.right {
  right: 8px;
}
.credentials-arrow:hover {
  background: linear-gradient(90deg, #38bdf8 0%, #764ba2 100%);
  color: #fff;
  opacity: 1;
}
.credentials-arrow[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

/* Override for hero section with background image */
.hero-section-new[style*="background"] {
  background: inherit !important;
}

/* Highly specific override for hero section with background image */
body .hero-section-new[style*="background"] {
  background-image: unset !important;
  background-color: transparent !important;
  background: none !important;
}

/* Remove forced background for hero-section-new and add background image with overlay */
.hero-section-new {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/new.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Glassmorphism card for hero section */
.glass-card-hero {
  background: rgba(24, 24, 27, 0.55);
  border-radius: 2rem;
  box-shadow: 0 8px 48px 0 rgba(56, 189, 248, 0.18);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.18);
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .glass-card-hero {
    padding: 2rem 1rem;
    border-radius: 1.2rem;
  }
}

body .hero-section-new {
  position: relative;
  background: url('/assets/hom3.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  margin-top: 48px;
}

body .hero-section-new::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,0,0,0.5); /* RED for testing */
  z-index: 2;
  pointer-events: none;
}
body .hero-section-new > .container {
  position: relative;
  z-index: 3;
}

.power-tools-carousel {
  display: flex;
  overflow-x: auto;
  overflow: visible;
  gap: 2rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.power-tool-card-new {
  background: #e6f4ea;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(56, 189, 248, 0.08);
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #18181b;
}
.power-tool-card-new:hover {
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 60%, #a3e635 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .power-tool-card-new {
    min-width: 80vw;
    max-width: 90vw;
    padding: 1.2rem 0.7rem;
  }
  .power-tools-carousel {
    gap: 1rem;
  }
}
.power-tool-card-new h4,
.power-tool-card-new p {
  color: #18181b;
}

.power-tools-section,
.power-tools-section .container,
.power-tools-section .row,
.power-tools-section .col-lg-10 {
  overflow: visible !important;
}
.power-tools-section {
  padding-top: 5rem !important;
}

.power-tools-grid {
  margin-top: 2rem;
}
.power-tool-card-alt {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(56, 189, 248, 0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.power-tool-card-alt:hover {
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.icon-circle-alt {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 60%, #a3e635 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.power-link {
  color: #0f5f5a;
  font-weight: 700;
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.2s;
}
.power-link:hover {
  color: #38bdf8;
  text-decoration: none;
}
@media (max-width: 767px) {
  .power-tool-card-alt {
    padding: 1.2rem 0.7rem;
    min-height: 260px;
  }
}

.power-tools-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  padding-left: 32px;
  border-left: 3px solid #38bdf8;
}
.power-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 60%, #a3e635 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: absolute;
  left: -32px;
  top: 0;
  box-shadow: 0 2px 12px rgba(56,189,248,0.12);
}
.step-content {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(56,189,248,0.06);
  padding: 1.5rem 2rem;
  margin-left: 48px;
  flex: 1;
}
.step-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-content p {
  margin-bottom: 0.5rem;
}
.power-link {
  color: #0f5f5a;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.power-link:hover {
  color: #38bdf8;
  text-decoration: none;
}
@media (max-width: 767px) {
  .power-tools-timeline {
    padding-left: 0;
    border-left: none;
  }
  .power-step {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  .step-icon {
    position: static;
    margin-bottom: 1rem;
  left: 0;
    top: 0;
  }
  .step-content {
    margin-left: 0;
    padding: 1.2rem 1rem;
  }
}

.step-content,
.step-content h4,
.step-content p {
  color: #18181b;
}

.hero-overlay-wrapper {
  position: relative;
  max-width: 1000px;
  min-height: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-overlay-wrapper {
    padding: 12px;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.hero-overlay-wrapper .d-flex.gap-3 {
  gap: 2rem !important;
}
.hero-overlay-wrapper h1.display-2 {
  font-size: 3.5rem;
  white-space: normal;
}
@media (max-width: 992px) {
  .hero-overlay-wrapper h1.display-2 {
    font-size: 2.5rem;
  }
}
.hero-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  backdrop-filter: blur(4px); /* Frosted glass effect */
  box-shadow: 0 8px 32px rgba(0,0,0,0.25); /* Soft shadow */
}
.hero-overlay-wrapper .container {
  position: relative;
  z-index: 2;
}
.hero-overlay-wrapper .lead {
  margin-bottom: 1.2rem !important;
}
.hero-overlay-wrapper .mt-4 {
  margin-top: 1.2rem !important;
  margin-bottom: 0 !important;
}

/* --- Modern Hero Section Styles --- */
.hero-section-modern {
  min-height: 90vh;
  background: linear-gradient(120deg, #0f172a 60%, #38bdf8 100%);
  overflow: hidden;
}
.hero-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: none !important;
}
.hero-content-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(56,189,248,0.18);
  box-shadow: 0 8px 32px 0 rgba(56,189,248,0.18);
  color: #fff;
  max-width: 540px;
}
.badge-glass {
  background: rgba(56,189,248,0.18);
  color: #38bdf8;
  backdrop-filter: blur(4px);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7em 1.5em;
  border-radius: 2em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 2px 8px rgba(56,189,248,0.10);
}
.hero-gradient-text {
  background: linear-gradient(90deg, #38bdf8 20%, #fff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-animated-text {
  display: inline-block;
  animation: textFadeIn 2.5s cubic-bezier(0.4,0,0.2,1) infinite alternate;
}
@keyframes textFadeIn {
  0% { opacity: 0.5; letter-spacing: 0.1em; }
  100% { opacity: 1; letter-spacing: 0.02em; }
}
.text-glass {
  color: #e0e7ef;
  text-shadow: 0 2px 8px rgba(56,189,248,0.10);
}
.btn-glass {
  background: linear-gradient(90deg, #38bdf8 60%, #0ea5e9 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(56,189,248,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-glass:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(56,189,248,0.25);
}
.btn-outline-glass {
  background: transparent;
  color: #38bdf8;
  border: 2px solid #38bdf8;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-glass:hover {
  background: #38bdf8;
  color: #fff;
}
.hero-visuals {
  min-width: 320px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-mockup-img {
  width: 320px;
  height: auto;
  z-index: 2;
  border: 4px solid rgba(56,189,248,0.18);
  background: rgba(255,255,255,0.08);
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.floating-shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #38bdf8 60%, #fff 100%);
  top: -30px;
  left: 40px;
  animation: float1 6s ease-in-out infinite alternate;
}
.floating-shape-2 {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0ea5e9 60%, #38bdf8 100%);
  bottom: -24px;
  right: -24px;
  animation: float2 7s ease-in-out infinite alternate;
}
@keyframes float1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(24px) scale(1.08); }
}
@keyframes float2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(0.95); }
}
@media (max-width: 991px) {
  .hero-section-modern {
    flex-direction: column;
    min-height: 70vh;
  }
  .container.d-flex.flex-lg-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-visuals {
    margin-top: 2rem;
    min-width: 220px;
  }
  .hero-mockup-img {
    width: 220px;
  }
}

/* --- Futuristic Portal Hero Section --- */
.hero-section-portal {
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, #38bdf8 0%, #0f172a 80%);
  position: relative;
  overflow: hidden;
}
.portal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.portal-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.portal-ring {
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid #38bdf8;
  opacity: 0.18;
  box-shadow: 0 0 32px 8px #38bdf844, 0 0 64px 16px #0ea5e944;
  animation: portalPulse 6s infinite cubic-bezier(0.4,0,0.2,1);
}
.portal-ring-1 {
  width: 420px; height: 420px;
  animation-delay: 0s;
}
.portal-ring-2 {
  width: 540px; height: 540px;
  animation-delay: 2s;
}
.portal-ring-3 {
  width: 660px; height: 660px;
  animation-delay: 4s;
}
@keyframes portalPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.32; transform: scale(1.08); }
}
.portal-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px) saturate(180%);
  border-radius: 50%;
  box-shadow: 0 8px 48px 0 rgba(56,189,248,0.18);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 400px;
  width: 90vw;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.portal-mockup {
  width: 120px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 #38bdf844;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.portal-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.gradient-text {
  background: linear-gradient(90deg, #38bdf8 20%, #fff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.portal-typing {
  font-size: 1.2rem;
  color: #e0e7ef;
  font-family: 'Fira Mono', 'Consolas', monospace;
  white-space: nowrap;
  border-right: 2px solid #38bdf8;
  width: 0;
  overflow: hidden;
  animation: typing 3.2s steps(32, end) 1s 1 normal both, blink-caret 0.7s step-end infinite;
}
@keyframes typing {
  from { width: 0; }
  to { width: 22ch; }
}
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: #38bdf8; }
}
.portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 60%, #0ea5e9 100%);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px rgba(56,189,248,0.18);
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.portal-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(56,189,248,0.25);
  background: linear-gradient(135deg, #0ea5e9 60%, #38bdf8 100%);
}
.portal-btn-outline {
  background: transparent;
  color: #38bdf8;
  border: 2px solid #38bdf8;
  box-shadow: none;
}
.portal-btn-outline:hover {
  background: #38bdf8;
  color: #fff;
}
@media (max-width: 600px) {
  .portal-card {
    padding: 2rem 1rem 1.5rem 1rem;
    min-height: 260px;
    max-width: 98vw;
  }
  .portal-mockup {
    width: 80px;
  }
  .portal-title {
    font-size: 1.5rem;
  }
  .portal-ring-1 { width: 220px; height: 220px; }
  .portal-ring-2 { width: 320px; height: 320px; }
  .portal-ring-3 { width: 420px; height: 420px; }
}

/* --- Portal Illustration Styles --- */
.portal-illustration {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  flex: 1 1 100vw;
  aspect-ratio: 1/1;
  height: 100vw;
  max-height: 100vw;
  border-radius: 50%;
  overflow: hidden;
}
.portal-illustration svg {
  width: 100vw;
  height: 100vw;
  max-width: 100vw;
  max-height: 100vw;
  filter: drop-shadow(0 24px 96px #38bdf855);
  display: block;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .portal-illustration {
    margin-bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vw;
    max-height: 100vw;
    aspect-ratio: 1/1;
  }
  .portal-illustration svg {
    width: 100vw;
    height: 100vw;
    max-width: 100vw;
    max-height: 100vw;
  }
}

/* --- Immersive Split Hero Section --- */
.hero-split {
  min-height: 100vh;
  background: #0F2317 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: none !important;
}
.hero-content-glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px) saturate(180%);
  border: 2.5px solid rgba(56,189,248,0.18);
  box-shadow: 0 8px 48px 0 rgba(56,189,248,0.18);
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 420px;
  height: 420px;
  min-width: 340px;
  max-width: 480px;
  min-height: 340px;
  max-height: 480px;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (max-width: 991px) {
  .hero-content-glass-card {
    min-width: 220px;
    max-width: 98vw;
    min-height: 220px;
    max-height: 98vw;
    margin: 2rem auto;
    border-radius: 2rem;
    aspect-ratio: unset;
    width: 100%;
    height: auto;
    padding: 2.2rem 1.2rem;
  }
}
.hero-visual svg {
  width: 420px;
  height: 420px;
  max-width: 100vw;
  max-height: 100vw;
  filter: drop-shadow(0 12px 48px #38bdf855);
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero-visual svg {
    width: 98vw;
    height: auto;
    max-width: 320px;
    max-height: 320px;
  }
}

/* --- Hero Image Collage Styles --- */
.hero-image-collage {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(56,189,248,0.10);
  box-shadow: 0 8px 48px 0 rgba(56,189,248,0.18), 0 0 0 8px rgba(56,189,248,0.18), 0 0 32px 8px #38bdf8aa;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.hero-image-collage:hover {
  transform: rotate(-8deg) scale(1.04);
  box-shadow: 0 16px 64px 0 #38bdf8cc, 0 0 0 16px #38bdf822, 0 0 64px 16px #0ea5e9aa;
}
.collage-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(56,189,248,0.10);
  border: 3px solid #fff;
  background: #fff;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, left 0.35s cubic-bezier(0.4,0,0.2,1);
  animation: collageFloat 3.5s ease-in-out infinite alternate;
}
.hero-image-collage:hover .collage-img {
  transform: translateX(-24px) scale(1.12);
  z-index: 10;
  box-shadow: 0 8px 32px #38bdf8cc, 0 0 16px #39ff14aa;
}
@keyframes collageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.collage-img-1 {
  width: 75px; height: 75px;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.collage-img-2 {
  width: 65px; height: 65px;
  top: 120px; left: 320px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.collage-img-3 {
  width: 60px; height: 60px;
  top: 320px; left: 270px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.collage-img-4 {
  width: 60px; height: 60px;
  top: 320px; left: 150px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.collage-img-5 {
  width: 65px; height: 65px;
  top: 120px; left: 20px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 600px) {
  .hero-image-collage {
    width: 90vw;
    height: 90vw;
    min-width: 220px;
    min-height: 220px;
    max-width: 98vw;
    max-height: 98vw;
  }
  .collage-img-1 { width: 45px; height: 45px; top: 10px; }
  .collage-img-2 { width: 38px; height: 38px; top: 60px; left: 80vw; }
  .collage-img-3 { width: 35px; height: 35px; top: 80vw; left: 70vw; }
  .collage-img-4 { width: 35px; height: 35px; top: 80vw; left: 20vw; }
  .collage-img-5 { width: 38px; height: 38px; top: 60vw; left: 10vw; }
}

/* Optimize layout for 1920px width screens */
@media (min-width: 1400px) {
  .container, .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  body, .power-tools-orbs-section, .why-section-dashboard, .spec-section-new, .credentials-range-section, .modern-hero-section, .quote-section-new, .footer-new {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Prevent content from stretching too much on ultra-wide screens */
@media (min-width: 1920px) {
  .container, .container-fluid {
    max-width: 1920px;
  }
}

/* Rotate and scale (dynamic pop) hover effect for collage images */
.hero-image-collage .collage-img:hover {
  transform: rotate(-8deg) scale(1.18);
  z-index: 10;
  box-shadow: 0 12px 40px #38bdf8cc, 0 0 24px #39ff14aa;
}

/* Pulse (scale up and down quickly) hover effect for collage images */
.hero-image-collage .collage-img:hover {
  animation: collagePulse 0.5s;
  z-index: 10;
  box-shadow: 0 12px 40px #38bdf8cc, 0 0 24px #39ff14aa;
}
@keyframes collagePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1.12); }
}

/* Process Flow Section Styles - Flow Diagram */
.process-flow-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-flow-section .container {
  position: relative;
  z-index: 2;
}

.flow-diagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 2rem;
  min-height: 800px;
}

/* Flow Steps */
.flow-step {
  position: absolute;
  width: 200px;
  text-align: center;
  z-index: 3;
}

.step-01 { top: 0; left: 0; }
.step-02 { top: 0; left: 250px; }
.step-03 { top: 0; left: 500px; }
.step-04 { top: 300px; left: 0; }
.step-05 { top: 300px; left: 250px; }
.step-06 { top: 300px; left: 500px; }
.step-07 { top: 600px; left: 0; }
.step-08 { top: 600px; left: 250px; }
.step-09 { top: 600px; left: 500px; }

/* Step Circle */
.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0F5F5A 0%, #21796b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(15, 95, 90, 0.3);
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(15, 95, 90, 0.4);
}

.step-number {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
}

/* Step Content */
.step-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 95, 90, 0.1);
}

.step-content:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(15, 95, 90, 0.15);
}

.step-illustration {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.step-text p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  color: #0F2317;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* Flow Lines SVG */
.flow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .flow-diagram {
    max-width: 900px;
  }
  
  .flow-step {
    width: 180px;
  }
  
  .step-01 { top: 0; left: 0; }
  .step-02 { top: 0; left: 220px; }
  .step-03 { top: 0; left: 440px; }
  .step-04 { top: 250px; left: 0; }
  .step-05 { top: 250px; left: 220px; }
  .step-06 { top: 250px; left: 440px; }
  .step-07 { top: 500px; left: 0; }
  .step-08 { top: 500px; left: 220px; }
  .step-09 { top: 500px; left: 440px; }
}

@media (max-width: 991px) {
  .flow-diagram {
    max-width: 600px;
  }
  
  .flow-step {
    width: 160px;
  }
  
  .step-01 { top: 0; left: 0; }
  .step-02 { top: 0; left: 200px; }
  .step-03 { top: 0; left: 400px; }
  .step-04 { top: 220px; left: 0; }
  .step-05 { top: 220px; left: 200px; }
  .step-06 { top: 220px; left: 400px; }
  .step-07 { top: 440px; left: 0; }
  .step-08 { top: 440px; left: 200px; }
  .step-09 { top: 440px; left: 400px; }
}

@media (max-width: 767px) {
  .flow-diagram {
    max-width: 100%;
    padding: 1rem;
  }
  
  .flow-step {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .step-01, .step-02, .step-03, .step-04, .step-05, .step-06, .step-07, .step-08, .step-09 {
    position: relative;
    top: auto;
    left: auto;
  }
  
  .flow-lines {
    display: none;
  }
}

/* Animation for flow steps */
.flow-step {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.step-01 { animation-delay: 0.1s; }
.step-02 { animation-delay: 0.2s; }
.step-03 { animation-delay: 0.3s; }
.step-04 { animation-delay: 0.4s; }
.step-05 { animation-delay: 0.5s; }
.step-06 { animation-delay: 0.6s; }
.step-07 { animation-delay: 0.7s; }
.step-08 { animation-delay: 0.8s; }
.step-09 { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Illustrations for 9 Steps */

/* Female Visitor */
.female-visitor {
  position: relative;
  width: 50px;
  height: 70px;
}

.female-visitor .head {
  width: 18px;
  height: 18px;
  background: #4a5568;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.female-visitor .body {
  width: 25px;
  height: 35px;
  background: #3182ce;
  border-radius: 6px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.female-visitor .folder {
  width: 20px;
  height: 15px;
  background: #90cdf4;
  border-radius: 2px;
  position: absolute;
  top: 25px;
  right: 5px;
}

.female-visitor .briefcase {
  width: 20px;
  height: 12px;
  background: #2d3748;
  border-radius: 3px;
  position: absolute;
  top: 30px;
  right: 5px;
}

/* Kiosk */
.kiosk {
  position: relative;
  width: 60px;
  height: 80px;
}

.kiosk-body {
  width: 50px;
  height: 70px;
  background: #a0aec0;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.kiosk-screen {
  width: 40px;
  height: 25px;
  background: #2d3748;
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.veris-logo {
  width: 30px;
  height: 8px;
  background: #38a169;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.card-slot {
  width: 15px;
  height: 8px;
  background: #4a5568;
  border-radius: 2px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.x-button {
  width: 8px;
  height: 8px;
  background: #e53e3e;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  right: 8px;
}

.card-drop {
  width: 20px;
  height: 15px;
  background: #3182ce;
  border-radius: 4px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Approval Desk */
.approval-desk {
  position: relative;
  width: 80px;
  height: 80px;
}

.approval-desk .desk {
  width: 60px;
  height: 6px;
  background: #90cdf4;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 10px;
}

.approval-desk .female-employee {
  position: absolute;
  left: 15px;
  bottom: 6px;
}

.approval-desk .female-employee .head {
  width: 16px;
  height: 16px;
  background: #4a5568;
  border-radius: 50%;
  position: absolute;
  top: 0;
}

.approval-desk .female-employee .body {
  width: 20px;
  height: 25px;
  background: #3182ce;
  border-radius: 6px;
  position: absolute;
  top: 16px;
}

.approval-desk .laptop {
  width: 25px;
  height: 15px;
  background: #a0aec0;
  border-radius: 2px;
  position: absolute;
  top: 15px;
  left: 20px;
}

.approval-desk .chair {
  width: 20px;
  height: 15px;
  background: #2d3748;
  border-radius: 4px;
  position: absolute;
  bottom: 6px;
  left: 25px;
}

/* Smart Locker */
.smart-locker {
  position: relative;
  width: 80px;
  height: 80px;
}

.locker-wall {
  position: absolute;
  right: 10px;
  top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
}

.locker-1, .locker-2, .locker-3, .locker-4 {
  width: 20px;
  height: 25px;
  background: #a0aec0;
  border-radius: 3px;
  border: 1px solid #4a5568;
}

.locker-3 {
  border-left: 3px solid #38a169;
}

.laser-beam {
  width: 30px;
  height: 2px;
  background: #e53e3e;
  position: absolute;
  top: 20px;
  left: 10px;
  transform: rotate(15deg);
}

/* Access Gates */
.access-gates, .checkout-gates {
  position: relative;
  width: 80px;
  height: 80px;
}

.turnstiles {
  position: absolute;
  top: 20px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.turnstile-1, .turnstile-2, .turnstile-3 {
  width: 15px;
  height: 30px;
  background: #90cdf4;
  border-radius: 3px;
}

.checkmark {
  width: 12px;
  height: 12px;
  background: #38a169;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* Meeting Room */
.meeting-room {
  position: relative;
  width: 80px;
  height: 80px;
}

.meeting-room .desk {
  width: 60px;
  height: 6px;
  background: #90cdf4;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 10px;
}

.meeting-room .female-visitor {
  position: absolute;
  left: 15px;
  bottom: 6px;
  transform: scale(0.8);
}

.meeting-room .male-employee {
  position: absolute;
  right: 15px;
  bottom: 6px;
}

.male-employee .head {
  width: 16px;
  height: 16px;
  background: #4a5568;
  border-radius: 50%;
  position: absolute;
  top: 0;
}

.male-employee .body {
  width: 20px;
  height: 25px;
  background: #e53e3e;
  border-radius: 6px;
  position: absolute;
  top: 16px;
}

.male-employee .tablet {
  width: 12px;
  height: 8px;
  background: #2d3748;
  border-radius: 2px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.speech-bubble {
  width: 15px;
  height: 10px;
  background: #38a169;
  border-radius: 8px;
  position: absolute;
  top: 5px;
  left: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .process-flow-exact-layout {
    max-width: 900px;
  }
  
  .step-container {
    width: 180px;
    height: 220px;
  }
  
  .step-01 { top: 0; left: 0; }
  .step-02 { top: 0; left: 220px; }
  .step-03 { top: 0; left: 440px; }
  .step-04 { top: 250px; left: 0; }
  .step-05 { top: 250px; left: 220px; }
  .step-06 { top: 250px; left: 440px; }
  .step-07 { top: 500px; left: 0; }
  .step-08 { top: 500px; left: 220px; }
  .step-09 { top: 500px; left: 440px; }
  
  .line-1-2 { top: 110px; left: 180px; width: 40px; }
  .line-2-3 { top: 110px; left: 400px; width: 40px; }
  .line-3-4 { top: 110px; left: 620px; width: 2px; height: 140px; }
  .line-4-5 { top: 360px; left: 180px; width: 40px; }
  .line-5-6 { top: 360px; left: 400px; width: 40px; }
  .line-6-7 { top: 360px; left: 620px; width: 2px; height: 140px; }
  .line-7-8 { top: 610px; left: 180px; width: 40px; }
  .line-8-9 { top: 610px; left: 400px; width: 40px; }
}

@media (max-width: 991px) {
  .process-flow-exact-layout {
    max-width: 600px;
  }
  
  .step-container {
    width: 160px;
    height: 200px;
  }
  
  .step-01 { top: 0; left: 0; }
  .step-02 { top: 0; left: 200px; }
  .step-03 { top: 0; left: 400px; }
  .step-04 { top: 220px; left: 0; }
  .step-05 { top: 220px; left: 200px; }
  .step-06 { top: 220px; left: 400px; }
  .step-07 { top: 440px; left: 0; }
  .step-08 { top: 440px; left: 200px; }
  .step-09 { top: 440px; left: 400px; }
  
  .line-1-2 { top: 100px; left: 160px; width: 40px; }
  .line-2-3 { top: 100px; left: 360px; width: 40px; }
  .line-3-4 { top: 100px; left: 560px; width: 2px; height: 120px; }
  .line-4-5 { top: 320px; left: 160px; width: 40px; }
  .line-5-6 { top: 320px; left: 360px; width: 40px; }
  .line-6-7 { top: 320px; left: 560px; width: 2px; height: 120px; }
  .line-7-8 { top: 540px; left: 160px; width: 40px; }
  .line-8-9 { top: 540px; left: 360px; width: 40px; }
}

@media (max-width: 767px) {
  .process-flow-exact-layout {
    max-width: 100%;
    padding: 1rem;
  }
  
  .step-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .step-01, .step-02, .step-03, .step-04, .step-05, .step-06, .step-07, .step-08, .step-09 {
    position: relative;
    top: auto;
    left: auto;
  }
  
  .step-card {
    height: auto;
    min-height: 180px;
  }
  
  .flow-line {
    display: none;
  }
}

/* Animation for process steps */
.step-container {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.step-01 { animation-delay: 0.1s; }
.step-02 { animation-delay: 0.2s; }
.step-03 { animation-delay: 0.3s; }
.step-04 { animation-delay: 0.4s; }
.step-05 { animation-delay: 0.5s; }
.step-06 { animation-delay: 0.6s; }
.step-07 { animation-delay: 0.7s; }
.step-08 { animation-delay: 0.8s; }
.step-09 { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visitor Management Components Section Styles */
.visitor-components-section {
  position: relative;
  overflow: visible;
  scroll-behavior: smooth;
  z-index: 1;
}

.visitor-components-visual {
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.component-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.speech-bubble {
  position: relative;
  z-index: 4;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid currentColor;
}

.component-explanation {
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
}

.component-explanation:hover {
  transform: scale(1.01);
  border-color: rgba(15, 95, 90, 0.2);
  background-color: rgba(15, 95, 90, 0.02);
}

.component-explanation.active {
  border-color: #0F5F5A;
  background-color: rgba(15, 95, 90, 0.05);
  transform: scale(1.02);
}

.component-explanation h4 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.component-explanation.active h4 {
  color: #0F5F5A !important;
}

.component-explanation ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  transition: color 0.3s ease;
}

.component-explanation ul li i {
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.component-explanation.active ul li i {
  color: #10b981;
}

/* Section indicator dots */
.section-indicators {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.section-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(15, 95, 90, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-dot.active {
  background-color: #0F5F5A;
  transform: scale(1.2);
}

.section-dot:hover {
  background-color: rgba(15, 95, 90, 0.6);
}

/* Responsive adjustments for visitor components */
@media (max-width: 991px) {
  .visitor-components-visual {
    min-height: 300px;
    margin-bottom: 2rem;
  }
  
  .component-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 1rem;
    width: 100% !important;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .speech-bubble {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 1rem;
  }
  
  .speech-bubble::after {
    display: none;
  }
  
  svg {
    display: none;
  }

  .section-indicators {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .visitor-components-section .container {
    padding: 0 1rem;
  }
  
  .component-card {
    max-width: 100%;
  }
  
  .component-explanation h4 {
    font-size: 1.1rem;
  }
  
  .component-explanation ul li {
    font-size: 0.9rem;
  }
}

/* Visitor Management Scroll Effects Styles */
.visitor-components-visual {
  overflow: visible;
}

.visitor-image {
  transition: opacity 0.5s ease, transform 0.3s ease;
  width: 100% !important;
  max-width: 650px !important;
  height: auto !important;
  border-radius: 1rem !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
  object-fit: contain !important;
  object-position: center !important;
}

.visitor-image.active {
  z-index: 2;
}

.visitor-image:not(.active) {
  z-index: 1;
}

/* Smooth scrolling for the section */
.visitor-components-section {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.visitor-components-section:focus-within {
  outline: 2px solid #0F5F5A;
  outline-offset: 2px;
}

/* Ensure proper scrolling behavior */
.visitor-components-section {
  scroll-margin-top: 2rem;
  scroll-margin-bottom: 2rem;
}

/* Prevent images from blocking scroll events */
.visitor-image {
  pointer-events: none;
}

.visitor-components-visual {
  pointer-events: auto;
}

/* Add smooth transitions for better UX */
.visitor-components-section * {
  transition: all 0.3s ease;
}

/* Skip button styles */
.visitor-components-visual .btn-outline-primary {
  border: 2px solid #0F5F5A;
  color: #0F5F5A;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.visitor-components-visual .btn-outline-primary:hover {
  background: #0F5F5A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 95, 90, 0.3);
}

/* Ensure border-radius is applied to all visitor images */
.visitor-image[data-section="access"],
.visitor-image[data-section="checkin"],
.visitor-image[data-section="registration"] {
  border-radius: 1rem !important;
}